blob: 7fc3717e48cdac773bedcacd10e3a754d1dd6e10 [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,
Steven Moreland8a61f322017-06-05 16:56:42 -070030 defaults: ["hidl-module-defaults"],
Steven Moreland8dd65742017-02-17 22:39:46 -080031 cflags: libhidl_flags,
Yifan Hong00f4a392016-11-16 12:35:58 -080032 shared_libs: [
33 "libbase",
34 "liblog",
35 "libutils",
36 "libhidlbase",
37 "libhwbinder",
38 "libcutils",
39 ],
40 export_shared_lib_headers: [
41 "libbase",
42 "libutils",
43 "libhidlbase",
44 ],
45
46 export_include_dirs: ["include"],
47
Yifan Hong2cd440c2016-11-23 11:30:36 -080048 generated_sources: [
49 "android.hidl.manager@1.0_genc++",
Steven Moreland2a2678e2017-07-21 18:07:38 -070050 "android.hidl.manager@1.1_genc++",
Yifan Hong2cd440c2016-11-23 11:30:36 -080051 "android.hidl.base@1.0_genc++"
52 ],
53 generated_headers: [
54 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland2a2678e2017-07-21 18:07:38 -070055 "android.hidl.manager@1.1_genc++_headers",
Yifan Hong2cd440c2016-11-23 11:30:36 -080056 "android.hidl.base@1.0_genc++_headers"
57 ],
58 export_generated_headers: [
59 "android.hidl.manager@1.0_genc++_headers",
Steven Moreland2a2678e2017-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 ],
Yifan Hong00f4a392016-11-16 12:35:58 -080063
64 srcs: [
65 "HidlBinderSupport.cpp",
Steven Moreland11a732a2017-03-07 17:44:17 -080066 "HidlTransportSupport.cpp",
Steven Moreland108d09d2017-05-05 16:15:38 -070067 "HidlTransportUtils.cpp",
Yifan Hong00f4a392016-11-16 12:35:58 -080068 "ServiceManagement.cpp",
69 "Static.cpp"
70 ],
71
72 product_variables: {
73 debuggable: {
74 cflags: ["-DLIBHIDL_TARGET_DEBUGGABLE"],
75 },
76 },
77}