blob: 62aee52ad03d7ff1ebdf72790971ab6aa2308e30 [file] [log] [blame]
Yifan Hong00f4a392016-11-16 12:35:58 -08001// 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
15subdirs = [
Steven Moreland346cf512017-02-16 19:23:24 -080016 "allocator/1.0",
17 "allocator/1.0/default",
Steven Moreland2ef31d82016-12-21 14:38:23 -080018 "base/1.0",
Martijn Coenen30791002016-12-01 15:40:46 +010019 "manager/1.0",
Steven Moreland2a2678e2017-07-21 18:07:38 -070020 "manager/1.1",
Martijn Coenen30791002016-12-01 15:40:46 +010021 "memory/1.0",
22 "memory/1.0/default",
Steven Moreland2ef31d82016-12-21 14:38:23 -080023 "token/1.0",
Pawin Vongmasa155e9d32017-03-09 06:38:22 -080024 "token/1.0/utils",
Yifan Hong00f4a392016-11-16 12:35:58 -080025]
26
27cc_library_shared {
28 name: "libhidltransport",
Steven Moreland647c0af2017-04-11 09:39:24 -070029 vendor_available: true,
Justin Yun74f65932017-07-24 15:19:45 +090030 vndk: {
31 enabled: true,
32 support_system_process: true,
33 },
Steven Morelandc75fc622017-08-04 11:04:39 -070034 defaults: [
35 "libhidl-defaults",
36 "hidl-module-defaults",
37 ],
Yifan Hong00f4a392016-11-16 12:35:58 -080038 shared_libs: [
39 "libbase",
40 "liblog",
41 "libutils",
42 "libhidlbase",
43 "libhwbinder",
44 "libcutils",
45 ],
46 export_shared_lib_headers: [
47 "libbase",
48 "libutils",
49 "libhidlbase",
50 ],
51
52 export_include_dirs: ["include"],
53
Yifan Hong2cd440c2016-11-23 11:30:36 -080054 generated_sources: [
55 "android.hidl.manager@1.0_genc++",
Steven Moreland2a2678e2017-07-21 18:07:38 -070056 "android.hidl.manager@1.1_genc++",
Yifan Hong2cd440c2016-11-23 11:30:36 -080057 "android.hidl.base@1.0_genc++"
58 ],
59 generated_headers: [
60 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland2a2678e2017-07-21 18:07:38 -070061 "android.hidl.manager@1.1_genc++_headers",
Yifan Hong2cd440c2016-11-23 11:30:36 -080062 "android.hidl.base@1.0_genc++_headers"
63 ],
64 export_generated_headers: [
65 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland2a2678e2017-07-21 18:07:38 -070066 "android.hidl.manager@1.1_genc++_headers",
Yifan Hong2cd440c2016-11-23 11:30:36 -080067 "android.hidl.base@1.0_genc++_headers"
68 ],
Yifan Hong00f4a392016-11-16 12:35:58 -080069
70 srcs: [
71 "HidlBinderSupport.cpp",
Steven Moreland11a732a2017-03-07 17:44:17 -080072 "HidlTransportSupport.cpp",
Steven Moreland108d09d2017-05-05 16:15:38 -070073 "HidlTransportUtils.cpp",
Yifan Hong00f4a392016-11-16 12:35:58 -080074 "ServiceManagement.cpp",
75 "Static.cpp"
76 ],
77
78 product_variables: {
79 debuggable: {
80 cflags: ["-DLIBHIDL_TARGET_DEBUGGABLE"],
81 },
82 },
83}