blob: b2f76a31aed2fffa99b6cb73358b632863713b86 [file] [log] [blame]
Roshan Pius1ae4cbb2016-12-06 18:59:15 -08001//
2// Copyright (C) 2016 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
Etan Cohena49579b2017-03-10 10:43:31 -080017cc_library_static {
18 name: "VtsHalWifiV1_0TargetTestUtil",
Chih-Hung Hsieh3da5b012017-09-29 15:15:48 -070019 defaults: ["hidl_defaults"],
Etan Cohena49579b2017-03-10 10:43:31 -080020 srcs: [
Etan Cohena49579b2017-03-10 10:43:31 -080021 "wifi_hidl_call_util_selftest.cpp",
22 "wifi_hidl_test.cpp",
Zhuoyao Zhang308f1532018-02-08 21:17:39 -080023 "wifi_hidl_test_utils.cpp",
24 ],
Roshan Piusdbd83ef2017-06-20 12:05:40 -070025 export_include_dirs: [
26 "."
27 ],
Etan Cohena49579b2017-03-10 10:43:31 -080028 shared_libs: [
29 "libbase",
30 "liblog",
31 "libcutils",
32 "libhidlbase",
33 "libhidltransport",
34 "libnativehelper",
35 "libutils",
36 "android.hardware.wifi@1.0",
37 ],
38 static_libs: ["VtsHalHidlTargetTestBase"],
39}
40
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080041cc_test {
Zhuoyao Zhangf7693ee2017-02-16 14:58:55 -080042 name: "VtsHalWifiV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070043 defaults: ["VtsHalTargetTestDefaults"],
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080044 srcs: [
Etan Cohen2d523c02017-03-23 08:11:47 -070045 "VtsHalWifiV1_0TargetTest.cpp",
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080046 "wifi_ap_iface_hidl_test.cpp",
47 "wifi_chip_hidl_test.cpp",
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080048 "wifi_p2p_iface_hidl_test.cpp",
49 "wifi_rtt_controller_hidl_test.cpp",
Tri Vo6c2bd862017-08-01 13:14:53 -070050 "wifi_sta_iface_hidl_test.cpp",
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080051 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070052 static_libs: [
53 "VtsHalWifiV1_0TargetTestUtil",
54 "android.hardware.wifi@1.0",
Etan Cohena49579b2017-03-10 10:43:31 -080055 ],
56}
57
58cc_test {
59 name: "VtsHalWifiNanV1_0TargetTest",
Tri Vo6c2bd862017-08-01 13:14:53 -070060 defaults: ["VtsHalTargetTestDefaults"],
Etan Cohen2d523c02017-03-23 08:11:47 -070061 srcs: [
62 "VtsHalWifiV1_0TargetTest.cpp",
Tri Vo6c2bd862017-08-01 13:14:53 -070063 "wifi_nan_iface_hidl_test.cpp",
Etan Cohena49579b2017-03-10 10:43:31 -080064 ],
Tri Vo6c2bd862017-08-01 13:14:53 -070065 static_libs: [
66 "VtsHalWifiV1_0TargetTestUtil",
67 "android.hardware.wifi@1.0",
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080068 ],
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080069}