1// 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 { 18 name: "VtsHalRadioV1_0TargetTest", 19 defaults: ["VtsHalTargetTestDefaults"], 20 srcs: ["radio_hidl_hal_cell_broadcast.cpp", 21 "radio_hidl_hal_data.cpp", 22 "radio_hidl_hal_icc.cpp", 23 "radio_hidl_hal_ims.cpp", 24 "radio_hidl_hal_misc.cpp", 25 "radio_hidl_hal_sms.cpp", 26 "radio_hidl_hal_stk.cpp", 27 "radio_hidl_hal_test.cpp", 28 "radio_hidl_hal_voice.cpp", 29 "radio_indication.cpp", 30 "radio_response.cpp", 31 "VtsHalRadioV1_0TargetTest.cpp", 32 "vts_test_util.cpp"], 33 static_libs: [ 34 "android.hardware.radio@1.0", 35 ], 36 test_suites: ["general-tests"], 37} 38 39cc_test { 40 name: "VtsHalSapV1_0TargetTest", 41 defaults: ["VtsHalTargetTestDefaults"], 42 srcs: ["sap_callback.cpp", 43 "sap_hidl_hal_api.cpp", 44 "sap_hidl_hal_test.cpp", 45 "VtsHalSapV1_0TargetTest.cpp", 46 "vts_test_util.cpp"], 47 static_libs: [ 48 "android.hardware.radio@1.0", 49 ], 50 test_suites: ["general-tests"], 51} 52 53cc_library_static { 54 name: "RadioVtsTestUtilBase", 55 defaults: ["VtsHalTargetTestDefaults"], 56 srcs : [ 57 "vts_test_util.cpp" 58 ], 59 shared_libs: [ 60 "android.hardware.radio@1.0", 61 ], 62} 63 64cc_library_headers { 65 name: "radio.util.header@1.0", 66 export_include_dirs: ["."], 67} 68