Home | History | Annotate | Download | only in functional
      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 {
     18     name: "VtsHalRadioV1_0TargetTest",
     19     defaults: ["hidl_defaults"],
     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_response.cpp",
     30            "VtsHalRadioV1_0TargetTest.cpp",
     31            "vts_test_util.cpp"],
     32     shared_libs: [
     33         "libbase",
     34         "liblog",
     35         "libcutils",
     36         "libhidlbase",
     37         "libhidltransport",
     38         "libnativehelper",
     39         "libutils",
     40         "android.hardware.radio (a] 1.0",
     41     ],
     42     static_libs: ["VtsHalHidlTargetTestBase"],
     43     cflags: [
     44         "-O0",
     45         "-g",
     46     ],
     47 }
     48 
     49 cc_test {
     50     name: "VtsHalSapV1_0TargetTest",
     51     defaults: ["hidl_defaults"],
     52     srcs: ["sap_callback.cpp",
     53            "sap_hidl_hal_api.cpp",
     54            "sap_hidl_hal_test.cpp",
     55            "VtsHalSapV1_0TargetTest.cpp",
     56            "vts_test_util.cpp"],
     57     shared_libs: [
     58         "libbase",
     59         "liblog",
     60         "libcutils",
     61         "libhidlbase",
     62         "libhidltransport",
     63         "libnativehelper",
     64         "libutils",
     65         "android.hardware.radio (a] 1.0",
     66     ],
     67     static_libs: ["VtsHalHidlTargetTestBase"],
     68     cflags: [
     69         "-O0",
     70         "-g",
     71     ],
     72 }
     73