blob: 8e142ec2c0e87fe3214b8e5f35cf4a3e6df35223 [file] [log] [blame]
Gabriel Biren28a48122021-10-26 21:00:47 +00001//
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",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000036 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000037 ],
38 static_libs: [
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000039 "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",
Gabriel Biren28a48122021-10-26 21:00:47 +000047 "android.hardware.wifi.supplicant-V1-ndk",
48 "libwifi-system",
49 "libwifi-system-iface",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000050 "VtsHalWifiV1_0TargetTestUtil",
51 "VtsHalWifiV1_5TargetTestUtil",
52 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000053 ],
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",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000070 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000071 ],
72 static_libs: [
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000073 "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",
Gabriel Biren28a48122021-10-26 21:00:47 +000081 "android.hardware.wifi.supplicant-V1-ndk",
82 "libwifi-system",
83 "libwifi-system-iface",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000084 "VtsHalWifiV1_0TargetTestUtil",
85 "VtsHalWifiV1_5TargetTestUtil",
86 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000087 ],
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",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000104 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +0000105 ],
106 static_libs: [
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000107 "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",
Gabriel Biren28a48122021-10-26 21:00:47 +0000115 "android.hardware.wifi.supplicant-V1-ndk",
116 "libwifi-system",
117 "libwifi-system-iface",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000118 "VtsHalWifiV1_0TargetTestUtil",
119 "VtsHalWifiV1_5TargetTestUtil",
120 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +0000121 ],
122 test_suites: [
123 "general-tests",
124 "vts",
125 ],
126}