blob: 2d8b412abb343513ba751731cd36808e83a437ea [file] [log] [blame]
Nate Jiang3ec67812020-08-24 11:04:31 -07001//
2// Copyright (C) 2020 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
Roshan Piuse9d1e7d2020-11-04 11:44:16 -080017cc_test {
18 name: "VtsHalWifiV1_5TargetTest",
19 defaults: ["VtsHalTargetTestDefaults"],
20 srcs: [
21 "wifi_chip_hidl_test.cpp",
22 "wifi_sta_iface_hidl_test.cpp",
23 ],
24 static_libs: [
25 "VtsHalWifiV1_0TargetTestUtil",
26 "android.hardware.wifi@1.0",
27 "android.hardware.wifi@1.1",
28 "android.hardware.wifi@1.2",
29 "android.hardware.wifi@1.3",
30 "android.hardware.wifi@1.4",
31 "android.hardware.wifi@1.5",
32 "libwifi-system-iface",
33 ],
34 test_suites: [
35 "general-tests",
36 "vts",
37 ],
38}
39
Nate Jiang3ec67812020-08-24 11:04:31 -070040// These tests are split out so that they can be conditioned on presence of the
41// "android.hardware.wifi.aware" feature.
42cc_test {
43 name: "VtsHalWifiNanV1_5TargetTest",
44 defaults: ["VtsHalTargetTestDefaults"],
45 srcs: [
46 "wifi_nan_iface_hidl_test.cpp",
47 ],
48 static_libs: [
49 "VtsHalWifiV1_0TargetTestUtil",
50 "android.hardware.wifi@1.0",
51 "android.hardware.wifi@1.1",
52 "android.hardware.wifi@1.2",
53 "android.hardware.wifi@1.3",
54 "android.hardware.wifi@1.4",
55 "android.hardware.wifi@1.5",
56 "libwifi-system-iface",
57 ],
58 test_suites: [
59 "general-tests",
60 "vts",
61 ],
62}
lesl420c4fc2020-11-23 19:33:04 +080063
64// SoftAP-specific tests, similar to VtsHalWifiApV1_0TargetTest.
65cc_test {
66 name: "VtsHalWifiApV1_5TargetTest",
67 defaults: ["VtsHalTargetTestDefaults"],
68 srcs: [
69 "wifi_chip_hidl_ap_test.cpp",
70 ],
71 static_libs: [
72 "VtsHalWifiV1_0TargetTestUtil",
73 "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 "libwifi-system-iface",
80 ],
81 test_suites: [
82 "general-tests",
83 "vts",
84 ],
85}