Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 1 | // Copyright (C) 2017 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 | |
Bob Badour | c22b35b | 2021-02-23 14:26:20 -0800 | [diff] [blame] | 15 | package { |
| 16 | // See: http://go/android-license-faq |
| 17 | // A large-scale-change added 'default_applicable_licenses' to import |
| 18 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 19 | // to get the below license kinds: |
| 20 | // SPDX-license-identifier-Apache-2.0 |
| 21 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 22 | } |
| 23 | |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 24 | cc_defaults { |
| 25 | name: "vhal_v2_0_defaults", |
| 26 | shared_libs: [ |
| 27 | "libhidlbase", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 28 | "liblog", |
| 29 | "libutils", |
| 30 | "android.hardware.automotive.vehicle@2.0", |
| 31 | ], |
| 32 | cflags: [ |
| 33 | "-Wall", |
| 34 | "-Wextra", |
| 35 | "-Werror", |
| 36 | ], |
| 37 | } |
| 38 | |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 39 | cc_defaults { |
| 40 | name: "vhal_v2_0_target_defaults", |
| 41 | defaults: ["vhal_v2_0_defaults"], |
| 42 | shared_libs: [ |
| 43 | "libbinder_ndk", |
Jiyong Park | c426c6d | 2021-08-04 12:48:07 +0900 | [diff] [blame] | 44 | "android.automotive.watchdog-V2-ndk", |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 45 | ], |
| 46 | } |
| 47 | |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 48 | cc_library_headers { |
| 49 | name: "vhal_v2_0_common_headers", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 50 | visibility: ["//visibility:public"], |
Tri Vo | 22b2d68 | 2017-07-11 12:53:12 -0700 | [diff] [blame] | 51 | vendor: true, |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 52 | export_include_dirs: ["common/include/vhal_v2_0"], |
| 53 | } |
| 54 | |
| 55 | // Vehicle reference implementation lib |
Anthony Mah | a9d8c0d | 2017-10-03 16:22:22 -0700 | [diff] [blame] | 56 | cc_library { |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 57 | name: "android.hardware.automotive.vehicle@2.0-manager-lib", |
Tri Vo | 22b2d68 | 2017-07-11 12:53:12 -0700 | [diff] [blame] | 58 | vendor: true, |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 59 | defaults: ["vhal_v2_0_target_defaults"], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 60 | srcs: [ |
Pavel Maltsev | 250139c | 2017-08-24 15:09:41 -0700 | [diff] [blame] | 61 | "common/src/Obd2SensorStore.cpp", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 62 | "common/src/ProtoMessageConverter.cpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 63 | "common/src/SubscriptionManager.cpp", |
| 64 | "common/src/VehicleHalManager.cpp", |
| 65 | "common/src/VehicleObjectPool.cpp", |
| 66 | "common/src/VehiclePropertyStore.cpp", |
| 67 | "common/src/VehicleUtils.cpp", |
Aditi Nagaraj | 8dcab8e | 2018-01-10 17:10:01 -0800 | [diff] [blame] | 68 | "common/src/VmsUtils.cpp", |
Eric Jeong | 908101a | 2020-04-23 09:43:55 -0700 | [diff] [blame] | 69 | "common/src/WatchdogClient.cpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 70 | ], |
Felipe Leme | 75a27f8 | 2020-01-31 15:25:55 -0800 | [diff] [blame] | 71 | shared_libs: [ |
| 72 | "libbase", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 73 | "libprotobuf-cpp-lite", |
Felipe Leme | 75a27f8 | 2020-01-31 15:25:55 -0800 | [diff] [blame] | 74 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 75 | local_include_dirs: ["common/include/vhal_v2_0"], |
| 76 | export_include_dirs: ["common/include"], |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 77 | static_libs: [ |
| 78 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
| 79 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 82 | // Vehicle default VehicleHAL implementation |
| 83 | cc_library_static { |
| 84 | name: "android.hardware.automotive.vehicle@2.0-default-impl-lib", |
Tri Vo | 22b2d68 | 2017-07-11 12:53:12 -0700 | [diff] [blame] | 85 | vendor: true, |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 86 | defaults: ["vhal_v2_0_target_defaults"], |
Yu Shan | 2842eb5 | 2022-08-31 18:08:10 -0700 | [diff] [blame] | 87 | cflags: [ |
| 88 | "-DENABLE_VENDOR_CLUSTER_PROPERTY_FOR_TESTING", |
| 89 | "-DENABLE_GET_PROP_CONFIGS_BY_MULTIPLE_REQUESTS", |
| 90 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 91 | srcs: [ |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 92 | "impl/vhal_v2_0/DefaultVehicleHal.cpp", |
Hao Chen | a6d6fa3 | 2020-02-14 11:51:26 -0800 | [diff] [blame] | 93 | "impl/vhal_v2_0/VehicleHalClient.cpp", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 94 | "impl/vhal_v2_0/DefaultVehicleHalServer.cpp", |
Chao Yan | f63c2ca | 2018-04-17 11:32:39 -0700 | [diff] [blame] | 95 | "impl/vhal_v2_0/LinearFakeValueGenerator.cpp", |
| 96 | "impl/vhal_v2_0/JsonFakeValueGenerator.cpp", |
Chao Yan | 0f85dd1 | 2018-06-04 14:03:02 -0700 | [diff] [blame] | 97 | "impl/vhal_v2_0/GeneratorHub.cpp", |
Yu Shan | 122eea6 | 2021-07-20 18:22:23 -0700 | [diff] [blame] | 98 | "impl/vhal_v2_0/FakeObd2Frame.cpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 99 | ], |
| 100 | local_include_dirs: ["common/include/vhal_v2_0"], |
| 101 | export_include_dirs: ["impl"], |
felipeal | 9c998c0 | 2020-04-17 14:32:53 -0700 | [diff] [blame] | 102 | whole_static_libs: [ |
Yu Shan | 58f71e7 | 2021-08-03 16:49:40 -0700 | [diff] [blame] | 103 | "android.hardware.automotive.vehicle@2.0-fake-user-hal-lib", |
felipeal | 9c998c0 | 2020-04-17 14:32:53 -0700 | [diff] [blame] | 104 | "android.hardware.automotive.vehicle@2.0-manager-lib", |
| 105 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 106 | shared_libs: [ |
| 107 | "libbase", |
Inseob Kim | 31ab19f | 2019-09-10 14:56:19 +0900 | [diff] [blame] | 108 | "libjsoncpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 109 | "libprotobuf-cpp-lite", |
| 110 | ], |
| 111 | static_libs: [ |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 112 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
| 113 | ], |
| 114 | } |
| 115 | |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 116 | // Vehicle HAL Server reference impl lib |
| 117 | cc_library_static { |
| 118 | name: "android.hardware.automotive.vehicle@2.0-server-common-lib", |
| 119 | vendor: true, |
| 120 | host_supported: true, |
| 121 | defaults: ["vhal_v2_0_defaults"], |
| 122 | local_include_dirs: ["common/include/vhal_v2_0"], |
| 123 | export_include_dirs: ["common/include"], |
| 124 | srcs: [ |
| 125 | "common/src/Obd2SensorStore.cpp", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 126 | "common/src/ProtoMessageConverter.cpp", |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 127 | "common/src/VehicleObjectPool.cpp", |
Hao Chen | 0b7c287 | 2021-05-12 12:21:33 -0700 | [diff] [blame] | 128 | "common/src/VehiclePropertyStore.cpp", |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 129 | "common/src/VehicleUtils.cpp", |
| 130 | ], |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 131 | static_libs: [ |
| 132 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
| 133 | ], |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | // Vehicle HAL Server default implementation |
| 137 | cc_library_static { |
| 138 | name: "android.hardware.automotive.vehicle@2.0-server-impl-lib", |
| 139 | vendor: true, |
| 140 | host_supported: true, |
| 141 | defaults: ["vhal_v2_0_defaults"], |
| 142 | local_include_dirs: ["common/include/vhal_v2_0"], |
| 143 | export_include_dirs: ["impl"], |
| 144 | srcs: [ |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 145 | "impl/vhal_v2_0/GeneratorHub.cpp", |
| 146 | "impl/vhal_v2_0/JsonFakeValueGenerator.cpp", |
| 147 | "impl/vhal_v2_0/LinearFakeValueGenerator.cpp", |
Yu Shan | 6029a37 | 2021-06-22 19:11:05 -0700 | [diff] [blame] | 148 | "impl/vhal_v2_0/DefaultVehicleHalServer.cpp", |
Yu Shan | 122eea6 | 2021-07-20 18:22:23 -0700 | [diff] [blame] | 149 | "impl/vhal_v2_0/FakeObd2Frame.cpp", |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 150 | ], |
| 151 | whole_static_libs: [ |
| 152 | "android.hardware.automotive.vehicle@2.0-server-common-lib", |
| 153 | ], |
| 154 | static_libs: [ |
| 155 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
| 156 | ], |
| 157 | shared_libs: [ |
| 158 | "libbase", |
| 159 | "libjsoncpp", |
| 160 | ], |
| 161 | } |
| 162 | |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 163 | cc_test { |
| 164 | name: "android.hardware.automotive.vehicle@2.0-manager-unit-tests", |
Tri Vo | 22b2d68 | 2017-07-11 12:53:12 -0700 | [diff] [blame] | 165 | vendor: true, |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 166 | defaults: ["vhal_v2_0_target_defaults"], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 167 | whole_static_libs: ["android.hardware.automotive.vehicle@2.0-manager-lib"], |
Chih-Hung Hsieh | ad1bf31 | 2022-02-17 21:56:13 -0800 | [diff] [blame] | 168 | tidy_timeout_srcs: [ |
| 169 | "tests/VmsUtils_test.cpp", |
| 170 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 171 | srcs: [ |
| 172 | "tests/RecurrentTimer_test.cpp", |
| 173 | "tests/SubscriptionManager_test.cpp", |
| 174 | "tests/VehicleHalManager_test.cpp", |
| 175 | "tests/VehicleObjectPool_test.cpp", |
| 176 | "tests/VehiclePropConfigIndex_test.cpp", |
Aditi Nagaraj | 8dcab8e | 2018-01-10 17:10:01 -0800 | [diff] [blame] | 177 | "tests/VmsUtils_test.cpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 178 | ], |
Felipe Leme | 75a27f8 | 2020-01-31 15:25:55 -0800 | [diff] [blame] | 179 | shared_libs: [ |
| 180 | "libbase", |
Yu Shan | 8ae3ea9 | 2021-06-01 15:44:43 -0700 | [diff] [blame] | 181 | "libcutils", |
Felipe Leme | 75a27f8 | 2020-01-31 15:25:55 -0800 | [diff] [blame] | 182 | ], |
Yu Shan | 3984457 | 2021-06-23 20:42:24 -0700 | [diff] [blame] | 183 | // Exclude share libraries from default because they might be missing on |
| 184 | // some test platforms and we are using static libraries instead. |
Yu Shan | 045138d | 2021-06-02 16:15:29 -0700 | [diff] [blame] | 185 | exclude_shared_libs: [ |
Jiyong Park | c426c6d | 2021-08-04 12:48:07 +0900 | [diff] [blame] | 186 | "android.automotive.watchdog-V2-ndk", |
Yu Shan | 045138d | 2021-06-02 16:15:29 -0700 | [diff] [blame] | 187 | "android.hardware.automotive.vehicle@2.0", |
| 188 | ], |
| 189 | static_libs: [ |
Jiyong Park | c426c6d | 2021-08-04 12:48:07 +0900 | [diff] [blame] | 190 | "android.automotive.watchdog-V2-ndk", |
Yu Shan | 045138d | 2021-06-02 16:15:29 -0700 | [diff] [blame] | 191 | "android.hardware.automotive.vehicle@2.0", |
| 192 | ], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 193 | header_libs: ["libbase_headers"], |
Keun Soo YIM | ff84c37 | 2018-11-27 14:04:42 -0800 | [diff] [blame] | 194 | test_suites: ["general-tests"], |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Hao Chen | 1c1fdca | 2019-11-15 14:20:34 -0800 | [diff] [blame] | 197 | cc_test { |
| 198 | name: "android.hardware.automotive.vehicle@2.0-default-impl-unit-tests", |
| 199 | vendor: true, |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 200 | defaults: ["vhal_v2_0_target_defaults"], |
Hao Chen | 1c1fdca | 2019-11-15 14:20:34 -0800 | [diff] [blame] | 201 | srcs: [ |
| 202 | "impl/vhal_v2_0/tests/ProtoMessageConverter_test.cpp", |
Yu Shan | 3984457 | 2021-06-23 20:42:24 -0700 | [diff] [blame] | 203 | "impl/vhal_v2_0/tests/DefaultVhalImpl_test.cpp", |
Hao Chen | 1c1fdca | 2019-11-15 14:20:34 -0800 | [diff] [blame] | 204 | ], |
| 205 | static_libs: [ |
Yu Shan | 3984457 | 2021-06-23 20:42:24 -0700 | [diff] [blame] | 206 | "libbase", |
| 207 | "libcutils", |
Yu Shan | 795f4de | 2021-07-01 15:41:19 -0700 | [diff] [blame] | 208 | "libgmock", |
Yu Shan | 3984457 | 2021-06-23 20:42:24 -0700 | [diff] [blame] | 209 | "libjsoncpp", |
| 210 | "libprotobuf-cpp-lite", |
| 211 | ], |
| 212 | // Exclude share libraries from default because they might be missing on |
| 213 | // some test platforms and we are using static libraries instead. |
| 214 | exclude_shared_libs: [ |
Jiyong Park | c426c6d | 2021-08-04 12:48:07 +0900 | [diff] [blame] | 215 | "android.automotive.watchdog-V2-ndk", |
Yu Shan | 3984457 | 2021-06-23 20:42:24 -0700 | [diff] [blame] | 216 | "android.hardware.automotive.vehicle@2.0", |
| 217 | ], |
| 218 | whole_static_libs: [ |
Jiyong Park | c426c6d | 2021-08-04 12:48:07 +0900 | [diff] [blame] | 219 | "android.automotive.watchdog-V2-ndk", |
Yu Shan | 045138d | 2021-06-02 16:15:29 -0700 | [diff] [blame] | 220 | "android.hardware.automotive.vehicle@2.0", |
Hao Chen | 1c1fdca | 2019-11-15 14:20:34 -0800 | [diff] [blame] | 221 | "android.hardware.automotive.vehicle@2.0-default-impl-lib", |
| 222 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
Yu Shan | 045138d | 2021-06-02 16:15:29 -0700 | [diff] [blame] | 223 | ], |
Yu Shan | 4a23901 | 2021-07-20 18:12:53 -0700 | [diff] [blame] | 224 | data: [ |
Yu Shan | 4a23901 | 2021-07-20 18:12:53 -0700 | [diff] [blame] | 225 | ":vhal_test_json", |
Yu Shan | 56020bc | 2021-07-16 15:51:16 -0700 | [diff] [blame] | 226 | ":vhal_test_override_json", |
Yu Shan | 4a23901 | 2021-07-20 18:12:53 -0700 | [diff] [blame] | 227 | ], |
Hao Chen | 1c1fdca | 2019-11-15 14:20:34 -0800 | [diff] [blame] | 228 | test_suites: ["general-tests"], |
| 229 | } |
| 230 | |
Yu Shan | 2842eb5 | 2022-08-31 18:08:10 -0700 | [diff] [blame] | 231 | cc_test { |
| 232 | name: "android.hardware.automotive.vehicle@2.0-default-config-test", |
| 233 | vendor: true, |
| 234 | defaults: ["vhal_v2_0_target_defaults"], |
| 235 | srcs: [ |
| 236 | "impl/vhal_v2_0/tests/DefaultConfigSupportedPropertyIds_test.cpp", |
| 237 | ], |
| 238 | cflags: [ |
| 239 | "-DENABLE_VENDOR_CLUSTER_PROPERTY_FOR_TESTING", |
| 240 | "-DENABLE_GET_PROP_CONFIGS_BY_MULTIPLE_REQUESTS", |
| 241 | ], |
| 242 | static_libs: [ |
| 243 | "android.hardware.automotive.vehicle@2.0-default-impl-lib", |
| 244 | "libgtest", |
| 245 | "libgmock", |
| 246 | ], |
| 247 | test_suites: ["general-tests"], |
| 248 | } |
| 249 | |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 250 | cc_binary { |
Yu Shan | 612dbf6 | 2021-07-02 18:11:08 -0700 | [diff] [blame] | 251 | name: "android.hardware.automotive.vehicle@2.0-default-service", |
Hao Chen | c324db9 | 2020-06-03 18:29:31 -0700 | [diff] [blame] | 252 | defaults: ["vhal_v2_0_target_defaults"], |
Calvin Huang | a653616 | 2020-04-20 12:41:20 -0700 | [diff] [blame] | 253 | vintf_fragments: [ |
Yu Shan | 612dbf6 | 2021-07-02 18:11:08 -0700 | [diff] [blame] | 254 | "android.hardware.automotive.vehicle@2.0-default-service.xml", |
Calvin Huang | a653616 | 2020-04-20 12:41:20 -0700 | [diff] [blame] | 255 | ], |
Yu Shan | 612dbf6 | 2021-07-02 18:11:08 -0700 | [diff] [blame] | 256 | init_rc: ["android.hardware.automotive.vehicle@2.0-default-service.rc"], |
Tri Vo | 22b2d68 | 2017-07-11 12:53:12 -0700 | [diff] [blame] | 257 | vendor: true, |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 258 | relative_install_path: "hw", |
| 259 | srcs: ["VehicleService.cpp"], |
| 260 | shared_libs: [ |
| 261 | "libbase", |
Inseob Kim | 31ab19f | 2019-09-10 14:56:19 +0900 | [diff] [blame] | 262 | "libjsoncpp", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 263 | "libprotobuf-cpp-lite", |
| 264 | ], |
| 265 | static_libs: [ |
| 266 | "android.hardware.automotive.vehicle@2.0-manager-lib", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 267 | "android.hardware.automotive.vehicle@2.0-libproto-native", |
Yu Shan | 612dbf6 | 2021-07-02 18:11:08 -0700 | [diff] [blame] | 268 | "android.hardware.automotive.vehicle@2.0-default-impl-lib", |
Tri Vo | fc87140 | 2017-07-10 17:13:23 -0700 | [diff] [blame] | 269 | ], |
| 270 | } |
Ayushi Khopkar | b3057b0 | 2020-08-31 10:59:52 +0530 | [diff] [blame] | 271 | |
| 272 | cc_fuzz { |
| 273 | name: "vehicleManager_fuzzer", |
| 274 | vendor: true, |
| 275 | defaults: ["vhal_v2_0_target_defaults"], |
| 276 | whole_static_libs: ["android.hardware.automotive.vehicle@2.0-manager-lib"], |
| 277 | srcs: [ |
| 278 | "tests/fuzzer/VehicleManager_fuzzer.cpp", |
| 279 | ], |
| 280 | shared_libs: [ |
| 281 | "libbase", |
| 282 | "libcutils", |
| 283 | "libbinder_ndk", |
| 284 | ], |
| 285 | header_libs: ["libbase_headers"], |
| 286 | local_include_dirs: [ |
| 287 | "common/include", |
| 288 | "tests", |
| 289 | ], |
| 290 | fuzz_config: { |
| 291 | cc: [ |
| 292 | "android-media-fuzzing-reports@google.com", |
| 293 | ], |
| 294 | componentid: 533764, |
Ayushi Khopkar | 5088c6c | 2023-03-17 18:19:58 +0530 | [diff] [blame^] | 295 | hotlists: [ |
| 296 | "4593311", |
| 297 | ], |
| 298 | description: "The fuzzer targets the APIs of android.hardware.automotive.vehicle@2.0-manager-lib", |
| 299 | vector: "local_no_privileges_required", |
| 300 | service_privilege: "privileged", |
| 301 | users: "multi_user", |
| 302 | fuzzed_code_usage: "shipped", |
Ayushi Khopkar | b3057b0 | 2020-08-31 10:59:52 +0530 | [diff] [blame] | 303 | }, |
| 304 | } |