blob: e861797eebb32e39a930a758781cb564936bf9a5 [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
18filegroup {
19 name: "libupdate_engine_aidl",
20 srcs: [
21 "binder_bindings/android/os/IUpdateEngine.aidl",
22 "binder_bindings/android/os/IUpdateEngineCallback.aidl",
23 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -070024 path: "binder_bindings",
25}
26
27cc_defaults {
28 name: "ue_defaults",
29
30 cflags: [
Amin Hassani2e4eda52019-01-07 14:01:17 -080031 "-DBASE_VER=576279",
Dan Willemsenf5a904e2018-10-23 01:02:44 -070032 "-DUSE_BINDER=1",
33 "-DUSE_CHROME_NETWORK_PROXY=0",
34 "-DUSE_CHROME_KIOSK_APP=0",
Dan Willemsenf5a904e2018-10-23 01:02:44 -070035 "-DUSE_HWID_OVERRIDE=0",
36 "-DUSE_MTD=0",
37 "-DUSE_OMAHA=0",
38 "-D_FILE_OFFSET_BITS=64",
39 "-D_POSIX_C_SOURCE=199309L",
40 "-Wa,--noexecstack",
41 "-Wall",
42 "-Werror",
43 "-Wextra",
44 "-Wformat=2",
45 "-Wno-psabi",
46 "-Wno-unused-parameter",
47 "-ffunction-sections",
48 "-fstack-protector-strong",
49 "-fvisibility=hidden",
50 ],
51 cppflags: [
52 "-Wnon-virtual-dtor",
53 "-fno-strict-aliasing",
54 ],
55 include_dirs: ["system"],
56 local_include_dirs: ["client_library/include"],
57 static_libs: ["libgtest_prod"],
58 shared_libs: [
59 "libbrillo-stream",
60 "libbrillo",
61 "libchrome",
62 ],
63 ldflags: ["-Wl,--gc-sections"],
64
65 product_variables: {
66 pdk: {
67 enabled: false,
68 },
69 },
70
71 target: {
Sen Jiangb5f631d2018-12-18 16:59:57 -080072 android: {
73 cflags: [
74 "-DUSE_FEC=1",
75 ],
76 },
77 host: {
78 cflags: [
79 "-DUSE_FEC=0",
80 ],
81 },
Dan Willemsenf5a904e2018-10-23 01:02:44 -070082 darwin: {
83 enabled: false,
84 },
85 },
86}
87
88// update_metadata-protos (type: static_library)
89// ========================================================
90// Protobufs.
91cc_defaults {
92 name: "update_metadata-protos_exports",
93
94 shared_libs: ["libprotobuf-cpp-lite"],
95}
96
97cc_library_static {
98 name: "update_metadata-protos",
99 host_supported: true,
100 recovery_available: true,
101
102 srcs: ["update_engine/update_metadata.proto"],
103 cflags: [
104 "-Wall",
105 "-Werror",
106 ],
107 proto: {
108 canonical_path_from_root: false,
109 export_proto_headers: true,
110 },
111}
112
113// libpayload_consumer (type: static_library)
114// ========================================================
115// The payload application component and common dependencies.
116cc_defaults {
117 name: "libpayload_consumer_exports",
118 defaults: ["update_metadata-protos_exports"],
119
120 static_libs: [
121 "update_metadata-protos",
122 "libxz",
123 "libbz",
124 "libbspatch",
125 "libbrotli",
126 "libfec_rs",
127 "libpuffpatch",
128 "libverity_tree",
129 ],
130 shared_libs: [
131 "libbase",
132 "libcrypto",
Sen Jiangb5f631d2018-12-18 16:59:57 -0800133 "libfec",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700134 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700135}
136
137cc_library_static {
138 name: "libpayload_consumer",
139 defaults: [
140 "ue_defaults",
141 "libpayload_consumer_exports",
142 ],
143 host_supported: true,
144 recovery_available: true,
145
146 srcs: [
147 "common/action_processor.cc",
148 "common/boot_control_stub.cc",
149 "common/clock.cc",
150 "common/constants.cc",
151 "common/cpu_limiter.cc",
152 "common/error_code_utils.cc",
153 "common/file_fetcher.cc",
154 "common/hash_calculator.cc",
155 "common/http_common.cc",
156 "common/http_fetcher.cc",
157 "common/hwid_override.cc",
158 "common/multi_range_http_fetcher.cc",
159 "common/platform_constants_android.cc",
160 "common/prefs.cc",
161 "common/proxy_resolver.cc",
162 "common/subprocess.cc",
163 "common/terminator.cc",
164 "common/utils.cc",
165 "payload_consumer/bzip_extent_writer.cc",
166 "payload_consumer/cached_file_descriptor.cc",
167 "payload_consumer/delta_performer.cc",
168 "payload_consumer/download_action.cc",
169 "payload_consumer/extent_reader.cc",
170 "payload_consumer/extent_writer.cc",
171 "payload_consumer/file_descriptor.cc",
172 "payload_consumer/file_descriptor_utils.cc",
173 "payload_consumer/file_writer.cc",
174 "payload_consumer/filesystem_verifier_action.cc",
175 "payload_consumer/install_plan.cc",
176 "payload_consumer/mount_history.cc",
177 "payload_consumer/payload_constants.cc",
178 "payload_consumer/payload_metadata.cc",
179 "payload_consumer/payload_verifier.cc",
180 "payload_consumer/postinstall_runner_action.cc",
181 "payload_consumer/verity_writer_android.cc",
182 "payload_consumer/xz_extent_writer.cc",
183 "payload_consumer/fec_file_descriptor.cc",
184 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700185}
186
187// libupdate_engine_boot_control (type: static_library)
188// ========================================================
189// A BootControl class implementation using Android's HIDL boot_control HAL.
190cc_defaults {
191 name: "libupdate_engine_boot_control_exports",
192 defaults: ["update_metadata-protos_exports"],
193
194 static_libs: ["update_metadata-protos"],
195 shared_libs: [
196 "libbootloader_message",
197 "libfs_mgr",
198 "libhwbinder",
199 "libhidlbase",
200 "liblp",
201 "libutils",
202 "android.hardware.boot@1.0",
203 ],
204}
205
206cc_library_static {
207 name: "libupdate_engine_boot_control",
208 defaults: [
209 "ue_defaults",
210 "libupdate_engine_boot_control_exports",
211 ],
212 recovery_available: true,
213
214 srcs: [
215 "boot_control_android.cc",
216 "dynamic_partition_control_android.cc",
217 ],
218}
219
220// libupdate_engine_android (type: static_library)
221// ========================================================
222// The main daemon static_library used in Android (non-Brillo). This only has a
223// loop to apply payloads provided by the upper layer via a Binder interface.
224cc_defaults {
225 name: "libupdate_engine_android_exports",
226 defaults: [
227 "ue_defaults",
228 "libpayload_consumer_exports",
229 "libupdate_engine_boot_control_exports",
230 ],
231
232 static_libs: [
233 "libpayload_consumer",
234 "libupdate_engine_boot_control",
235 ],
236 shared_libs: [
237 "libandroid_net",
238 "libbase",
239 "libbinder",
240 "libbinderwrapper",
241 "libbootloader_message",
242 "libbrillo-binder",
243 "libcurl",
244 "libcutils",
245 "liblog",
246 "libmetricslogger",
247 "libssl",
248 "libutils",
249 ],
250}
251
252cc_library_static {
253 name: "libupdate_engine_android",
254 defaults: [
255 "ue_defaults",
256 "libupdate_engine_android_exports",
257 ],
258
259 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
260 // out of the DBus interface.
261 include_dirs: ["external/cros/system_api/dbus"],
262
263 aidl: {
264 local_include_dirs: ["binder_bindings"],
265 export_aidl_headers: true,
266 },
267
268 srcs: [
269 ":libupdate_engine_aidl",
270 "binder_service_android.cc",
271 "certificate_checker.cc",
272 "daemon.cc",
273 "daemon_state_android.cc",
274 "hardware_android.cc",
275 "libcurl_http_fetcher.cc",
276 "metrics_reporter_android.cc",
277 "metrics_utils.cc",
278 "network_selector_android.cc",
279 "update_attempter_android.cc",
280 "update_boot_flags_action.cc",
281 "update_status_utils.cc",
282 ],
283}
284
285// update_engine (type: executable)
286// ========================================================
287// update_engine daemon.
288cc_binary {
289 name: "update_engine",
290 defaults: [
291 "ue_defaults",
292 "libupdate_engine_android_exports",
293 ],
294
295 static_libs: ["libupdate_engine_android"],
Tao Bao1e1c86c2019-04-18 10:48:32 -0700296 required: [
297 "cacerts_google",
298 "update_engine_payload_key",
299 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700300
301 srcs: ["main.cc"],
302 init_rc: ["update_engine.rc"],
303}
304
305// update_engine_sideload (type: executable)
306// ========================================================
307// A binary executable equivalent to update_engine daemon that installs an update
308// from a local file directly instead of running in the background. Used in
309// recovery image.
310cc_binary {
311 name: "update_engine_sideload",
312 defaults: [
313 "ue_defaults",
314 "update_metadata-protos_exports",
315 "libupdate_engine_boot_control_exports",
316 "libpayload_consumer_exports",
317 ],
318 recovery: true,
319
320 cflags: ["-D_UE_SIDELOAD"],
321 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
322 // out of the DBus interface.
323 include_dirs: ["external/cros/system_api/dbus"],
324
325 srcs: [
326 "hardware_android.cc",
327 "metrics_reporter_stub.cc",
328 "metrics_utils.cc",
329 "network_selector_stub.cc",
330 "sideload_main.cc",
331 "update_attempter_android.cc",
332 "update_boot_flags_action.cc",
333 "update_status_utils.cc",
334 ],
335
336 // Use commonly used shared libraries. libprotobuf-cpp-lite.so is filtered out,
337 // as it doesn't look beneficial to be installed separately due to its size. Note
338 // that we explicitly request their recovery variants, so that the expected files
339 // will be used and installed.
340 shared_libs: [
341 "libbase",
342 "liblog",
343 ],
344 static_libs: [
345 "libpayload_consumer",
346 "libupdate_engine_boot_control",
347 "update_metadata-protos",
348
349 // We add the static versions of the shared libraries that are not installed to
350 // recovery image due to size concerns. Need to include all the static library
351 // dependencies of these static libraries.
352 "libevent",
353 "libmodpb64",
354 "libgtest_prod",
355 "libprotobuf-cpp-lite",
356 "libbrillo-stream",
357 "libbrillo",
358 "libchrome",
359 ],
360 target: {
361 recovery: {
362 exclude_shared_libs: [
363 "libprotobuf-cpp-lite",
364 "libhwbinder",
365 "libbrillo-stream",
366 "libbrillo",
367 "libchrome",
368 ],
369 },
370 },
371
Tao Bao1e1c86c2019-04-18 10:48:32 -0700372 required: [
Tao Bao1e1c86c2019-04-18 10:48:32 -0700373 "update_engine_payload_key.recovery",
374 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700375}
376
377// libupdate_engine_client (type: shared_library)
378// ========================================================
379cc_library_shared {
380 name: "libupdate_engine_client",
381
382 cflags: [
383 "-Wall",
384 "-Werror",
385 "-Wno-unused-parameter",
386 "-DUSE_BINDER=1",
387 ],
388 export_include_dirs: ["client_library/include"],
389 include_dirs: [
390 // TODO(deymo): Remove "external/cros/system_api/dbus" when dbus is not used.
391 "external/cros/system_api/dbus",
392 "system",
393 ],
394
395 aidl: {
396 local_include_dirs: ["binder_bindings"],
397 },
398
399 shared_libs: [
400 "libchrome",
401 "libbrillo",
402 "libbinder",
403 "libbrillo-binder",
404 "libutils",
405 ],
406
407 srcs: [
408 "binder_bindings/android/brillo/IUpdateEngine.aidl",
409 "binder_bindings/android/brillo/IUpdateEngineStatusCallback.aidl",
410 "client_library/client.cc",
411 "client_library/client_binder.cc",
412 "parcelable_update_engine_status.cc",
413 "update_status_utils.cc",
414 ],
415}
416
417// update_engine_client (type: executable)
418// ========================================================
419// update_engine console client.
420cc_binary {
421 name: "update_engine_client",
422 defaults: ["ue_defaults"],
423
424 // TODO(deymo): Remove external/cros/system_api/dbus once the strings are moved
425 // out of the DBus interface.
426 include_dirs: ["external/cros/system_api/dbus"],
427
428 shared_libs: [
429 "libbinder",
430 "libbinderwrapper",
431 "libbrillo-binder",
432 "libutils",
433 ],
434
435 aidl: {
436 local_include_dirs: ["binder_bindings"],
437 },
438
439 srcs: [
440 ":libupdate_engine_aidl",
441 "common/error_code_utils.cc",
442 "update_engine_client_android.cc",
443 "update_status_utils.cc",
444 ],
445}
446
447// libpayload_generator (type: static_library)
448// ========================================================
449// server-side code. This is used for delta_generator and unittests but not
450// for any client code.
451cc_defaults {
452 name: "libpayload_generator_exports",
453 defaults: [
454 "libpayload_consumer_exports",
455 "update_metadata-protos_exports",
456 ],
457
458 static_libs: [
459 "libavb",
460 "libbrotli",
461 "libbsdiff",
462 "libdivsufsort",
463 "libdivsufsort64",
464 "liblzma",
465 "libpayload_consumer",
466 "libpuffdiff",
467 "libverity_tree",
468 "update_metadata-protos",
469 ],
470 shared_libs: [
471 "libbase",
472 "libext2fs",
473 ],
474}
475
476cc_library_static {
477 name: "libpayload_generator",
478 defaults: [
479 "ue_defaults",
480 "libpayload_generator_exports",
481 ],
482 host_supported: true,
483
484 srcs: [
485 "payload_generator/ab_generator.cc",
486 "payload_generator/annotated_operation.cc",
487 "payload_generator/blob_file_writer.cc",
488 "payload_generator/block_mapping.cc",
489 "payload_generator/boot_img_filesystem.cc",
490 "payload_generator/bzip.cc",
491 "payload_generator/cycle_breaker.cc",
492 "payload_generator/deflate_utils.cc",
493 "payload_generator/delta_diff_generator.cc",
494 "payload_generator/delta_diff_utils.cc",
495 "payload_generator/ext2_filesystem.cc",
496 "payload_generator/extent_ranges.cc",
497 "payload_generator/extent_utils.cc",
498 "payload_generator/full_update_generator.cc",
499 "payload_generator/graph_types.cc",
500 "payload_generator/graph_utils.cc",
501 "payload_generator/inplace_generator.cc",
502 "payload_generator/mapfile_filesystem.cc",
503 "payload_generator/payload_file.cc",
504 "payload_generator/payload_generation_config_android.cc",
505 "payload_generator/payload_generation_config.cc",
506 "payload_generator/payload_signer.cc",
507 "payload_generator/raw_filesystem.cc",
508 "payload_generator/squashfs_filesystem.cc",
509 "payload_generator/tarjan.cc",
510 "payload_generator/topological_sort.cc",
511 "payload_generator/xz_android.cc",
512 ],
513}
514
515// delta_generator (type: executable)
516// ========================================================
517// server-side delta generator.
518cc_binary_host {
519 name: "delta_generator",
520 defaults: [
521 "ue_defaults",
522 "libpayload_generator_exports",
523 "libpayload_consumer_exports",
524 ],
525
526 static_libs: [
527 "libavb_host_sysdeps",
528 "libpayload_consumer",
529 "libpayload_generator",
530 ],
531
532 srcs: ["payload_generator/generate_delta_main.cc"],
533}
534
535cc_test {
536 name: "ue_unittest_delta_generator",
537 defaults: [
538 "ue_defaults",
539 "libpayload_generator_exports",
540 "libpayload_consumer_exports",
541 ],
542
543 static_libs: [
544 "libpayload_consumer",
545 "libpayload_generator",
546 ],
547
548 srcs: ["payload_generator/generate_delta_main.cc"],
549
550 gtest: false,
551 stem: "delta_generator",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700552}
553
554// test_http_server (type: executable)
555// ========================================================
556// Test HTTP Server.
557cc_test {
558 name: "test_http_server",
559 defaults: ["ue_defaults"],
560 srcs: [
561 "common/http_common.cc",
562 "test_http_server.cc",
563 ],
564
565 gtest: false,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700566}
567
568// test_subprocess (type: executable)
569// ========================================================
570// Test helper subprocess program.
571cc_test {
572 name: "test_subprocess",
573 defaults: ["ue_defaults"],
574 srcs: ["test_subprocess.cc"],
575
576 gtest: false,
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700577}
578
579// Public keys for unittests.
580// ========================================================
581genrule {
582 name: "ue_unittest_keys",
583 cmd: "openssl rsa -in $(location unittest_key.pem) -pubout -out $(location unittest_key.pub.pem) &&" +
xunchangcda3c032019-03-26 15:41:14 -0700584 "openssl rsa -in $(location unittest_key2.pem) -pubout -out $(location unittest_key2.pub.pem) &&" +
585 "openssl rsa -in $(location unittest_key_RSA4096.pem) -pubout -out $(location unittest_key_RSA4096.pub.pem)",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700586 srcs: [
587 "unittest_key.pem",
588 "unittest_key2.pem",
xunchangcda3c032019-03-26 15:41:14 -0700589 "unittest_key_RSA4096.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700590 ],
591 out: [
592 "unittest_key.pub.pem",
593 "unittest_key2.pub.pem",
xunchangcda3c032019-03-26 15:41:14 -0700594 "unittest_key_RSA4096.pub.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700595 ],
596}
597
598// Sample images for unittests.
599// ========================================================
600// Extract sample image from the compressed sample_images.tar.bz2 file used by
601// the unittests.
602genrule {
603 name: "ue_unittest_disk_imgs",
604 cmd: "tar -jxf $(in) -C $(genDir)/gen disk_ext2_1k.img disk_ext2_4k.img disk_ext2_4k_empty.img disk_ext2_unittest.img",
605 srcs: ["sample_images/sample_images.tar.bz2"],
606 out: [
607 "gen/disk_ext2_1k.img",
608 "gen/disk_ext2_4k.img",
609 "gen/disk_ext2_4k_empty.img",
610 "gen/disk_ext2_unittest.img",
611 ],
612}
613
614// update_engine_unittests (type: executable)
615// ========================================================
616// Main unittest file.
617cc_test {
618 name: "update_engine_unittests",
619 defaults: [
620 "ue_defaults",
621 "libpayload_generator_exports",
622 "libupdate_engine_android_exports",
623 ],
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700624
625 static_libs: [
626 "libpayload_generator",
627 "libbrillo-test-helpers",
628 "libgmock",
629 "libchrome_test_helpers",
630 "libupdate_engine_android",
631 ],
632 shared_libs: [
633 "libhidltransport",
634 ],
635
636 data: [
Tao Bao9456b6f2019-04-29 18:14:58 -0700637 ":test_http_server",
638 ":test_subprocess",
639 ":ue_unittest_delta_generator",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700640 ":ue_unittest_disk_imgs",
641 ":ue_unittest_keys",
642 "unittest_key.pem",
643 "unittest_key2.pem",
xunchangcda3c032019-03-26 15:41:14 -0700644 "unittest_key_RSA4096.pem",
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700645 "update_engine.conf",
646 ],
647
Tao Bao9456b6f2019-04-29 18:14:58 -0700648 // We cannot use the default generated AndroidTest.xml because of the use of helper modules
649 // (i.e. test_http_server, test_subprocess, ue_unittest_delta_generator).
650 test_config: "test_config.xml",
651 test_suites: ["device-tests"],
652
Dan Willemsenf5a904e2018-10-23 01:02:44 -0700653 srcs: [
654 "boot_control_android_unittest.cc",
655 "certificate_checker_unittest.cc",
656 "common/action_pipe_unittest.cc",
657 "common/action_processor_unittest.cc",
658 "common/action_unittest.cc",
659 "common/cpu_limiter_unittest.cc",
660 "common/fake_prefs.cc",
661 "common/file_fetcher_unittest.cc",
662 "common/hash_calculator_unittest.cc",
663 "common/http_fetcher_unittest.cc",
664 "common/hwid_override_unittest.cc",
665 "common/mock_http_fetcher.cc",
666 "common/prefs_unittest.cc",
667 "common/proxy_resolver_unittest.cc",
668 "common/subprocess_unittest.cc",
669 "common/terminator_unittest.cc",
670 "common/test_utils.cc",
671 "common/utils_unittest.cc",
672 "payload_consumer/bzip_extent_writer_unittest.cc",
673 "payload_consumer/cached_file_descriptor_unittest.cc",
674 "payload_consumer/delta_performer_integration_test.cc",
675 "payload_consumer/delta_performer_unittest.cc",
676 "payload_consumer/extent_reader_unittest.cc",
677 "payload_consumer/extent_writer_unittest.cc",
678 "payload_consumer/fake_file_descriptor.cc",
679 "payload_consumer/file_descriptor_utils_unittest.cc",
680 "payload_consumer/file_writer_unittest.cc",
681 "payload_consumer/filesystem_verifier_action_unittest.cc",
682 "payload_consumer/postinstall_runner_action_unittest.cc",
683 "payload_consumer/verity_writer_android_unittest.cc",
684 "payload_consumer/xz_extent_writer_unittest.cc",
685 "payload_generator/ab_generator_unittest.cc",
686 "payload_generator/blob_file_writer_unittest.cc",
687 "payload_generator/block_mapping_unittest.cc",
688 "payload_generator/boot_img_filesystem_unittest.cc",
689 "payload_generator/cycle_breaker_unittest.cc",
690 "payload_generator/deflate_utils_unittest.cc",
691 "payload_generator/delta_diff_utils_unittest.cc",
692 "payload_generator/ext2_filesystem_unittest.cc",
693 "payload_generator/extent_ranges_unittest.cc",
694 "payload_generator/extent_utils_unittest.cc",
695 "payload_generator/fake_filesystem.cc",
696 "payload_generator/full_update_generator_unittest.cc",
697 "payload_generator/graph_utils_unittest.cc",
698 "payload_generator/inplace_generator_unittest.cc",
699 "payload_generator/mapfile_filesystem_unittest.cc",
700 "payload_generator/payload_file_unittest.cc",
701 "payload_generator/payload_generation_config_android_unittest.cc",
702 "payload_generator/payload_generation_config_unittest.cc",
703 "payload_generator/payload_signer_unittest.cc",
704 "payload_generator/squashfs_filesystem_unittest.cc",
705 "payload_generator/tarjan_unittest.cc",
706 "payload_generator/topological_sort_unittest.cc",
707 "payload_generator/zip_unittest.cc",
708 "testrunner.cc",
709 "update_attempter_android_unittest.cc",
710 ],
711}
712
713// Brillo update payload generation script
714// ========================================================
715cc_prebuilt_binary {
716 name: "brillo_update_payload",
717 device_supported: false,
718 host_supported: true,
719
720 srcs: ["scripts/brillo_update_payload"],
721 required: [
722 "delta_generator",
723 "shflags",
724 "simg2img",
725 ],
726
727 target: {
728 darwin: {
729 enabled: false,
730 },
731 },
Colin Cross606913a2017-11-14 13:05:37 -0800732}