blob: eaec28b5eb5aedd81fca6bc26b9888758bbeaf36 [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 {
16 // See: http://go/android-license-faq
17 // A large-scale-change added 'default_applicable_licenses' to import
18 // all of the 'license_kinds' from "hardware_interfaces_license"
19 // to get the below license kinds:
20 // SPDX-license-identifier-Apache-2.0
21 default_applicable_licenses: ["hardware_interfaces_license"],
22}
23
24cc_test {
25 name: "VtsHalRadioTargetTest",
26 defaults: [
27 "VtsHalTargetTestDefaults",
28 "use_libaidlvintf_gtest_helper_static",
29 ],
30 srcs: [
31 "radio_aidl_hal_utils.cpp",
Sarah Chinc83bce42021-12-29 00:35:12 -080032 "radio_config_indication.cpp",
33 "radio_config_response.cpp",
34 "radio_config_test.cpp",
Sarah Chinfc5603b2021-12-21 11:34:00 -080035 "radio_data_indication.cpp",
36 "radio_data_response.cpp",
37 "radio_data_test.cpp",
Hunsuk Choi9d4f38c2021-12-16 21:50:04 +000038 "radio_ims_indication.cpp",
39 "radio_ims_response.cpp",
40 "radio_ims_test.cpp",
Sarah Chinfc5603b2021-12-21 11:34:00 -080041 "radio_messaging_indication.cpp",
42 "radio_messaging_response.cpp",
43 "radio_messaging_test.cpp",
44 "radio_modem_indication.cpp",
45 "radio_modem_response.cpp",
46 "radio_modem_test.cpp",
47 "radio_network_indication.cpp",
48 "radio_network_response.cpp",
49 "radio_network_test.cpp",
50 "radio_sim_indication.cpp",
51 "radio_sim_response.cpp",
52 "radio_sim_test.cpp",
53 "radio_voice_indication.cpp",
54 "radio_voice_response.cpp",
55 "radio_voice_test.cpp",
56 "VtsHalRadioTargetTest.cpp",
57 ],
58 shared_libs: [
59 "libbinder_ndk",
60 "libvintf",
61 ],
62 static_libs: [
63 "android.hardware.radio-V1-ndk",
64 "android.hardware.radio.config-V1-ndk",
65 "android.hardware.radio.data-V1-ndk",
Hunsuk Choi9d4f38c2021-12-16 21:50:04 +000066 "android.hardware.radio.ims-V1-ndk",
Sarah Chinfc5603b2021-12-21 11:34:00 -080067 "android.hardware.radio.messaging-V1-ndk",
68 "android.hardware.radio.modem-V1-ndk",
69 "android.hardware.radio.network-V1-ndk",
70 "android.hardware.radio.sim-V1-ndk",
71 "android.hardware.radio.voice-V1-ndk",
72 ],
73 // TODO(b/210712359): enable after b/207695009 is resolved.
74 //test_suites: [
75 // "general-tests",
76 // "vts",
77 //],
78}