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} 37 38cc_test { 39 name: "VtsHalSapV1_0TargetTest", 40 defaults: ["VtsHalTargetTestDefaults"], 41 srcs: ["sap_callback.cpp", 42 "sap_hidl_hal_api.cpp", 43 "sap_hidl_hal_test.cpp", 44 "VtsHalSapV1_0TargetTest.cpp", 45 "vts_test_util.cpp"], 46 static_libs: [ 47 "android.hardware.radio@1.0", 48 ], 49} 50 51cc_library_static { 52 name: "RadioVtsTestUtilBase", 53 srcs : [ 54 "vts_test_util.cpp" 55 ], 56} 57 58cc_library_headers { 59 name: "radio.util.header@1.0", 60 export_include_dirs: ["."], 61} 62