Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 1 | // 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 | |
| 15 | subdirs = [ |
Steven Moreland | 346cf51 | 2017-02-16 19:23:24 -0800 | [diff] [blame] | 16 | "allocator/1.0", |
| 17 | "allocator/1.0/default", |
Steven Moreland | cb9e490 | 2017-10-02 13:24:49 -0700 | [diff] [blame] | 18 | "allocator/1.0/utils", |
Steven Moreland | 2ef31d8 | 2016-12-21 14:38:23 -0800 | [diff] [blame] | 19 | "base/1.0", |
Martijn Coenen | 3079100 | 2016-12-01 15:40:46 +0100 | [diff] [blame] | 20 | "manager/1.0", |
Steven Moreland | 2a2678e | 2017-07-21 18:07:38 -0700 | [diff] [blame] | 21 | "manager/1.1", |
Martijn Coenen | 3079100 | 2016-12-01 15:40:46 +0100 | [diff] [blame] | 22 | "memory/1.0", |
| 23 | "memory/1.0/default", |
Steven Moreland | 2ef31d8 | 2016-12-21 14:38:23 -0800 | [diff] [blame] | 24 | "token/1.0", |
Pawin Vongmasa | 155e9d3 | 2017-03-09 06:38:22 -0800 | [diff] [blame] | 25 | "token/1.0/utils", |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 26 | ] |
| 27 | |
Steven Moreland | 30b8a42 | 2017-07-18 22:03:52 -0700 | [diff] [blame^] | 28 | hidl_package_root { |
| 29 | name: "android.hidl", |
| 30 | path: "system/libhidl/transport", |
| 31 | } |
| 32 | |
Yifan Hong | 0abe5aa | 2017-11-08 10:42:55 -0800 | [diff] [blame] | 33 | cc_library { |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 34 | name: "libhidltransport", |
Steven Moreland | 647c0af | 2017-04-11 09:39:24 -0700 | [diff] [blame] | 35 | vendor_available: true, |
Justin Yun | 74f6593 | 2017-07-24 15:19:45 +0900 | [diff] [blame] | 36 | vndk: { |
| 37 | enabled: true, |
| 38 | support_system_process: true, |
| 39 | }, |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 40 | defaults: [ |
| 41 | "libhidl-defaults", |
| 42 | "hidl-module-defaults", |
| 43 | ], |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 44 | shared_libs: [ |
| 45 | "libbase", |
| 46 | "liblog", |
| 47 | "libutils", |
| 48 | "libhidlbase", |
| 49 | "libhwbinder", |
| 50 | "libcutils", |
Jiyong Park | ba8ace1 | 2017-05-15 15:44:39 +0900 | [diff] [blame] | 51 | "libvndksupport", |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 52 | ], |
| 53 | export_shared_lib_headers: [ |
| 54 | "libbase", |
| 55 | "libutils", |
| 56 | "libhidlbase", |
| 57 | ], |
| 58 | |
| 59 | export_include_dirs: ["include"], |
| 60 | |
Yifan Hong | 2cd440c | 2016-11-23 11:30:36 -0800 | [diff] [blame] | 61 | generated_sources: [ |
| 62 | "android.hidl.manager@1.0_genc++", |
Steven Moreland | 2a2678e | 2017-07-21 18:07:38 -0700 | [diff] [blame] | 63 | "android.hidl.manager@1.1_genc++", |
Yifan Hong | 2cd440c | 2016-11-23 11:30:36 -0800 | [diff] [blame] | 64 | "android.hidl.base@1.0_genc++" |
| 65 | ], |
| 66 | generated_headers: [ |
| 67 | "android.hidl.manager@1.0_genc++_headers", |
Steven Moreland | 2a2678e | 2017-07-21 18:07:38 -0700 | [diff] [blame] | 68 | "android.hidl.manager@1.1_genc++_headers", |
Yifan Hong | 2cd440c | 2016-11-23 11:30:36 -0800 | [diff] [blame] | 69 | "android.hidl.base@1.0_genc++_headers" |
| 70 | ], |
| 71 | export_generated_headers: [ |
| 72 | "android.hidl.manager@1.0_genc++_headers", |
Steven Moreland | 2a2678e | 2017-07-21 18:07:38 -0700 | [diff] [blame] | 73 | "android.hidl.manager@1.1_genc++_headers", |
Yifan Hong | 2cd440c | 2016-11-23 11:30:36 -0800 | [diff] [blame] | 74 | "android.hidl.base@1.0_genc++_headers" |
| 75 | ], |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 76 | |
| 77 | srcs: [ |
| 78 | "HidlBinderSupport.cpp", |
Steven Moreland | 0b1e62a | 2017-10-09 13:03:17 -0700 | [diff] [blame] | 79 | "HidlPassthroughSupport.cpp", |
Steven Moreland | 11a732a | 2017-03-07 17:44:17 -0800 | [diff] [blame] | 80 | "HidlTransportSupport.cpp", |
Steven Moreland | 108d09d | 2017-05-05 16:15:38 -0700 | [diff] [blame] | 81 | "HidlTransportUtils.cpp", |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 82 | "ServiceManagement.cpp", |
| 83 | "Static.cpp" |
| 84 | ], |
| 85 | |
| 86 | product_variables: { |
| 87 | debuggable: { |
| 88 | cflags: ["-DLIBHIDL_TARGET_DEBUGGABLE"], |
| 89 | }, |
Steven Moreland | a15479f | 2017-10-06 16:06:26 -0700 | [diff] [blame] | 90 | treble: { |
| 91 | cflags: ["-DLIBHIDL_TARGET_TREBLE"] |
| 92 | }, |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 93 | }, |
| 94 | } |