blob: 4ffec3f433c68f8861052a6c654cdc51f3e76018 [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 {
Aditya Choudharyad2ba1b2024-02-05 15:45:22 +000018 default_team: "trendy_team_fwk_wifi_hal",
Gabriel Biren28a48122021-10-26 21:00:47 +000019 // See: http://go/android-license-faq
20 // A large-scale-change added 'default_applicable_licenses' to import
21 // all of the 'license_kinds' from "hardware_interfaces_license"
22 // to get the below license kinds:
23 // SPDX-license-identifier-Apache-2.0
24 default_applicable_licenses: ["hardware_interfaces_license"],
25}
26
27cc_test {
28 name: "VtsHalWifiSupplicantStaIfaceTargetTest",
29 defaults: [
30 "VtsHalTargetTestDefaults",
31 "use_libaidlvintf_gtest_helper_static",
32 ],
33 srcs: ["supplicant_sta_iface_aidl_test.cpp"],
34 shared_libs: [
35 "libbinder",
36 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000037 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000038 ],
39 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +000040 "android.hardware.wifi@1.0",
41 "android.hardware.wifi@1.1",
42 "android.hardware.wifi@1.2",
43 "android.hardware.wifi@1.3",
44 "android.hardware.wifi@1.4",
45 "android.hardware.wifi@1.5",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +000046 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +000047 "android.hardware.wifi.supplicant@1.0",
48 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi39f86252024-09-18 04:40:22 +000049 "android.hardware.wifi.supplicant-V4-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000050 "libwifi-system",
51 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000052 "VtsHalWifiV1_0TargetTestUtil",
53 "VtsHalWifiV1_5TargetTestUtil",
54 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Les Leeaf860de2023-12-07 04:45:03 +000055 "android.hardware.wifi.common-V1-ndk",
56 "android.hardware.wifi-V2-ndk",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000057 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000058 ],
59 test_suites: [
60 "general-tests",
61 "vts",
62 ],
63}
64
65cc_test {
66 name: "VtsHalWifiSupplicantStaNetworkTargetTest",
67 defaults: [
68 "VtsHalTargetTestDefaults",
69 "use_libaidlvintf_gtest_helper_static",
70 ],
71 srcs: ["supplicant_sta_network_aidl_test.cpp"],
72 shared_libs: [
73 "libbinder",
74 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000075 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000076 ],
77 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +000078 "android.hardware.wifi@1.0",
79 "android.hardware.wifi@1.1",
80 "android.hardware.wifi@1.2",
81 "android.hardware.wifi@1.3",
82 "android.hardware.wifi@1.4",
83 "android.hardware.wifi@1.5",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +000084 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +000085 "android.hardware.wifi.supplicant@1.0",
86 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi39f86252024-09-18 04:40:22 +000087 "android.hardware.wifi.supplicant-V4-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000088 "libwifi-system",
89 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +000090 "VtsHalWifiV1_0TargetTestUtil",
91 "VtsHalWifiV1_5TargetTestUtil",
92 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Les Leeaf860de2023-12-07 04:45:03 +000093 "android.hardware.wifi.common-V1-ndk",
94 "android.hardware.wifi-V2-ndk",
Gabriel Birenbd150ea2022-11-04 21:45:53 +000095 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000096 ],
97 test_suites: [
98 "general-tests",
99 "vts",
100 ],
101}
102
103cc_test {
104 name: "VtsHalWifiSupplicantP2pIfaceTargetTest",
105 defaults: [
106 "VtsHalTargetTestDefaults",
107 "use_libaidlvintf_gtest_helper_static",
108 ],
109 srcs: ["supplicant_p2p_iface_aidl_test.cpp"],
110 shared_libs: [
111 "libbinder",
112 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +0000113 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +0000114 ],
115 static_libs: [
Gabriel Birene80aabb2022-12-01 22:24:16 +0000116 "android.hardware.wifi@1.0",
117 "android.hardware.wifi@1.1",
118 "android.hardware.wifi@1.2",
119 "android.hardware.wifi@1.3",
120 "android.hardware.wifi@1.4",
121 "android.hardware.wifi@1.5",
Gabriel Biren7d1bdeb2023-12-05 18:57:11 +0000122 "android.hardware.wifi.common-V1-ndk",
Gabriel Birene80aabb2022-12-01 22:24:16 +0000123 "android.hardware.wifi.supplicant@1.0",
124 "android.hardware.wifi.supplicant@1.1",
Sunil Ravi39f86252024-09-18 04:40:22 +0000125 "android.hardware.wifi.supplicant-V4-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +0000126 "libwifi-system",
127 "libwifi-system-iface",
Gabriel Birene80aabb2022-12-01 22:24:16 +0000128 "VtsHalWifiV1_0TargetTestUtil",
129 "VtsHalWifiV1_5TargetTestUtil",
130 "VtsHalWifiSupplicantV1_0TargetTestUtil",
Les Leeaf860de2023-12-07 04:45:03 +0000131 "android.hardware.wifi.common-V1-ndk",
132 "android.hardware.wifi-V2-ndk",
Gabriel Birenbd150ea2022-11-04 21:45:53 +0000133 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +0000134 ],
135 test_suites: [
136 "general-tests",
137 "vts",
138 ],
139}