blob: 9946c31a2f8ab891121a11165832bf7496d64452 [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
17cc_test {
Zhuoyao Zhangf7693ee2017-02-16 14:58:55 -080018 name: "VtsHalRadioV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070019 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080020 srcs: [
21 "radio_hidl_hal_cell_broadcast.cpp",
22 "radio_hidl_hal_data.cpp",
23 "radio_hidl_hal_icc.cpp",
24 "radio_hidl_hal_ims.cpp",
25 "radio_hidl_hal_misc.cpp",
26 "radio_hidl_hal_sms.cpp",
27 "radio_hidl_hal_stk.cpp",
28 "radio_hidl_hal_test.cpp",
29 "radio_hidl_hal_voice.cpp",
30 "radio_indication.cpp",
31 "radio_response.cpp",
32 "VtsHalRadioV1_0TargetTest.cpp",
33 "vts_test_util.cpp",
34 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070035 static_libs: [
Sanket Padawee4c63232017-02-07 15:58:34 -080036 "android.hardware.radio@1.0",
37 ],
Dan Shi8caedd02019-10-21 11:32:21 -070038 test_config: "vts_hal_radio_target_test.xml",
Rambo Wang41ca2fd2021-02-18 18:39:04 -080039 test_suites: [
40 "general-tests",
41 "vts",
42 ],
Shuoq064ee512017-02-27 16:35:56 -080043}
Shuoqca02ad42017-03-23 17:22:50 -070044
45cc_test {
46 name: "VtsHalSapV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070047 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080048 srcs: [
49 "sap_callback.cpp",
50 "sap_hidl_hal_api.cpp",
51 "sap_hidl_hal_test.cpp",
52 "VtsHalSapV1_0TargetTest.cpp",
53 "vts_test_util.cpp",
54 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070055 static_libs: [
Shuoqca02ad42017-03-23 17:22:50 -070056 "android.hardware.radio@1.0",
57 ],
Dan Shi8caedd02019-10-21 11:32:21 -070058 test_config: "vts_hal_sap_target_test.xml",
Rambo Wang41ca2fd2021-02-18 18:39:04 -080059 test_suites: [
60 "general-tests",
61 "vts",
62 ],
Shuoqca02ad42017-03-23 17:22:50 -070063}
sqianc673a942017-05-24 15:08:25 -070064
65cc_library_static {
sqianc673a942017-05-24 15:08:25 -070066 name: "RadioVtsTestUtilBase",
sqian7fe93652017-12-28 12:10:37 -080067 defaults: ["VtsHalTargetTestDefaults"],
Rambo Wang41ca2fd2021-02-18 18:39:04 -080068 srcs: [
69 "vts_test_util.cpp",
sqianc673a942017-05-24 15:08:25 -070070 ],
sqian7fe93652017-12-28 12:10:37 -080071 shared_libs: [
72 "android.hardware.radio@1.0",
73 ],
sqianc673a942017-05-24 15:08:25 -070074}
75
76cc_library_headers {
77 name: "radio.util.header@1.0",
78 export_include_dirs: ["."],
Tri Vo6c2bd862017-08-01 13:14:53 -070079}