Sanket Padawe | e4c6323 | 2017-02-07 15:58:34 -0800 | [diff] [blame] | 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 | |
| 17 | cc_test { |
Zhuoyao Zhang | f7693ee | 2017-02-16 14:58:55 -0800 | [diff] [blame] | 18 | name: "VtsHalRadioV1_0TargetTest", |
Tri Vo | 35c7bd2 | 2017-08-01 13:14:53 -0700 | [diff] [blame] | 19 | defaults: ["VtsHalTargetTestDefaults"], |
Sanket Padawe | 28fc10f | 2017-03-16 11:49:39 -0700 | [diff] [blame] | 20 | srcs: ["radio_hidl_hal_cell_broadcast.cpp", |
Shuoq | 59bac4d | 2017-03-09 17:44:08 -0800 | [diff] [blame] | 21 | "radio_hidl_hal_data.cpp", |
Sanket Padawe | e4c6323 | 2017-02-07 15:58:34 -0800 | [diff] [blame] | 22 | "radio_hidl_hal_icc.cpp", |
Shuoq | 59bac4d | 2017-03-09 17:44:08 -0800 | [diff] [blame] | 23 | "radio_hidl_hal_ims.cpp", |
Sanket Padawe | 28fc10f | 2017-03-16 11:49:39 -0700 | [diff] [blame] | 24 | "radio_hidl_hal_misc.cpp", |
Shuoq | 064ee51 | 2017-02-27 16:35:56 -0800 | [diff] [blame] | 25 | "radio_hidl_hal_sms.cpp", |
Shuoq | 59bac4d | 2017-03-09 17:44:08 -0800 | [diff] [blame] | 26 | "radio_hidl_hal_stk.cpp", |
Sanket Padawe | 28fc10f | 2017-03-16 11:49:39 -0700 | [diff] [blame] | 27 | "radio_hidl_hal_test.cpp", |
| 28 | "radio_hidl_hal_voice.cpp", |
sqian | 54d88b7 | 2017-07-12 12:37:07 -0700 | [diff] [blame] | 29 | "radio_indication.cpp", |
Sanket Padawe | 28fc10f | 2017-03-16 11:49:39 -0700 | [diff] [blame] | 30 | "radio_response.cpp", |
sqian | 42c66f7 | 2017-05-30 13:30:08 -0700 | [diff] [blame] | 31 | "VtsHalRadioV1_0TargetTest.cpp", |
| 32 | "vts_test_util.cpp"], |
Tri Vo | 35c7bd2 | 2017-08-01 13:14:53 -0700 | [diff] [blame] | 33 | static_libs: [ |
Sanket Padawe | e4c6323 | 2017-02-07 15:58:34 -0800 | [diff] [blame] | 34 | "android.hardware.radio@1.0", |
| 35 | ], |
Shuoq | 064ee51 | 2017-02-27 16:35:56 -0800 | [diff] [blame] | 36 | } |
Shuoq | ca02ad4 | 2017-03-23 17:22:50 -0700 | [diff] [blame] | 37 | |
| 38 | cc_test { |
| 39 | name: "VtsHalSapV1_0TargetTest", |
Tri Vo | 35c7bd2 | 2017-08-01 13:14:53 -0700 | [diff] [blame] | 40 | defaults: ["VtsHalTargetTestDefaults"], |
Shuoq | ca02ad4 | 2017-03-23 17:22:50 -0700 | [diff] [blame] | 41 | srcs: ["sap_callback.cpp", |
| 42 | "sap_hidl_hal_api.cpp", |
| 43 | "sap_hidl_hal_test.cpp", |
sqian | 42c66f7 | 2017-05-30 13:30:08 -0700 | [diff] [blame] | 44 | "VtsHalSapV1_0TargetTest.cpp", |
| 45 | "vts_test_util.cpp"], |
Tri Vo | 35c7bd2 | 2017-08-01 13:14:53 -0700 | [diff] [blame] | 46 | static_libs: [ |
Shuoq | ca02ad4 | 2017-03-23 17:22:50 -0700 | [diff] [blame] | 47 | "android.hardware.radio@1.0", |
| 48 | ], |
Shuoq | ca02ad4 | 2017-03-23 17:22:50 -0700 | [diff] [blame] | 49 | } |
sqian | 0c74fc7 | 2017-05-24 15:08:25 -0700 | [diff] [blame] | 50 | |
| 51 | cc_library_static { |
sqian | 0c74fc7 | 2017-05-24 15:08:25 -0700 | [diff] [blame] | 52 | name: "RadioVtsTestUtilBase", |
| 53 | srcs : [ |
| 54 | "vts_test_util.cpp" |
| 55 | ], |
| 56 | } |
| 57 | |
| 58 | cc_library_headers { |
| 59 | name: "radio.util.header@1.0", |
| 60 | export_include_dirs: ["."], |
Tri Vo | 35c7bd2 | 2017-08-01 13:14:53 -0700 | [diff] [blame] | 61 | } |