blob: cf499ef1e44eab1c6efc101d6c6a9269478be53d [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 Moreland8f2d92a2017-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 Yun4e077f22017-07-24 15:19:45 +090030 vndk: {
31 enabled: true,
32 support_system_process: true,
33 },
Steven Moreland8a61f322017-06-05 16:56:42 -070034 defaults: ["hidl-module-defaults"],
Steven Moreland8dd65742017-02-17 22:39:46 -080035 cflags: libhidl_flags,
Yifan Hong00f4a392016-11-16 12:35:58 -080036 shared_libs: [
37 "libbase",
38 "liblog",
39 "libutils",
40 "libhidlbase",
41 "libhwbinder",
42 "libcutils",
Jiyong Park129d5ff2017-05-15 15:44:39 +090043 "libvndksupport",
Yifan Hong00f4a392016-11-16 12:35:58 -080044 ],
45 export_shared_lib_headers: [
46 "libbase",
47 "libutils",
48 "libhidlbase",
49 ],
50
51 export_include_dirs: ["include"],
52
Yifan Hong2cd440c2016-11-23 11:30:36 -080053 generated_sources: [
54 "android.hidl.manager@1.0_genc++",
Steven Moreland8f2d92a2017-07-21 18:07:38 -070055 "android.hidl.manager@1.1_genc++",
Yifan Hong2cd440c2016-11-23 11:30:36 -080056 "android.hidl.base@1.0_genc++"
57 ],
58 generated_headers: [
59 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland8f2d92a2017-07-21 18:07:38 -070060 "android.hidl.manager@1.1_genc++_headers",
Yifan Hong2cd440c2016-11-23 11:30:36 -080061 "android.hidl.base@1.0_genc++_headers"
62 ],
63 export_generated_headers: [
64 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland8f2d92a2017-07-21 18:07:38 -070065 "android.hidl.manager@1.1_genc++_headers",
Yifan Hong2cd440c2016-11-23 11:30:36 -080066 "android.hidl.base@1.0_genc++_headers"
67 ],
Yifan Hong00f4a392016-11-16 12:35:58 -080068
69 srcs: [
70 "HidlBinderSupport.cpp",
Steven Moreland11a732a2017-03-07 17:44:17 -080071 "HidlTransportSupport.cpp",
Steven Moreland108d09d2017-05-05 16:15:38 -070072 "HidlTransportUtils.cpp",
Yifan Hong00f4a392016-11-16 12:35:58 -080073 "ServiceManagement.cpp",
74 "Static.cpp"
75 ],
76
77 product_variables: {
78 debuggable: {
79 cflags: ["-DLIBHIDL_TARGET_DEBUGGABLE"],
80 },
81 },
82}