blob: 42a954cdc8e09c86927469a134f8858101f66d41 [file] [log] [blame]
Dan Willemsenf5a904e2018-10-23 01:02:44 -07001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
Colin Cross606913a2017-11-14 13:05:37 -080017// AIDL interface between libupdate_engine and framework.jar
Bob Badour9b85a6c2021-02-12 21:28:32 -080018package {
19 default_applicable_licenses: ["system_update_engine_license"],
20}
21
22// Added automatically by a large-scale-change
23// See: http://go/android-license-faq
24license {
25 name: "system_update_engine_license",
26 visibility: [":__subpackages__"],
27 license_kinds: [
28 "SPDX-license-identifier-Apache-2.0",
29 ],
30 license_text: [
31 "NOTICE",
32 ],
33}
34
Colin Cross606913a2017-11-14 13:05:37 -080035filegroup {
36 name: "libupdate_engine_aidl",
37 srcs: [
38 "binder_bindings/android/os/IUpdateEngine.aidl",
39 "binder_bindings/android/os/IUpdateEngineCallback.aidl",
40 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -070041 path: "binder_bindings",
42}
43
44cc_defaults {
45 name: "ue_defaults",
46
47 cflags: [
Amin Hassani2e4eda52019-01-07 14:01:17 -080048 "-DBASE_VER=576279",
Dan Willemsenf5a904e2018-10-23 01:02:44 -070049 "-DUSE_HWID_OVERRIDE=0",
Dan Willemsenf5a904e2018-10-23 01:02:44 -070050 "-D_FILE_OFFSET_BITS=64",
51 "-D_POSIX_C_SOURCE=199309L",
52 "-Wa,--noexecstack",
53 "-Wall",
54 "-Werror",
55 "-Wextra",
56 "-Wformat=2",
57 "-Wno-psabi",
58 "-Wno-unused-parameter",
59 "-ffunction-sections",
60 "-fstack-protector-strong",
61 "-fvisibility=hidden",
Kelvin Zhangc5803b72021-09-02 09:06:16 -070062 "-g3",
Dan Willemsenf5a904e2018-10-23 01:02:44 -070063 ],
64 cppflags: [
65 "-Wnon-virtual-dtor",
66 "-fno-strict-aliasing",
67 ],
68 include_dirs: ["system"],
69 local_include_dirs: ["client_library/include"],
Elliott Hughes88f3c8c2021-04-22 13:47:21 -070070 header_libs: ["libgtest_prod_headers"],
Dan Willemsenf5a904e2018-10-23 01:02:44 -070071 shared_libs: [
72 "libbrillo-stream",
73 "libbrillo",
74 "libchrome",
75 ],
76 ldflags: ["-Wl,--gc-sections"],
77
78 product_variables: {
79 pdk: {
80 enabled: false,
81 },
82 },
83
84 target: {
Sen Jiangb5f631d2018-12-18 16:59:57 -080085 android: {
86 cflags: [
87 "-DUSE_FEC=1",
88 ],
89 },
90 host: {
91 cflags: [
92 "-DUSE_FEC=0",
93 ],
94 },
Dan Willemsenf5a904e2018-10-23 01:02:44 -070095 darwin: {
96 enabled: false,
97 },
98 },
99}
100
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400101// libcow_operation_convert (type: library)
102// ========================================================
Kelvin Zhangeb8703b2020-12-10 14:17:21 -0500103cc_library_static {
104 name: "libpayload_extent_utils",
105 defaults: [
106 "ue_defaults",
107 ],
108 host_supported: true,
109 recovery_available: true,
110 srcs: [
111 "payload_generator/extent_utils.cc",
112 ],
113 static_libs: [
114 "update_metadata-protos",
115 ],
116}
117
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400118cc_library {
119 name: "libcow_operation_convert",
120 host_supported: true,
121 recovery_available: true,
122 defaults: [
123 "ue_defaults",
124 "update_metadata-protos_exports",
125 ],
126 srcs: [
127 "common/cow_operation_convert.cc",
128 ],
129 static_libs: [
130 "libsnapshot_cow",
131 "update_metadata-protos",
132 "libpayload_extent_ranges",
Kelvin Zhangeb8703b2020-12-10 14:17:21 -0500133 "libpayload_extent_utils",
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400134 "libbrotli",
135 "libz",
136 ],
137}
138
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700139// update_metadata-protos (type: static_library)
140// ========================================================
141// Protobufs.
142cc_defaults {
143 name: "update_metadata-protos_exports",
144
145 shared_libs: ["libprotobuf-cpp-lite"],
146}
147
148cc_library_static {
149 name: "update_metadata-protos",
150 host_supported: true,
Inseob Kim3cce62a2021-06-14 11:55:35 +0900151 ramdisk_available: true,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700152 recovery_available: true,
153
154 srcs: ["update_engine/update_metadata.proto"],
155 cflags: [
156 "-Wall",
157 "-Werror",
158 ],
159 proto: {
160 canonical_path_from_root: false,
161 export_proto_headers: true,
162 },
163}
164
165// libpayload_consumer (type: static_library)
166// ========================================================
167// The payload application component and common dependencies.
168cc_defaults {
169 name: "libpayload_consumer_exports",
170 defaults: ["update_metadata-protos_exports"],
171
172 static_libs: [
173 "update_metadata-protos",
174 "libxz",
175 "libbz",
176 "libbspatch",
177 "libbrotli",
Tianjie99d570d2020-06-04 14:57:19 -0700178 "libc++fs",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700179 "libfec_rs",
180 "libpuffpatch",
181 "libverity_tree",
Kelvin Zhang94f51cc2020-09-25 11:34:49 -0400182 "libsnapshot_cow",
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400183 "libbrotli",
184 "libz",
185 "libpayload_extent_ranges",
Kelvin Zhangeb8703b2020-12-10 14:17:21 -0500186 "libpayload_extent_utils",
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400187 "libcow_operation_convert",
Kelvin Zhang55624032021-12-20 12:13:24 -0800188 "lz4diff-protos",
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800189 "liblz4patch",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700190 ],
191 shared_libs: [
192 "libbase",
193 "libcrypto",
Sen Jiangb5f631d2018-12-18 16:59:57 -0800194 "libfec",
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800195 "liblz4",
Tianjie99d570d2020-06-04 14:57:19 -0700196 "libziparchive",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700197 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700198}
199
200cc_library_static {
201 name: "libpayload_consumer",
202 defaults: [
203 "ue_defaults",
204 "libpayload_consumer_exports",
205 ],
206 host_supported: true,
207 recovery_available: true,
208
209 srcs: [
Amin Hassaniec7bc112020-10-29 16:47:58 -0700210 "aosp/platform_constants_android.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700211 "common/action_processor.cc",
212 "common/boot_control_stub.cc",
213 "common/clock.cc",
214 "common/constants.cc",
215 "common/cpu_limiter.cc",
Yifan Hongdaac7322019-11-07 10:48:26 -0800216 "common/dynamic_partition_control_stub.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700217 "common/error_code_utils.cc",
218 "common/file_fetcher.cc",
219 "common/hash_calculator.cc",
220 "common/http_common.cc",
221 "common/http_fetcher.cc",
222 "common/hwid_override.cc",
223 "common/multi_range_http_fetcher.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700224 "common/prefs.cc",
225 "common/proxy_resolver.cc",
226 "common/subprocess.cc",
227 "common/terminator.cc",
228 "common/utils.cc",
229 "payload_consumer/bzip_extent_writer.cc",
230 "payload_consumer/cached_file_descriptor.cc",
Tianjie Xu7a78d632019-10-08 16:32:39 -0700231 "payload_consumer/certificate_parser_android.cc",
Kelvin Zhang569c97e2020-10-26 12:12:24 -0400232 "payload_consumer/cow_writer_file_descriptor.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700233 "payload_consumer/delta_performer.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700234 "payload_consumer/extent_reader.cc",
235 "payload_consumer/extent_writer.cc",
236 "payload_consumer/file_descriptor.cc",
237 "payload_consumer/file_descriptor_utils.cc",
238 "payload_consumer/file_writer.cc",
239 "payload_consumer/filesystem_verifier_action.cc",
Kelvin Zhang40d96662021-02-24 14:21:29 -0500240 "payload_consumer/install_operation_executor.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700241 "payload_consumer/install_plan.cc",
242 "payload_consumer/mount_history.cc",
243 "payload_consumer/payload_constants.cc",
244 "payload_consumer/payload_metadata.cc",
245 "payload_consumer/payload_verifier.cc",
Kelvin Zhang50bac652020-09-28 15:51:41 -0400246 "payload_consumer/partition_writer.cc",
Kelvin Zhang94f51cc2020-09-25 11:34:49 -0400247 "payload_consumer/partition_writer_factory_android.cc",
248 "payload_consumer/vabc_partition_writer.cc",
Kelvin Zhang4bb49202021-07-08 21:39:05 -0400249 "payload_consumer/xor_extent_writer.cc",
Kelvin Zhangb1706762021-06-25 15:05:22 -0400250 "payload_consumer/block_extent_writer.cc",
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400251 "payload_consumer/snapshot_extent_writer.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700252 "payload_consumer/postinstall_runner_action.cc",
Kelvin Zhangab3ce602021-02-24 14:46:40 -0500253 "payload_consumer/verified_source_fd.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700254 "payload_consumer/verity_writer_android.cc",
255 "payload_consumer/xz_extent_writer.cc",
256 "payload_consumer/fec_file_descriptor.cc",
Tianjied3865d12020-06-03 15:25:17 -0700257 "payload_consumer/partition_update_generator_android.cc",
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700258 "update_status_utils.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700259 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700260}
261
262// libupdate_engine_boot_control (type: static_library)
263// ========================================================
264// A BootControl class implementation using Android's HIDL boot_control HAL.
265cc_defaults {
266 name: "libupdate_engine_boot_control_exports",
267 defaults: ["update_metadata-protos_exports"],
268
Yifan Hong420db9b2019-07-23 20:50:33 -0700269 static_libs: [
David Andersone7ce8212019-12-16 20:13:19 -0800270 "libcutils",
271 "libfs_mgr_binder",
272 "libgsi",
Yifan Hongdad0af82020-02-19 17:19:49 -0800273 "libpayload_consumer",
Yifan Hong420db9b2019-07-23 20:50:33 -0700274 "libsnapshot",
David Anderson6c190a22020-09-21 17:09:53 -0700275 "libsnapshot_cow",
276 "libz",
Yifan Hong420db9b2019-07-23 20:50:33 -0700277 "update_metadata-protos",
278 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700279 shared_libs: [
280 "libbootloader_message",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700281 "libhidlbase",
282 "liblp",
Yifan Hongd976cc52020-02-25 14:51:42 -0800283 "libstatslog",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700284 "libutils",
285 "android.hardware.boot@1.0",
David Anderson2111d062019-10-15 22:36:27 -0700286 "android.hardware.boot@1.1",
Kelvin Zhangcb419e62021-06-16 13:56:47 -0400287 "android.hardware.boot@1.2",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700288 ],
Yifan Hong29692902020-03-26 12:47:05 -0700289 header_libs: [
290 "avb_headers",
291 ],
Yifan Hong420db9b2019-07-23 20:50:33 -0700292 target: {
293 recovery: {
David Andersone7ce8212019-12-16 20:13:19 -0800294 static_libs: [
295 "libfs_mgr",
296 "libsnapshot_nobinder",
297 ],
298 exclude_static_libs: [
299 "libfs_mgr_binder",
300 "libsnapshot",
301 ],
Yifan Hong212d7952020-02-04 11:08:08 -0800302 exclude_shared_libs: [
Yifan Hongd976cc52020-02-25 14:51:42 -0800303 "libstatslog",
Yifan Hong212d7952020-02-04 11:08:08 -0800304 ],
Yifan Hong420db9b2019-07-23 20:50:33 -0700305 },
306 },
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700307}
308
309cc_library_static {
310 name: "libupdate_engine_boot_control",
311 defaults: [
312 "ue_defaults",
313 "libupdate_engine_boot_control_exports",
Yifan Hongdad0af82020-02-19 17:19:49 -0800314 "libpayload_consumer_exports",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700315 ],
316 recovery_available: true,
317
318 srcs: [
Amin Hassaniec7bc112020-10-29 16:47:58 -0700319 "aosp/boot_control_android.cc",
320 "aosp/cleanup_previous_update_action.cc",
321 "aosp/dynamic_partition_control_android.cc",
322 "aosp/dynamic_partition_utils.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700323 ],
324}
325
326// libupdate_engine_android (type: static_library)
327// ========================================================
328// The main daemon static_library used in Android (non-Brillo). This only has a
329// loop to apply payloads provided by the upper layer via a Binder interface.
330cc_defaults {
331 name: "libupdate_engine_android_exports",
332 defaults: [
333 "ue_defaults",
334 "libpayload_consumer_exports",
335 "libupdate_engine_boot_control_exports",
336 ],
337
338 static_libs: [
Tianjie838793d2021-01-14 22:05:13 -0800339 "libavb",
340 "libavb_user",
Yifan Hong126d13e2020-09-21 19:50:06 -0700341 "gkiprops",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700342 "libpayload_consumer",
343 "libupdate_engine_boot_control",
Tianjie838793d2021-01-14 22:05:13 -0800344 "PlatformProperties",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700345 ],
346 shared_libs: [
Mohammad Samiul Islam24a82792021-02-12 16:52:36 +0000347 "apex_aidl_interface-cpp",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700348 "libandroid_net",
349 "libbase",
350 "libbinder",
351 "libbinderwrapper",
352 "libbootloader_message",
353 "libbrillo-binder",
354 "libcurl",
355 "libcutils",
Jeongik Cha95f89e92021-01-26 22:33:11 +0900356 "libupdate_engine_stable-V1-cpp",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700357 "liblog",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700358 "libssl",
Tianjie Xu75cc9f22019-08-02 14:53:38 -0700359 "libstatslog",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700360 "libutils",
361 ],
Nikita Ioffeaedfef32021-04-28 13:54:14 +0100362 whole_static_libs: [
363 "com.android.sysprop.apex",
364 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700365}
366
367cc_library_static {
368 name: "libupdate_engine_android",
369 defaults: [
370 "ue_defaults",
371 "libupdate_engine_android_exports",
372 ],
373
374 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
375 // out of the DBus interface.
376 include_dirs: ["external/cros/system_api/dbus"],
377
378 aidl: {
379 local_include_dirs: ["binder_bindings"],
380 export_aidl_headers: true,
381 },
382
383 srcs: [
384 ":libupdate_engine_aidl",
Amin Hassani538bd592020-11-04 20:46:08 -0800385 "common/system_state.cc",
Mohammad Samiul Islam24a82792021-02-12 16:52:36 +0000386 "aosp/apex_handler_android.cc",
Amin Hassaniec7bc112020-10-29 16:47:58 -0700387 "aosp/binder_service_android.cc",
388 "aosp/binder_service_stable_android.cc",
389 "aosp/daemon_android.cc",
390 "aosp/daemon_state_android.cc",
391 "aosp/hardware_android.cc",
392 "aosp/logging_android.cc",
393 "aosp/network_selector_android.cc",
394 "aosp/update_attempter_android.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700395 "certificate_checker.cc",
Amin Hassani538bd592020-11-04 20:46:08 -0800396 "download_action.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700397 "libcurl_http_fetcher.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700398 "metrics_utils.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700399 "update_boot_flags_action.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700400 ],
401}
402
403// update_engine (type: executable)
404// ========================================================
405// update_engine daemon.
406cc_binary {
407 name: "update_engine",
408 defaults: [
409 "ue_defaults",
410 "libupdate_engine_android_exports",
411 ],
412
413 static_libs: ["libupdate_engine_android"],
Tao Bao1e1c86c2019-04-18 10:48:32 -0700414 required: [
415 "cacerts_google",
Tianjie Xube4ea232019-10-15 18:08:31 -0700416 "otacerts",
Tao Bao1e1c86c2019-04-18 10:48:32 -0700417 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700418
Amin Hassaniec7bc112020-10-29 16:47:58 -0700419 srcs: ["main.cc", "aosp/metrics_reporter_android.cc"],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700420 init_rc: ["update_engine.rc"],
421}
422
423// update_engine_sideload (type: executable)
424// ========================================================
425// A binary executable equivalent to update_engine daemon that installs an update
426// from a local file directly instead of running in the background. Used in
427// recovery image.
428cc_binary {
429 name: "update_engine_sideload",
430 defaults: [
431 "ue_defaults",
432 "update_metadata-protos_exports",
433 "libupdate_engine_boot_control_exports",
434 "libpayload_consumer_exports",
435 ],
436 recovery: true,
437
438 cflags: ["-D_UE_SIDELOAD"],
439 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
440 // out of the DBus interface.
441 include_dirs: ["external/cros/system_api/dbus"],
Elliott Hughes88f3c8c2021-04-22 13:47:21 -0700442 header_libs: ["libgtest_prod_headers"],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700443
444 srcs: [
Amin Hassaniec7bc112020-10-29 16:47:58 -0700445 "aosp/hardware_android.cc",
446 "aosp/logging_android.cc",
447 "aosp/sideload_main.cc",
448 "aosp/update_attempter_android.cc",
449 "common/metrics_reporter_stub.cc",
450 "common/network_selector_stub.cc",
Amin Hassani538bd592020-11-04 20:46:08 -0800451 "common/system_state.cc",
452 "download_action.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700453 "metrics_utils.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700454 "update_boot_flags_action.cc",
455 "update_status_utils.cc",
456 ],
457
458 // Use commonly used shared libraries. libprotobuf-cpp-lite.so is filtered out,
459 // as it doesn't look beneficial to be installed separately due to its size. Note
460 // that we explicitly request their recovery variants, so that the expected files
461 // will be used and installed.
462 shared_libs: [
463 "libbase",
464 "liblog",
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800465 "liblz4",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700466 ],
467 static_libs: [
468 "libpayload_consumer",
469 "libupdate_engine_boot_control",
470 "update_metadata-protos",
471
472 // We add the static versions of the shared libraries that are not installed to
473 // recovery image due to size concerns. Need to include all the static library
474 // dependencies of these static libraries.
Yifan Hong126d13e2020-09-21 19:50:06 -0700475 "gkiprops",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700476 "libevent",
477 "libmodpb64",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700478 "libprotobuf-cpp-lite",
479 "libbrillo-stream",
480 "libbrillo",
481 "libchrome",
482 ],
483 target: {
484 recovery: {
485 exclude_shared_libs: [
486 "libprotobuf-cpp-lite",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700487 "libbrillo-stream",
488 "libbrillo",
489 "libchrome",
490 ],
491 },
492 },
493
Tao Bao1e1c86c2019-04-18 10:48:32 -0700494 required: [
Tianjie Xube4ea232019-10-15 18:08:31 -0700495 "otacerts.recovery",
Tao Bao1e1c86c2019-04-18 10:48:32 -0700496 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700497}
498
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700499// update_engine_client (type: executable)
500// ========================================================
501// update_engine console client.
502cc_binary {
503 name: "update_engine_client",
504 defaults: ["ue_defaults"],
505
506 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
507 // out of the DBus interface.
508 include_dirs: ["external/cros/system_api/dbus"],
509
510 shared_libs: [
511 "libbinder",
512 "libbinderwrapper",
513 "libbrillo-binder",
514 "libutils",
515 ],
516
517 aidl: {
518 local_include_dirs: ["binder_bindings"],
519 },
520
521 srcs: [
522 ":libupdate_engine_aidl",
Amin Hassaniec7bc112020-10-29 16:47:58 -0700523 "aosp/update_engine_client_android.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700524 "common/error_code_utils.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700525 "update_status_utils.cc",
526 ],
527}
528
529// libpayload_generator (type: static_library)
530// ========================================================
531// server-side code. This is used for delta_generator and unittests but not
532// for any client code.
533cc_defaults {
534 name: "libpayload_generator_exports",
535 defaults: [
536 "libpayload_consumer_exports",
537 "update_metadata-protos_exports",
Kelvin Zhang446989a2021-12-08 13:49:07 -0800538 "erofs-utils_export_defaults",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700539 ],
540
Tianjie37ae8562020-03-25 15:16:01 -0700541 header_libs: [
542 "bootimg_headers",
543 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700544 static_libs: [
545 "libavb",
546 "libbrotli",
547 "libbsdiff",
548 "libdivsufsort",
549 "libdivsufsort64",
550 "liblzma",
551 "libpayload_consumer",
552 "libpuffdiff",
Tianjiea69cfe22021-08-22 23:28:44 -0700553 "libzucchini",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700554 "libverity_tree",
555 "update_metadata-protos",
Kelvin Zhangeb8703b2020-12-10 14:17:21 -0500556 "libpayload_extent_utils",
Kelvin Zhangb93055f2021-02-03 14:22:35 -0500557 "libcow_size_estimator",
Kelvin Zhang446989a2021-12-08 13:49:07 -0800558 "liberofs",
559 "lz4diff-protos",
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800560 "liblz4diff",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700561 ],
562 shared_libs: [
563 "libbase",
564 "libext2fs",
Kelvin Zhang446989a2021-12-08 13:49:07 -0800565 // LZ4 has to be a shared lib, as we want to override it with
566 // LD_LIBRARY_PRELOAD later
567 "liblz4",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700568 ],
569}
570
571cc_library_static {
David Andersonc1c93052020-08-26 18:22:09 +0000572 name: "libpayload_extent_ranges",
573 defaults: [
574 "ue_defaults",
575 ],
576 host_supported: true,
Kelvin Zhang9b10dba2020-09-25 17:09:11 -0400577 recovery_available: true,
David Andersonc1c93052020-08-26 18:22:09 +0000578 srcs: [
579 "payload_generator/extent_ranges.cc",
580 ],
581 static_libs: [
582 "update_metadata-protos",
583 ],
584}
585
586cc_library_static {
Kelvin Zhangb93055f2021-02-03 14:22:35 -0500587 name: "libcow_size_estimator",
588 defaults: [
589 "ue_defaults",
590 "update_metadata-protos_exports"
591 ],
592 host_supported: true,
593 recovery_available: true,
594 srcs: [
595 "payload_generator/cow_size_estimator.cc",
596 ],
597 static_libs: [
598 "update_metadata-protos",
599 "libbase",
600 "libsnapshot_cow",
601 "libcow_operation_convert",
602 ],
603}
604
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800605cc_defaults {
606 name: "liblz4diff_defaults",
607 static_libs: [
608 "lz4diff-protos",
609 "update_metadata-protos",
610 "libssl",
611 "libbsdiff",
612 "libpuffdiff",
613 ],
614 shared_libs: [
615 "liblz4",
Kelvin Zhang893b3a12021-12-30 12:28:53 -0800616 ],
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800617}
618
619cc_library_static {
620 name: "liblz4diff",
621 host_supported: true,
622 defaults: ["ue_defaults", "liblz4diff_defaults"],
623 srcs: [
Kelvin Zhang893b3a12021-12-30 12:28:53 -0800624 "lz4diff/lz4diff.cc",
Kelvin Zhang4eae81e2021-12-09 17:07:17 -0800625 "lz4diff/lz4diff_compress.cc",
626 ],
627}
628
629cc_library_static {
630 name: "liblz4patch",
631 host_supported: true,
632 recovery_available: true,
633 defaults: ["ue_defaults"],
634 static_libs: [
635 "lz4diff-protos",
636 "update_metadata-protos",
637 "libssl",
638 "libbspatch",
639 "libpuffpatch",
640 ],
641 shared_libs: [
642 "liblz4",
643 ],
644 srcs: [
645 "lz4diff/lz4patch.cc",
646 "lz4diff/lz4diff_compress.cc",
647 ],
648}
649
Kelvin Zhangb93055f2021-02-03 14:22:35 -0500650cc_library_static {
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700651 name: "libpayload_generator",
652 defaults: [
653 "ue_defaults",
654 "libpayload_generator_exports",
655 ],
656 host_supported: true,
657
658 srcs: [
Amin Hassani538bd592020-11-04 20:46:08 -0800659 "common/system_state.cc",
660 "download_action.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700661 "payload_generator/ab_generator.cc",
662 "payload_generator/annotated_operation.cc",
663 "payload_generator/blob_file_writer.cc",
664 "payload_generator/block_mapping.cc",
665 "payload_generator/boot_img_filesystem.cc",
666 "payload_generator/bzip.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700667 "payload_generator/deflate_utils.cc",
668 "payload_generator/delta_diff_generator.cc",
669 "payload_generator/delta_diff_utils.cc",
670 "payload_generator/ext2_filesystem.cc",
Kelvin Zhang446989a2021-12-08 13:49:07 -0800671 "payload_generator/erofs_filesystem.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700672 "payload_generator/extent_ranges.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700673 "payload_generator/full_update_generator.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700674 "payload_generator/mapfile_filesystem.cc",
Tianjiee9156ec2020-08-11 11:13:54 -0700675 "payload_generator/merge_sequence_generator.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700676 "payload_generator/payload_file.cc",
677 "payload_generator/payload_generation_config_android.cc",
678 "payload_generator/payload_generation_config.cc",
Amin Hassani79821002019-05-06 17:40:49 -0700679 "payload_generator/payload_properties.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700680 "payload_generator/payload_signer.cc",
681 "payload_generator/raw_filesystem.cc",
682 "payload_generator/squashfs_filesystem.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700683 "payload_generator/xz_android.cc",
684 ],
685}
686
687// delta_generator (type: executable)
688// ========================================================
689// server-side delta generator.
690cc_binary_host {
691 name: "delta_generator",
692 defaults: [
693 "ue_defaults",
694 "libpayload_generator_exports",
695 "libpayload_consumer_exports",
696 ],
697
698 static_libs: [
699 "libavb_host_sysdeps",
700 "libpayload_consumer",
701 "libpayload_generator",
702 ],
703
704 srcs: ["payload_generator/generate_delta_main.cc"],
705}
706
707cc_test {
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700708 host_supported: true,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700709 name: "ue_unittest_delta_generator",
710 defaults: [
711 "ue_defaults",
712 "libpayload_generator_exports",
713 "libpayload_consumer_exports",
714 ],
715
716 static_libs: [
717 "libpayload_consumer",
718 "libpayload_generator",
719 ],
720
721 srcs: ["payload_generator/generate_delta_main.cc"],
722
723 gtest: false,
724 stem: "delta_generator",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700725}
726
727// test_http_server (type: executable)
728// ========================================================
729// Test HTTP Server.
730cc_test {
731 name: "test_http_server",
732 defaults: ["ue_defaults"],
733 srcs: [
734 "common/http_common.cc",
735 "test_http_server.cc",
736 ],
737
738 gtest: false,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700739}
740
741// test_subprocess (type: executable)
742// ========================================================
743// Test helper subprocess program.
744cc_test {
745 name: "test_subprocess",
746 defaults: ["ue_defaults"],
747 srcs: ["test_subprocess.cc"],
748
749 gtest: false,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700750}
751
752// Public keys for unittests.
753// ========================================================
754genrule {
755 name: "ue_unittest_keys",
756 cmd: "openssl rsa -in $(location unittest_key.pem) -pubout -out $(location unittest_key.pub.pem) &&" +
xunchangcda3c032019-03-26 15:41:14 -0700757 "openssl rsa -in $(location unittest_key2.pem) -pubout -out $(location unittest_key2.pub.pem) &&" +
Tianjie Xu7bbe0152019-10-09 18:11:15 -0700758 "openssl rsa -in $(location unittest_key_RSA4096.pem) -pubout -out $(location unittest_key_RSA4096.pub.pem) &&" +
759 "openssl pkey -in $(location unittest_key_EC.pem) -pubout -out $(location unittest_key_EC.pub.pem)",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700760 srcs: [
761 "unittest_key.pem",
762 "unittest_key2.pem",
xunchangcda3c032019-03-26 15:41:14 -0700763 "unittest_key_RSA4096.pem",
Tianjie Xu7bbe0152019-10-09 18:11:15 -0700764 "unittest_key_EC.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700765 ],
766 out: [
767 "unittest_key.pub.pem",
768 "unittest_key2.pub.pem",
xunchangcda3c032019-03-26 15:41:14 -0700769 "unittest_key_RSA4096.pub.pem",
Tianjie Xu7bbe0152019-10-09 18:11:15 -0700770 "unittest_key_EC.pub.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700771 ],
772}
773
774// Sample images for unittests.
775// ========================================================
776// Extract sample image from the compressed sample_images.tar.bz2 file used by
777// the unittests.
778genrule {
779 name: "ue_unittest_disk_imgs",
780 cmd: "tar -jxf $(in) -C $(genDir)/gen disk_ext2_1k.img disk_ext2_4k.img disk_ext2_4k_empty.img disk_ext2_unittest.img",
781 srcs: ["sample_images/sample_images.tar.bz2"],
782 out: [
783 "gen/disk_ext2_1k.img",
784 "gen/disk_ext2_4k.img",
785 "gen/disk_ext2_4k_empty.img",
786 "gen/disk_ext2_unittest.img",
787 ],
788}
789
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800790genrule {
791 name: "ue_unittest_erofs_imgs",
Kelvin Zhang893b3a12021-12-30 12:28:53 -0800792 cmd: "$(in) $(location mkfs.erofs) $(location gen/erofs_empty.img) && " +
793 "$(in) $(location mkfs.erofs) $(location gen/erofs.img) $(location delta_generator) && " +
794 "$(in) $(location mkfs.erofs) $(location gen/erofs_new.img) $(location delta_generator) lz4hc,7",
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800795 srcs: ["sample_images/generate_test_erofs_images.sh"],
796 out: [
797 "gen/erofs.img",
Kelvin Zhang893b3a12021-12-30 12:28:53 -0800798 "gen/erofs_new.img",
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800799 "gen/erofs_empty.img",
800 ],
801 tools: [
802 "mkfs.erofs",
803 "delta_generator",
804 ],
805}
806
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700807filegroup {
808 name: "update_engine_host_unittest_srcs",
809 srcs: [
810 "common/action_pipe_unittest.cc",
811 "common/action_processor_unittest.cc",
812 "common/action_unittest.cc",
813 "common/cow_operation_convert_unittest.cc",
814 "common/cpu_limiter_unittest.cc",
815 "common/fake_prefs.cc",
816 "common/file_fetcher_unittest.cc",
817 "common/hash_calculator_unittest.cc",
818 "common/hwid_override_unittest.cc",
819 "common/metrics_reporter_stub.cc",
820 "common/mock_http_fetcher.cc",
821 "common/prefs_unittest.cc",
822 "common/terminator_unittest.cc",
823 "common/test_utils.cc",
Kelvin Zhang55624032021-12-20 12:13:24 -0800824 "lz4diff/lz4diff_compress_unittest.cc",
Kelvin Zhang893b3a12021-12-30 12:28:53 -0800825 "lz4diff/lz4diff_unittest.cc",
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700826 "payload_generator/ab_generator_unittest.cc",
827 "payload_generator/blob_file_writer_unittest.cc",
828 "payload_generator/block_mapping_unittest.cc",
829 "payload_generator/boot_img_filesystem_unittest.cc",
830 "payload_generator/deflate_utils_unittest.cc",
831 "payload_generator/delta_diff_utils_unittest.cc",
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800832 "payload_generator/erofs_filesystem_unittest.cc",
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700833 "payload_generator/ext2_filesystem_unittest.cc",
834 "payload_generator/extent_ranges_unittest.cc",
835 "payload_generator/extent_utils_unittest.cc",
836 "payload_generator/fake_filesystem.cc",
837 "payload_generator/full_update_generator_unittest.cc",
838 "payload_generator/mapfile_filesystem_unittest.cc",
839 "payload_generator/merge_sequence_generator_unittest.cc",
840 "payload_generator/payload_file_unittest.cc",
841 "payload_generator/payload_generation_config_android_unittest.cc",
842 "payload_generator/payload_generation_config_unittest.cc",
843 "payload_generator/payload_properties_unittest.cc",
844 "payload_generator/payload_signer_unittest.cc",
845 "payload_generator/squashfs_filesystem_unittest.cc",
846 "payload_generator/zip_unittest.cc",
847 "testrunner.cc",
848 ],
849}
850
851cc_test_host {
852 name: "update_engine_host_unittests",
853 defaults: [
854 "ue_defaults",
855 "libpayload_generator_exports",
856 ],
857 strip: {
858 none: true,
859 },
860 cflags: [
861 "-g3",
862 ],
863 srcs: [":update_engine_host_unittest_srcs"],
864 data: [
865 ":ue_unittest_delta_generator",
866 ":ue_unittest_disk_imgs",
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800867 ":ue_unittest_erofs_imgs",
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700868 ":ue_unittest_keys",
869 "otacerts.zip",
870 "unittest_key.pem",
871 "unittest_key2.pem",
872 "unittest_key_RSA4096.pem",
873 "unittest_key_EC.pem",
874 "update_engine.conf",
875 ],
876 static_libs: [
877 "libcurl",
878 "libgmock",
879 "libpayload_generator",
880 ],
881}
882
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700883// update_engine_unittests (type: executable)
884// ========================================================
885// Main unittest file.
886cc_test {
887 name: "update_engine_unittests",
888 defaults: [
889 "ue_defaults",
890 "libpayload_generator_exports",
891 "libupdate_engine_android_exports",
892 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700893
894 static_libs: [
895 "libpayload_generator",
896 "libbrillo-test-helpers",
897 "libgmock",
898 "libchrome_test_helpers",
899 "libupdate_engine_android",
Tianjie Xu173e6192019-12-10 10:56:01 -0800900 "libdm",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700901 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700902
Yifan Hong87ea73f2019-09-12 13:07:37 -0700903 header_libs: [
904 "libstorage_literals_headers",
905 ],
906
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700907 data: [
Tao Bao9456b6f2019-04-29 18:14:58 -0700908 ":test_http_server",
909 ":test_subprocess",
910 ":ue_unittest_delta_generator",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700911 ":ue_unittest_disk_imgs",
Kelvin Zhang759e8b92021-12-21 16:46:58 -0800912 ":ue_unittest_erofs_imgs",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700913 ":ue_unittest_keys",
Tianjie Xu7a78d632019-10-08 16:32:39 -0700914 "otacerts.zip",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700915 "unittest_key.pem",
916 "unittest_key2.pem",
xunchangcda3c032019-03-26 15:41:14 -0700917 "unittest_key_RSA4096.pem",
Tianjie Xu7bbe0152019-10-09 18:11:15 -0700918 "unittest_key_EC.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700919 "update_engine.conf",
920 ],
921
Tao Bao9456b6f2019-04-29 18:14:58 -0700922 // We cannot use the default generated AndroidTest.xml because of the use of helper modules
923 // (i.e. test_http_server, test_subprocess, ue_unittest_delta_generator).
924 test_config: "test_config.xml",
925 test_suites: ["device-tests"],
926
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700927 srcs: [
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700928 ":update_engine_host_unittest_srcs",
Mohammad Samiul Islam24a82792021-02-12 16:52:36 +0000929 "aosp/apex_handler_android_unittest.cc",
Kelvin Zhangb4b95c22021-04-05 15:56:26 -0400930 "aosp/cleanup_previous_update_action_unittest.cc",
Amin Hassaniec7bc112020-10-29 16:47:58 -0700931 "aosp/dynamic_partition_control_android_unittest.cc",
Kelvin Zhang3fe49642021-10-04 15:35:02 -0700932 "aosp/update_attempter_android_integration_test.cc",
Amin Hassaniec7bc112020-10-29 16:47:58 -0700933 "aosp/update_attempter_android_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700934 "certificate_checker_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700935 "common/http_fetcher_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700936 "common/proxy_resolver_unittest.cc",
937 "common/subprocess_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700938 "common/utils_unittest.cc",
Kelvin Zhang4e93cf12021-09-13 16:03:24 -0700939 "download_action_android_unittest.cc",
940 "libcurl_http_fetcher_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700941 "payload_consumer/bzip_extent_writer_unittest.cc",
942 "payload_consumer/cached_file_descriptor_unittest.cc",
Kelvin Zhang46d6c492021-04-26 17:51:25 -0400943 "payload_consumer/cow_writer_file_descriptor_unittest.cc",
Tianjie Xu7a78d632019-10-08 16:32:39 -0700944 "payload_consumer/certificate_parser_android_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700945 "payload_consumer/delta_performer_integration_test.cc",
946 "payload_consumer/delta_performer_unittest.cc",
947 "payload_consumer/extent_reader_unittest.cc",
948 "payload_consumer/extent_writer_unittest.cc",
Kelvin Zhangc5803b72021-09-02 09:06:16 -0700949 "payload_consumer/extent_map_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700950 "payload_consumer/fake_file_descriptor.cc",
951 "payload_consumer/file_descriptor_utils_unittest.cc",
952 "payload_consumer/file_writer_unittest.cc",
953 "payload_consumer/filesystem_verifier_action_unittest.cc",
Amin Hassani23795032020-11-24 14:38:55 -0800954 "payload_consumer/install_plan_unittest.cc",
Kelvin Zhang40d96662021-02-24 14:21:29 -0500955 "payload_consumer/install_operation_executor_unittest.cc",
Tianjie99d570d2020-06-04 14:57:19 -0700956 "payload_consumer/partition_update_generator_android_unittest.cc",
Kelvin Zhang4e93cf12021-09-13 16:03:24 -0700957 "payload_consumer/partition_writer_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700958 "payload_consumer/postinstall_runner_action_unittest.cc",
Kelvin Zhang4e93cf12021-09-13 16:03:24 -0700959 "payload_consumer/snapshot_extent_writer_unittest.cc",
960 "payload_consumer/vabc_partition_writer_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700961 "payload_consumer/verity_writer_android_unittest.cc",
Kelvin Zhang4e93cf12021-09-13 16:03:24 -0700962 "payload_consumer/xor_extent_writer_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700963 "payload_consumer/xz_extent_writer_unittest.cc",
Jae Hoon Kim916af852019-08-01 17:45:30 -0700964 "update_status_utils_unittest.cc",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700965 ],
966}
967
968// Brillo update payload generation script
969// ========================================================
Martin Stjernholm18e9f3c2020-09-08 13:56:59 +0100970sh_binary {
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700971 name: "brillo_update_payload",
972 device_supported: false,
973 host_supported: true,
974
Martin Stjernholm18e9f3c2020-09-08 13:56:59 +0100975 src: "scripts/brillo_update_payload",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700976 required: [
977 "delta_generator",
978 "shflags",
979 "simg2img",
980 ],
981
982 target: {
983 darwin: {
984 enabled: false,
985 },
986 },
Colin Cross606913a2017-11-14 13:05:37 -0800987}
Yifan Hongd51738c2020-07-23 17:06:25 -0700988
989// update_engine header library
990cc_library_headers {
991 name: "libupdate_engine_headers",
Yifan Hong309c8a82020-10-06 18:31:08 -0700992
993 // This header library is available to core and product modules.
Justin Yun6d121de2020-11-11 19:31:57 +0900994 product_available: true,
Yifan Hong309c8a82020-10-06 18:31:08 -0700995
Yifan Hongd51738c2020-07-23 17:06:25 -0700996 export_include_dirs: ["."],
997 apex_available: [
998 "com.android.gki.*",
David Anderson5e6dfe32020-09-17 15:50:33 -0700999 "//apex_available:platform",
Yifan Hongd51738c2020-07-23 17:06:25 -07001000 ],
David Andersonc1c93052020-08-26 18:22:09 +00001001 host_supported: true,
David Anderson5e6dfe32020-09-17 15:50:33 -07001002 recovery_available: true,
1003 ramdisk_available: true,
1004
1005 target: {
1006 darwin: {
1007 enabled: false,
1008 },
1009 }
Yifan Hongd51738c2020-07-23 17:06:25 -07001010}
Kelvin Zhangb93055f2021-02-03 14:22:35 -05001011
1012cc_binary_host {
1013 name: "cow_converter",
1014 defaults: [
1015 "ue_defaults",
1016 "libpayload_consumer_exports",
1017 ],
1018 srcs: [
1019 "aosp/cow_converter.cc",
1020 ],
1021 static_libs: [
1022 "liblog",
1023 "libbrotli",
1024 "libbase",
1025 "libcow_operation_convert",
1026 "libcow_size_estimator",
1027 "libpayload_consumer",
1028 "libpayload_extent_ranges",
1029 "libpayload_extent_utils",
1030 "libsnapshot_cow",
1031 "libz",
1032 "update_metadata-protos",
1033 ],
Elliott Hughes88f3c8c2021-04-22 13:47:21 -07001034}
Kelvin Zhang98001b22021-12-08 14:10:11 -08001035
1036cc_library_static {
1037 name: "lz4diff-protos",
1038 host_supported: true,
1039 ramdisk_available: true,
1040 recovery_available: true,
1041
1042 srcs: ["lz4diff/lz4diff.proto"],
1043 cflags: [
1044 "-Wall",
1045 "-Werror",
1046 ],
1047 proto: {
1048 canonical_path_from_root: false,
1049 export_proto_headers: true,
1050 },
1051}