blob: 4ff5c2c0681d8b5eb4517d125007aa3ec9440ecd [file] [log] [blame]
Sanket Padawee4c63232017-02-07 15:58:34 -08001//
2// Copyright (C) 2017 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Bob Badourb224b362021-02-12 20:13:01 -080017package {
Yihan Dongc09791a2024-10-12 09:07:37 +000018 default_team: "trendy_team_fwk_telephony",
Bob Badourb224b362021-02-12 20:13:01 -080019 // See: http://go/android-license-faq
20 // A large-scale-change added 'default_applicable_licenses' to import
21 // all of the 'license_kinds' from "hardware_interfaces_license"
22 // to get the below license kinds:
23 // SPDX-license-identifier-Apache-2.0
24 default_applicable_licenses: ["hardware_interfaces_license"],
25}
26
Sanket Padawee4c63232017-02-07 15:58:34 -080027cc_test {
Zhuoyao Zhangf7693ee2017-02-16 14:58:55 -080028 name: "VtsHalRadioV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070029 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080030 srcs: [
31 "radio_hidl_hal_cell_broadcast.cpp",
32 "radio_hidl_hal_data.cpp",
33 "radio_hidl_hal_icc.cpp",
34 "radio_hidl_hal_ims.cpp",
35 "radio_hidl_hal_misc.cpp",
36 "radio_hidl_hal_sms.cpp",
37 "radio_hidl_hal_stk.cpp",
38 "radio_hidl_hal_test.cpp",
39 "radio_hidl_hal_voice.cpp",
40 "radio_indication.cpp",
41 "radio_response.cpp",
42 "VtsHalRadioV1_0TargetTest.cpp",
43 "vts_test_util.cpp",
44 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070045 static_libs: [
Sanket Padawee4c63232017-02-07 15:58:34 -080046 "android.hardware.radio@1.0",
Rambo Wang5ccc4bb2021-02-16 20:45:39 -080047 "android.hardware.radio@1.1",
48 "android.hardware.radio@1.2",
Sanket Padawee4c63232017-02-07 15:58:34 -080049 ],
Dan Shi8caedd02019-10-21 11:32:21 -070050 test_config: "vts_hal_radio_target_test.xml",
Rambo Wang41ca2fd2021-02-18 18:39:04 -080051 test_suites: [
52 "general-tests",
53 "vts",
54 ],
Shuoq064ee512017-02-27 16:35:56 -080055}
Shuoqca02ad42017-03-23 17:22:50 -070056
57cc_test {
58 name: "VtsHalSapV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070059 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080060 srcs: [
61 "sap_callback.cpp",
62 "sap_hidl_hal_api.cpp",
63 "sap_hidl_hal_test.cpp",
64 "VtsHalSapV1_0TargetTest.cpp",
65 "vts_test_util.cpp",
66 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070067 static_libs: [
Shuoqca02ad42017-03-23 17:22:50 -070068 "android.hardware.radio@1.0",
69 ],
Dan Shi8caedd02019-10-21 11:32:21 -070070 test_config: "vts_hal_sap_target_test.xml",
Rambo Wang41ca2fd2021-02-18 18:39:04 -080071 test_suites: [
72 "general-tests",
73 "vts",
74 ],
Shuoqca02ad42017-03-23 17:22:50 -070075}
sqianc673a942017-05-24 15:08:25 -070076
77cc_library_static {
sqianc673a942017-05-24 15:08:25 -070078 name: "RadioVtsTestUtilBase",
sqian7fe93652017-12-28 12:10:37 -080079 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080080 srcs: [
81 "vts_test_util.cpp",
sqianc673a942017-05-24 15:08:25 -070082 ],
sqian7fe93652017-12-28 12:10:37 -080083 shared_libs: [
84 "android.hardware.radio@1.0",
85 ],
sqianc673a942017-05-24 15:08:25 -070086}
87
88cc_library_headers {
89 name: "radio.util.header@1.0",
90 export_include_dirs: ["."],
Tri Vo6c2bd862017-08-01 13:14:53 -070091}