blob: bbe133389380fe81aab3a3210085e7a0b653cd96 [file] [log] [blame]
Sarah Chinfc5603b2021-12-21 11:34:00 -08001// Copyright 2021 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package {
Aditya Choudharyad2ba1b2024-02-05 15:45:22 +000016 default_team: "trendy_team_fwk_telephony",
Sarah Chinfc5603b2021-12-21 11:34:00 -080017 // See: http://go/android-license-faq
18 // A large-scale-change added 'default_applicable_licenses' to import
19 // all of the 'license_kinds' from "hardware_interfaces_license"
20 // to get the below license kinds:
21 // SPDX-license-identifier-Apache-2.0
22 default_applicable_licenses: ["hardware_interfaces_license"],
23}
24
25cc_test {
26 name: "VtsHalRadioTargetTest",
27 defaults: [
Ted Bauer922c0322024-08-15 13:39:17 +000028 "aconfig_lib_cc_shared_link.defaults",
Sarah Chinfc5603b2021-12-21 11:34:00 -080029 "VtsHalTargetTestDefaults",
30 "use_libaidlvintf_gtest_helper_static",
31 ],
Chih-Hung Hsiehad1bf312022-02-17 21:56:13 -080032 tidy_timeout_srcs: [
33 "radio_messaging_test.cpp",
34 "radio_network_test.cpp",
35 "radio_sim_test.cpp",
36 "radio_voice_test.cpp",
37 ],
Sarah Chinfc5603b2021-12-21 11:34:00 -080038 srcs: [
39 "radio_aidl_hal_utils.cpp",
Sarah Chinc83bce42021-12-29 00:35:12 -080040 "radio_config_indication.cpp",
41 "radio_config_response.cpp",
42 "radio_config_test.cpp",
Sarah Chinfc5603b2021-12-21 11:34:00 -080043 "radio_data_indication.cpp",
44 "radio_data_response.cpp",
45 "radio_data_test.cpp",
Hunsuk Choi9d4f38c2021-12-16 21:50:04 +000046 "radio_ims_indication.cpp",
47 "radio_ims_response.cpp",
48 "radio_ims_test.cpp",
Helene4af3c62023-01-02 04:26:31 +000049 "radio_imsmedia_listener.cpp",
50 "radio_imsmedia_session_listener.cpp",
51 "radio_imsmedia_test.cpp",
Sarah Chinfc5603b2021-12-21 11:34:00 -080052 "radio_messaging_indication.cpp",
53 "radio_messaging_response.cpp",
54 "radio_messaging_test.cpp",
55 "radio_modem_indication.cpp",
56 "radio_modem_response.cpp",
57 "radio_modem_test.cpp",
58 "radio_network_indication.cpp",
59 "radio_network_response.cpp",
60 "radio_network_test.cpp",
Pomai Ahlodc1e6192022-12-12 13:58:55 -080061 "radio_sap_callback.cpp",
62 "radio_sap_test.cpp",
Sarah Chinfc5603b2021-12-21 11:34:00 -080063 "radio_sim_indication.cpp",
64 "radio_sim_response.cpp",
65 "radio_sim_test.cpp",
66 "radio_voice_indication.cpp",
67 "radio_voice_response.cpp",
68 "radio_voice_test.cpp",
69 "VtsHalRadioTargetTest.cpp",
70 ],
joonhunshind519aea2023-10-31 03:06:54 +000071 header_libs: [
72 "jni_headers",
73 ],
Sarah Chinfc5603b2021-12-21 11:34:00 -080074 shared_libs: [
75 "libbinder_ndk",
76 "libvintf",
joonhunshind519aea2023-10-31 03:06:54 +000077 "server_configurable_flags",
Sarah Chinfc5603b2021-12-21 11:34:00 -080078 ],
79 static_libs: [
Andrew Lassallecfb0d672025-01-31 13:28:43 -080080 "android.hardware.radio-V5-ndk",
81 "android.hardware.radio.config-V5-ndk",
82 "android.hardware.radio.data-V5-ndk",
83 "android.hardware.radio.ims-V4-ndk",
84 "android.hardware.radio.ims.media-V4-ndk",
85 "android.hardware.radio.messaging-V5-ndk",
86 "android.hardware.radio.modem-V5-ndk",
87 "android.hardware.radio.network-V5-ndk",
Pomai Ahlodc1e6192022-12-12 13:58:55 -080088 "android.hardware.radio.sap-V1-ndk",
Andrew Lassallecfb0d672025-01-31 13:28:43 -080089 "android.hardware.radio.sim-V5-ndk",
90 "android.hardware.radio.voice-V5-ndk",
joonhunshind519aea2023-10-31 03:06:54 +000091 "telephony_flags_c_lib",
Sarah Chinfc5603b2021-12-21 11:34:00 -080092 ],
Sarah Chin0623bdd2022-02-16 11:09:26 -080093 test_suites: [
94 "general-tests",
95 "vts",
96 ],
Sarah Chinfc5603b2021-12-21 11:34:00 -080097}