• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1//
2// Copyright (C) 2021 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
17package {
18    // See: http://go/android-license-faq
19    // A large-scale-change added 'default_applicable_licenses' to import
20    // all of the 'license_kinds' from "hardware_interfaces_license"
21    // to get the below license kinds:
22    //   SPDX-license-identifier-Apache-2.0
23    default_applicable_licenses: ["hardware_interfaces_license"],
24}
25
26cc_test {
27    name: "VtsHalWifiSupplicantStaIfaceTargetTest",
28    defaults: [
29        "VtsHalTargetTestDefaults",
30        "use_libaidlvintf_gtest_helper_static",
31    ],
32    srcs: ["supplicant_sta_iface_aidl_test.cpp"],
33    shared_libs: [
34        "libbinder",
35        "libbinder_ndk",
36        "libvndksupport",
37    ],
38    static_libs: [
39        "android.hardware.wifi@1.0",
40        "android.hardware.wifi@1.1",
41        "android.hardware.wifi@1.2",
42        "android.hardware.wifi@1.3",
43        "android.hardware.wifi@1.4",
44        "android.hardware.wifi@1.5",
45        "android.hardware.wifi.supplicant@1.0",
46        "android.hardware.wifi.supplicant@1.1",
47        "android.hardware.wifi.supplicant-V1-ndk",
48        "libwifi-system",
49        "libwifi-system-iface",
50        "VtsHalWifiV1_0TargetTestUtil",
51        "VtsHalWifiV1_5TargetTestUtil",
52        "VtsHalWifiSupplicantV1_0TargetTestUtil",
53    ],
54    test_suites: [
55        "general-tests",
56        "vts",
57    ],
58}
59
60cc_test {
61    name: "VtsHalWifiSupplicantStaNetworkTargetTest",
62    defaults: [
63        "VtsHalTargetTestDefaults",
64        "use_libaidlvintf_gtest_helper_static",
65    ],
66    srcs: ["supplicant_sta_network_aidl_test.cpp"],
67    shared_libs: [
68        "libbinder",
69        "libbinder_ndk",
70        "libvndksupport",
71    ],
72    static_libs: [
73        "android.hardware.wifi@1.0",
74        "android.hardware.wifi@1.1",
75        "android.hardware.wifi@1.2",
76        "android.hardware.wifi@1.3",
77        "android.hardware.wifi@1.4",
78        "android.hardware.wifi@1.5",
79        "android.hardware.wifi.supplicant@1.0",
80        "android.hardware.wifi.supplicant@1.1",
81        "android.hardware.wifi.supplicant-V1-ndk",
82        "libwifi-system",
83        "libwifi-system-iface",
84        "VtsHalWifiV1_0TargetTestUtil",
85        "VtsHalWifiV1_5TargetTestUtil",
86        "VtsHalWifiSupplicantV1_0TargetTestUtil",
87    ],
88    test_suites: [
89        "general-tests",
90        "vts",
91    ],
92}
93
94cc_test {
95    name: "VtsHalWifiSupplicantP2pIfaceTargetTest",
96    defaults: [
97        "VtsHalTargetTestDefaults",
98        "use_libaidlvintf_gtest_helper_static",
99    ],
100    srcs: ["supplicant_p2p_iface_aidl_test.cpp"],
101    shared_libs: [
102        "libbinder",
103        "libbinder_ndk",
104        "libvndksupport",
105    ],
106    static_libs: [
107        "android.hardware.wifi@1.0",
108        "android.hardware.wifi@1.1",
109        "android.hardware.wifi@1.2",
110        "android.hardware.wifi@1.3",
111        "android.hardware.wifi@1.4",
112        "android.hardware.wifi@1.5",
113        "android.hardware.wifi.supplicant@1.0",
114        "android.hardware.wifi.supplicant@1.1",
115        "android.hardware.wifi.supplicant-V1-ndk",
116        "libwifi-system",
117        "libwifi-system-iface",
118        "VtsHalWifiV1_0TargetTestUtil",
119        "VtsHalWifiV1_5TargetTestUtil",
120        "VtsHalWifiSupplicantV1_0TargetTestUtil",
121    ],
122    test_suites: [
123        "general-tests",
124        "vts",
125    ],
126}
127