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_config: "vts_hal_radio_target_test.xml", 37 test_suites: ["general-tests", "vts"], 38} 39 40cc_test { 41 name: "VtsHalSapV1_0TargetTest", 42 defaults: ["VtsHalTargetTestDefaults"], 43 srcs: ["sap_callback.cpp", 44 "sap_hidl_hal_api.cpp", 45 "sap_hidl_hal_test.cpp", 46 "VtsHalSapV1_0TargetTest.cpp", 47 "vts_test_util.cpp"], 48 static_libs: [ 49 "android.hardware.radio@1.0", 50 ], 51 test_config: "vts_hal_sap_target_test.xml", 52 test_suites: ["general-tests", "vts"], 53} 54 55cc_library_static { 56 name: "RadioVtsTestUtilBase", 57 defaults: ["VtsHalTargetTestDefaults"], 58 srcs : [ 59 "vts_test_util.cpp" 60 ], 61 shared_libs: [ 62 "android.hardware.radio@1.0", 63 ], 64} 65 66cc_library_headers { 67 name: "radio.util.header@1.0", 68 export_include_dirs: ["."], 69} 70