Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [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 | |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 15 | cc_defaults { |
| 16 | name: "libhidl-defaults", |
| 17 | cflags: [ |
| 18 | "-Wall", |
Steven Moreland | 37814cb | 2018-10-24 16:28:35 -0700 | [diff] [blame] | 19 | "-Wdocumentation", // since some users use this |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 20 | "-Werror", |
Bernhard Rosenkränzer | 0c28fd2 | 2018-06-04 16:01:47 +0200 | [diff] [blame] | 21 | "-Wextra-semi", |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 22 | ], |
| 23 | } |
Steven Moreland | 8dd6574 | 2017-02-17 22:39:46 -0800 | [diff] [blame] | 24 | |
Steven Moreland | 37e8d3a | 2019-04-26 12:33:21 -0700 | [diff] [blame] | 25 | phony { |
| 26 | name: "libhidl", |
| 27 | required: [ |
| 28 | "libhidlbase", |
Steven Moreland | 37e8d3a | 2019-04-26 12:33:21 -0700 | [diff] [blame] | 29 | ], |
| 30 | } |
| 31 | |
Steven Moreland | e695c3e | 2019-08-21 15:36:22 -0700 | [diff] [blame] | 32 | cc_library_headers { |
Steven Moreland | becd44e | 2019-10-29 14:20:00 -0700 | [diff] [blame] | 33 | name: "libhidl_gtest_helper", |
| 34 | export_include_dirs: ["gtest_helper"], |
Steven Moreland | e695c3e | 2019-08-21 15:36:22 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 37 | cc_test { |
| 38 | name: "libhidl_test", |
Steven Moreland | 2056cf3 | 2019-09-17 17:41:02 -0700 | [diff] [blame] | 39 | host_supported: true, |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 40 | defaults: ["libhidl-defaults"], |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 41 | gtest: false, |
| 42 | srcs: ["test_main.cpp"], |
Steven Moreland | 1745383 | 2019-02-25 12:01:22 -0800 | [diff] [blame] | 43 | test_suites: ["device-tests"], |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 44 | |
Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [diff] [blame] | 45 | shared_libs: [ |
Steven Moreland | 138c350 | 2018-11-27 14:27:04 -0800 | [diff] [blame] | 46 | "android.hidl.memory@1.0", |
Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [diff] [blame] | 47 | "libbase", |
Steven Moreland | 348563a | 2019-06-19 13:53:19 -0700 | [diff] [blame] | 48 | "libhidlbase", |
| 49 | "liblog", |
Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [diff] [blame] | 50 | "libutils", |
Jeff Tinker | 0f3461d | 2017-01-03 10:40:55 -0800 | [diff] [blame] | 51 | "libcutils", |
Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [diff] [blame] | 52 | ], |
Steven Moreland | 55d2dcd | 2020-02-10 17:20:56 -0800 | [diff] [blame] | 53 | static_libs: [ |
| 54 | "libgtest", |
| 55 | "libgmock", |
| 56 | ], |
Yifan Hong | 00f4a39 | 2016-11-16 12:35:58 -0800 | [diff] [blame] | 57 | |
| 58 | cflags: [ |
| 59 | "-O0", |
| 60 | "-g", |
Steven Moreland | c75fc62 | 2017-08-04 11:04:39 -0700 | [diff] [blame] | 61 | ], |
Dan Willemsen | 6365a87 | 2016-09-13 16:29:54 -0700 | [diff] [blame] | 62 | } |
Steven Moreland | a46371d | 2019-06-05 18:29:06 -0700 | [diff] [blame] | 63 | |
Steven Moreland | 9f53eda | 2019-06-17 17:17:02 -0700 | [diff] [blame] | 64 | cc_library { |
| 65 | name: "libhidlbase", |
| 66 | defaults: ["libhidlbase-combined-impl"], |
Steven Moreland | 2056cf3 | 2019-09-17 17:41:02 -0700 | [diff] [blame] | 67 | host_supported: true, |
Steven Moreland | 9f53eda | 2019-06-17 17:17:02 -0700 | [diff] [blame] | 68 | recovery_available: true, |
| 69 | vendor_available: true, |
| 70 | vndk: { |
| 71 | enabled: true, |
| 72 | support_system_process: true, |
| 73 | }, |
| 74 | whole_static_libs: [ |
| 75 | "libhwbinder-impl-internal", |
| 76 | ], |
| 77 | } |
| 78 | |
| 79 | // Only libhwbinder_benchmark needs to have pgo enabled. When all places |
| 80 | // support having PGO selectively enabled, all places can use libhwbinder. |
| 81 | // |
| 82 | // http://b/77320844 |
| 83 | cc_library { |
| 84 | name: "libhidlbase_pgo", |
| 85 | defaults: [ |
| 86 | "libhidlbase-combined-impl", |
| 87 | "hwbinder_benchmark_pgo", |
| 88 | ], |
| 89 | whole_static_libs: [ |
| 90 | "libhwbinder_pgo-impl-internal", |
| 91 | ], |
Steven Moreland | c6df565 | 2019-09-05 15:08:41 -0700 | [diff] [blame] | 92 | |
| 93 | visibility: ["//system/libhwbinder:__subpackages__"], |
Steven Moreland | 9f53eda | 2019-06-17 17:17:02 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Steven Moreland | a46371d | 2019-06-05 18:29:06 -0700 | [diff] [blame] | 96 | // WARNING: deprecated |
| 97 | // This library is no longer required, and dependencies should be taken |
| 98 | // on libhidlbase instead. |
| 99 | cc_library { |
| 100 | name: "libhidltransport", |
Steven Moreland | a46371d | 2019-06-05 18:29:06 -0700 | [diff] [blame] | 101 | vendor_available: true, |
Steven Moreland | a46371d | 2019-06-05 18:29:06 -0700 | [diff] [blame] | 102 | } |
Steven Moreland | 55d2dcd | 2020-02-10 17:20:56 -0800 | [diff] [blame] | 103 | |
| 104 | cc_defaults { |
| 105 | name: "libhidlbase-combined-impl", |
| 106 | |
| 107 | defaults: [ |
| 108 | "hidl-module-defaults", |
| 109 | "libhidl-defaults", |
| 110 | "libhwbinder-impl-shared-libs", |
| 111 | ], |
| 112 | |
| 113 | shared_libs: [ |
| 114 | "libbase", |
| 115 | "liblog", |
| 116 | "libutils", |
| 117 | "libcutils", |
| 118 | ], |
| 119 | export_shared_lib_headers: [ |
| 120 | "libcutils", // for native_handle.h |
| 121 | "libutils", |
| 122 | ], |
| 123 | static_libs: [ |
| 124 | "libhwbinder-impl-internal", |
| 125 | ], |
| 126 | |
| 127 | target: { |
| 128 | android: { |
| 129 | shared_libs: [ |
| 130 | "libvndksupport", |
| 131 | ], |
| 132 | }, |
| 133 | recovery: { |
| 134 | exclude_shared_libs: [ |
| 135 | "libvndksupport", |
| 136 | ], |
| 137 | }, |
| 138 | }, |
| 139 | |
| 140 | export_include_dirs: [ |
| 141 | "base/include", |
| 142 | "transport/include", |
| 143 | ], |
| 144 | |
| 145 | generated_sources: [ |
| 146 | "android.hidl.manager@1.0_genc++", |
| 147 | "android.hidl.manager@1.1_genc++", |
| 148 | "android.hidl.manager@1.2_genc++", |
| 149 | "android.hidl.base@1.0_genc++", |
| 150 | ], |
| 151 | generated_headers: [ |
| 152 | "android.hidl.manager@1.0_genc++_headers", |
| 153 | "android.hidl.manager@1.1_genc++_headers", |
| 154 | "android.hidl.manager@1.2_genc++_headers", |
| 155 | "android.hidl.base@1.0_genc++_headers", |
| 156 | ], |
| 157 | export_generated_headers: [ |
| 158 | "android.hidl.manager@1.0_genc++_headers", |
| 159 | "android.hidl.manager@1.1_genc++_headers", |
| 160 | "android.hidl.manager@1.2_genc++_headers", |
| 161 | "android.hidl.base@1.0_genc++_headers", |
| 162 | ], |
| 163 | |
| 164 | srcs: [ |
| 165 | "base/HidlInternal.cpp", |
| 166 | "base/HidlSupport.cpp", |
| 167 | "base/Status.cpp", |
| 168 | "base/TaskRunner.cpp", |
| 169 | "transport/HidlBinderSupport.cpp", |
| 170 | "transport/HidlLazyUtils.cpp", |
| 171 | "transport/HidlPassthroughSupport.cpp", |
| 172 | "transport/HidlTransportSupport.cpp", |
| 173 | "transport/HidlTransportUtils.cpp", |
| 174 | "transport/LegacySupport.cpp", |
| 175 | "transport/ServiceManagement.cpp", |
| 176 | "transport/Static.cpp", |
| 177 | ], |
| 178 | |
| 179 | product_variables: { |
| 180 | debuggable: { |
| 181 | cflags: ["-DLIBHIDL_TARGET_DEBUGGABLE"], |
| 182 | }, |
| 183 | enforce_vintf_manifest: { |
| 184 | cflags: ["-DENFORCE_VINTF_MANIFEST"], |
| 185 | }, |
| 186 | }, |
| 187 | |
| 188 | sanitize: { |
| 189 | misc_undefined: ["integer"], |
| 190 | }, |
| 191 | } |