• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2016 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_library_static {
18    name: "VtsHalWifiV1_0TargetTestUtil",
19    srcs: [
20        "wifi_hidl_call_util_selftest.cpp",
21        "wifi_hidl_test.cpp",
22        "wifi_hidl_test_utils.cpp"],
23    export_include_dirs: [
24        "."
25    ],
26    shared_libs: [
27        "libbase",
28        "liblog",
29        "libcutils",
30        "libhidlbase",
31        "libhidltransport",
32        "libnativehelper",
33        "libutils",
34        "android.hardware.wifi@1.0",
35    ],
36    static_libs: ["VtsHalHidlTargetTestBase"],
37}
38
39cc_test {
40    name: "VtsHalWifiV1_0TargetTest",
41    defaults: ["VtsHalTargetTestDefaults"],
42    srcs: [
43        "VtsHalWifiV1_0TargetTest.cpp",
44        "wifi_ap_iface_hidl_test.cpp",
45        "wifi_chip_hidl_test.cpp",
46        "wifi_p2p_iface_hidl_test.cpp",
47        "wifi_rtt_controller_hidl_test.cpp",
48        "wifi_sta_iface_hidl_test.cpp",
49    ],
50    static_libs: [
51        "VtsHalWifiV1_0TargetTestUtil",
52        "android.hardware.wifi@1.0",
53    ],
54}
55
56cc_test {
57    name: "VtsHalWifiNanV1_0TargetTest",
58    defaults: ["VtsHalTargetTestDefaults"],
59    srcs: [
60        "VtsHalWifiV1_0TargetTest.cpp",
61        "wifi_nan_iface_hidl_test.cpp",
62    ],
63    static_libs: [
64        "VtsHalWifiV1_0TargetTestUtil",
65        "android.hardware.wifi@1.0",
66    ],
67}
68