blob: e2cd7b1e40a202f70f529855dd357943f35d427f [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",
24 "wifi_hidl_test.cpp",
25 "wifi_hidl_test_utils.cpp",
26 "wifi_nan_iface_hidl_test.cpp",
27 "wifi_p2p_iface_hidl_test.cpp",
28 "wifi_rtt_controller_hidl_test.cpp",
29 "wifi_sta_iface_hidl_test.cpp"],
30 shared_libs: [
31 "libbase",
32 "liblog",
33 "libcutils",
34 "libhidlbase",
35 "libhidltransport",
36 "libhwbinder",
37 "libnativehelper",
38 "libutils",
39 "android.hardware.wifi@1.0",
40 ],
41 static_libs: ["libgtest"],
42 cflags: [
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080043 "-O0",
44 "-g",
45 ],
Roshan Pius1ae4cbb2016-12-06 18:59:15 -080046}