blob: f7c619ab51b6c6d41f6b275db4ee442935bc936d [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",
45 "android.hardware.wifi.supplicant@1.0",
46 "android.hardware.wifi.supplicant@1.1",
Biswarup Pal76514eb2022-11-05 14:13:09 +000047 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000048 "libwifi-system",
49 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000050 "VtsHalWifiV1_0TargetTestUtil",
51 "VtsHalWifiV1_5TargetTestUtil",
52 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000053 "android.hardware.wifi-V1-ndk",
54 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000055 ],
56 test_suites: [
57 "general-tests",
58 "vts",
59 ],
60}
61
62cc_test {
63 name: "VtsHalWifiSupplicantStaNetworkTargetTest",
64 defaults: [
65 "VtsHalTargetTestDefaults",
66 "use_libaidlvintf_gtest_helper_static",
67 ],
68 srcs: ["supplicant_sta_network_aidl_test.cpp"],
69 shared_libs: [
70 "libbinder",
71 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000072 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000073 ],
74 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +000075 "android.hardware.wifi@1.0",
76 "android.hardware.wifi@1.1",
77 "android.hardware.wifi@1.2",
78 "android.hardware.wifi@1.3",
79 "android.hardware.wifi@1.4",
80 "android.hardware.wifi@1.5",
81 "android.hardware.wifi.supplicant@1.0",
82 "android.hardware.wifi.supplicant@1.1",
Biswarup Pal76514eb2022-11-05 14:13:09 +000083 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000084 "libwifi-system",
85 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000086 "VtsHalWifiV1_0TargetTestUtil",
87 "VtsHalWifiV1_5TargetTestUtil",
88 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000089 "android.hardware.wifi-V1-ndk",
90 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000091 ],
92 test_suites: [
93 "general-tests",
94 "vts",
95 ],
96}
97
98cc_test {
99 name: "VtsHalWifiSupplicantP2pIfaceTargetTest",
100 defaults: [
101 "VtsHalTargetTestDefaults",
102 "use_libaidlvintf_gtest_helper_static",
103 ],
104 srcs: ["supplicant_p2p_iface_aidl_test.cpp"],
105 shared_libs: [
106 "libbinder",
107 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000108 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +0000109 ],
110 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +0000111 "android.hardware.wifi@1.0",
112 "android.hardware.wifi@1.1",
113 "android.hardware.wifi@1.2",
114 "android.hardware.wifi@1.3",
115 "android.hardware.wifi@1.4",
116 "android.hardware.wifi@1.5",
117 "android.hardware.wifi.supplicant@1.0",
118 "android.hardware.wifi.supplicant@1.1",
Biswarup Pal76514eb2022-11-05 14:13:09 +0000119 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +0000120 "libwifi-system",
121 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +0000122 "VtsHalWifiV1_0TargetTestUtil",
123 "VtsHalWifiV1_5TargetTestUtil",
124 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Gabriel Birenbd150ea2022-11-04 21:45:53 +0000125 "android.hardware.wifi-V1-ndk",
126 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +0000127 ],
128 test_suites: [
129 "general-tests",
130 "vts",
131 ],
132}