blob: ae04548fd7610e92a3fc70211e4545619e3a45a7 [file] [log] [blame]
Dan Willemsen6365a872016-09-13 16:29:54 -07001// Copyright (C) 2016 The Android Open Source Project
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
Yifan Hong602b85a2016-10-24 13:40:01 -070015subdirs = [
Martijn Coenen30791002016-12-01 15:40:46 +010016 "base", // libhidlbase
17 "libhidlmemory", // libhidlmemory
18 "transport", // libhidltransport
Yifan Hong602b85a2016-10-24 13:40:01 -070019]
20
Steven Moreland8dd65742017-02-17 22:39:46 -080021libhidl_flags = [
22 "-Wall",
23 "-Werror",
24]
25
Yifan Hong00f4a392016-11-16 12:35:58 -080026cc_test {
27 name: "libhidl_test",
28 gtest: false,
29 srcs: ["test_main.cpp"],
30
Dan Willemsen6365a872016-09-13 16:29:54 -070031 shared_libs: [
32 "libbase",
Yifan Hong00f4a392016-11-16 12:35:58 -080033 "libhidlbase",
34 "libhidltransport",
35 "libhwbinder",
Dan Willemsen6365a872016-09-13 16:29:54 -070036 "liblog",
37 "libutils",
Jeff Tinker0f3461d2017-01-03 10:40:55 -080038 "libcutils",
Dan Willemsen6365a872016-09-13 16:29:54 -070039 ],
Yifan Hong2be94182017-03-03 19:07:38 -080040 static_libs: ["libgtest", "libgmock"],
Yifan Hong00f4a392016-11-16 12:35:58 -080041
42 cflags: [
43 "-O0",
44 "-g",
Steven Moreland8dd65742017-02-17 22:39:46 -080045 ] + libhidl_flags,
Dan Willemsen6365a872016-09-13 16:29:54 -070046}