blob: 8a5d7e0ae0d20c7543ae31f818d2ade53efb776d [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
17cc_test {
18 name: "wifi_hidl_test",
19 gtest: true,
20 srcs: [
21 "main.cpp",
22 "wifi_ap_iface_hidl_test.cpp",
23 "wifi_chip_hidl_test.cpp",
mukesh agrawal90f32172017-01-25 19:43:08 -080024 "wifi_hidl_call_util_selftest.cpp",
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080025 "wifi_hidl_test.cpp",
26 "wifi_hidl_test_utils.cpp",
27 "wifi_nan_iface_hidl_test.cpp",
28 "wifi_p2p_iface_hidl_test.cpp",
29 "wifi_rtt_controller_hidl_test.cpp",
30 "wifi_sta_iface_hidl_test.cpp"],
31 shared_libs: [
32 "libbase",
33 "liblog",
34 "libcutils",
35 "libhidlbase",
36 "libhidltransport",
37 "libhwbinder",
38 "libnativehelper",
39 "libutils",
40 "android.hardware.wifi@1.0",
41 ],
42 static_libs: ["libgtest"],
43 cflags: [
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080044 "-O0",
45 "-g",
46 ],
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080047}