blob: 937fdc765c03af7eba9a8eb1e6bb5a308a2545ee [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 Birenfc6bd8c2022-11-04 21:45:53 +000039 "android.hardware.wifi-V1-ndk",
Biswarup Pal76514eb2022-11-05 14:13:09 +000040 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000041 "libwifi-system",
42 "libwifi-system-iface",
Gabriel Birenfc6bd8c2022-11-04 21:45:53 +000043 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000044 ],
45 test_suites: [
46 "general-tests",
47 "vts",
48 ],
49}
50
51cc_test {
52 name: "VtsHalWifiSupplicantStaNetworkTargetTest",
53 defaults: [
54 "VtsHalTargetTestDefaults",
55 "use_libaidlvintf_gtest_helper_static",
56 ],
57 srcs: ["supplicant_sta_network_aidl_test.cpp"],
58 shared_libs: [
59 "libbinder",
60 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000061 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000062 ],
63 static_libs: [
Gabriel Birenfc6bd8c2022-11-04 21:45:53 +000064 "android.hardware.wifi-V1-ndk",
Biswarup Pal76514eb2022-11-05 14:13:09 +000065 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000066 "libwifi-system",
67 "libwifi-system-iface",
Gabriel Birenfc6bd8c2022-11-04 21:45:53 +000068 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000069 ],
70 test_suites: [
71 "general-tests",
72 "vts",
73 ],
74}
75
76cc_test {
77 name: "VtsHalWifiSupplicantP2pIfaceTargetTest",
78 defaults: [
79 "VtsHalTargetTestDefaults",
80 "use_libaidlvintf_gtest_helper_static",
81 ],
82 srcs: ["supplicant_p2p_iface_aidl_test.cpp"],
83 shared_libs: [
84 "libbinder",
85 "libbinder_ndk",
Gabriel Biren4e6c9a22022-01-31 22:26:08 +000086 "libvndksupport",
Gabriel Biren28a48122021-10-26 21:00:47 +000087 ],
88 static_libs: [
Gabriel Birenfc6bd8c2022-11-04 21:45:53 +000089 "android.hardware.wifi-V1-ndk",
Biswarup Pal76514eb2022-11-05 14:13:09 +000090 "android.hardware.wifi.supplicant-V2-ndk",
Gabriel Biren28a48122021-10-26 21:00:47 +000091 "libwifi-system",
92 "libwifi-system-iface",
Gabriel Birenfc6bd8c2022-11-04 21:45:53 +000093 "VtsHalWifiTargetTestUtil",
Gabriel Biren28a48122021-10-26 21:00:47 +000094 ],
95 test_suites: [
96 "general-tests",
97 "vts",
98 ],
99}