blob: b2356a0c12d00c4a77c740f5989bbb35f55f6086 [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 Birene80aabb2022-12-01 22:24:16 +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",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +000045 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +000046 "android.hardware.wifi.supplicant@1.0",
47 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi08c4c462023-11-07 00:06:59 +000048 "android.hardware.wifi.supplicant-V3-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000049 "libwifi-system",
50 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000051 "VtsHalWifiV1_0TargetTestUtil",
52 "VtsHalWifiV1_5TargetTestUtil",
53 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000054 "android.hardware.wifi-V1-ndk",
55 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000056 ],
57 test_suites: [
58 "general-tests",
59 "vts",
60 ],
61}
62
63cc_test {
64 name: "VtsHalWifiSupplicantStaNetworkTargetTest",
65 defaults: [
66 "VtsHalTargetTestDefaults",
67 "use_libaidlvintf_gtest_helper_static",
68 ],
69 srcs: ["supplicant_sta_network_aidl_test.cpp"],
70 shared_libs: [
71 "libbinder",
72 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000073 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000074 ],
75 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +000076 "android.hardware.wifi@1.0",
77 "android.hardware.wifi@1.1",
78 "android.hardware.wifi@1.2",
79 "android.hardware.wifi@1.3",
80 "android.hardware.wifi@1.4",
81 "android.hardware.wifi@1.5",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +000082 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +000083 "android.hardware.wifi.supplicant@1.0",
84 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi08c4c462023-11-07 00:06:59 +000085 "android.hardware.wifi.supplicant-V3-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000086 "libwifi-system",
87 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000088 "VtsHalWifiV1_0TargetTestUtil",
89 "VtsHalWifiV1_5TargetTestUtil",
90 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000091 "android.hardware.wifi-V1-ndk",
92 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000093 ],
94 test_suites: [
95 "general-tests",
96 "vts",
97 ],
98}
99
100cc_test {
101 name: "VtsHalWifiSupplicantP2pIfaceTargetTest",
102 defaults: [
103 "VtsHalTargetTestDefaults",
104 "use_libaidlvintf_gtest_helper_static",
105 ],
106 srcs: ["supplicant_p2p_iface_aidl_test.cpp"],
107 shared_libs: [
108 "libbinder",
109 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000110 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +0000111 ],
112 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +0000113 "android.hardware.wifi@1.0",
114 "android.hardware.wifi@1.1",
115 "android.hardware.wifi@1.2",
116 "android.hardware.wifi@1.3",
117 "android.hardware.wifi@1.4",
118 "android.hardware.wifi@1.5",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +0000119 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +0000120 "android.hardware.wifi.supplicant@1.0",
121 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi08c4c462023-11-07 00:06:59 +0000122 "android.hardware.wifi.supplicant-V3-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +0000123 "libwifi-system",
124 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +0000125 "VtsHalWifiV1_0TargetTestUtil",
126 "VtsHalWifiV1_5TargetTestUtil",
127 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +0000128 "android.hardware.wifi-V1-ndk",
129 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +0000130 ],
131 test_suites: [
132 "general-tests",
133 "vts",
134 ],
135}