-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPS
5533 lines (4988 loc) · 191 KB
/
DEPS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is used to manage the dependencies of the Chromium src repo. It is
# used by gclient to determine what version of each dependency to check out, and
# where.
#
# For more information, please refer to the official documentation:
# https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code
#
# When adding a new dependency, please update the top-level .gitignore file
# to list the dependency's destination directory.
#
# -----------------------------------------------------------------------------
# Rolling deps
# -----------------------------------------------------------------------------
# All repositories in this file are git-based, using Chromium git mirrors where
# necessary (e.g., a git mirror is used when the source project is SVN-based).
# To update the revision that Chromium pulls for a given dependency:
#
# # Create and switch to a new branch
# git new-branch depsroll
# # Run roll-dep (provided by depot_tools) giving the dep's path and optionally
# # a regex that will match the line in this file that contains the current
# # revision. The script ALWAYS rolls the dependency to the latest revision
# # in origin/master. The path for the dep should start with src/.
# roll-dep src/third_party/foo_package/src foo_package.git
# # You should now have a modified DEPS file; commit and upload as normal
# git commit -aspv_he
# git cl upload
#
# For more on the syntax and semantics of this file, see:
# https://bit.ly/chromium-gclient-conditionals
#
# which is a bit incomplete but the best documentation we have at the
# moment.
# We expect all git dependencies specified in this file to be in sync with git
# submodules (gitlinks).
git_dependencies = 'SYNC'
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
gclient_gn_args = [
'build_with_chromium',
'checkout_android',
'checkout_android_prebuilts_build_tools',
'checkout_android_native_support',
'checkout_clang_coverage_tools',
'checkout_ios_webkit',
'checkout_nacl',
'checkout_openxr',
'checkout_src_internal',
'cros_boards',
'cros_boards_with_qemu_images',
'generate_location_tags',
]
vars = {
# Variable that can be used to support multiple build scenarios, like having
# Chromium specific targets in a client project's GN file or sync dependencies
# conditionally etc.
'build_with_chromium': True,
# By default, we should check out everything needed to run on the main
# chromium waterfalls. This var can be also be set to "small", in order
# to skip things are not strictly needed to build chromium for development
# purposes, by adding the following line to src.git's .gclient entry:
# "custom_vars": { "checkout_configuration": "small" },
'checkout_configuration': 'default',
# By default, don't check out android. Will be overridden by gclient
# variables.
# TODO(crbug.com/875037): Remove this once the problem in gclient is fixed.
'checkout_android': False,
# By default, don't check out Fuchsia. Will be overridden by gclient
# variables.
# TODO(crbug.com/875037): Remove this once the problem in gclient is fixed.
'checkout_fuchsia': False,
# For code related to internal Fuchsia images.
'checkout_fuchsia_internal': False,
# Fetches the internal Fuchsia SDK boot images, with the images in a
# comma-separated list.
'checkout_fuchsia_internal_images': '',
# Used for downloading the Fuchsia SDK without running hooks.
'checkout_fuchsia_no_hooks': False,
# Pull in Android prebuilts build tools so we can create Java xrefs
'checkout_android_prebuilts_build_tools': False,
# Pull in Android native toolchain dependencies for Chrome OS too, so we can
# build ARC++ support libraries.
'checkout_android_native_support': 'checkout_android or checkout_chromeos',
# By default, do not check out Cast3P.
'checkout_cast3p': False,
# By default, do not check out Chromium autofill captured sites test
# dependencies. These dependencies include very large numbers of very
# large web capture files. Captured sites test dependencies are also
# restricted to Googlers only.
'checkout_chromium_autofill_test_dependencies': False,
# By default, do not check out Chromium password manager captured sites test
# dependencies. These dependencies include very large numbers of very
# large web capture files. Captured sites test dependencies are also
# restricted to Googlers only.
'checkout_chromium_password_manager_test_dependencies': False,
# Checkout fuzz archive. Should not need in builders.
'checkout_clusterfuzz_data': False,
# By default, checkout JavaScript coverage node modules. These packages
# are used to post-process raw v8 coverage reports into IstanbulJS compliant
# output.
'checkout_js_coverage_modules': True,
# Check out and download nacl for ChromeOS only.
# This can be disabled e.g. with custom_vars.
'checkout_nacl': 'checkout_chromeos',
# By default, do not check out src-internal. This can be overridden e.g. with
# custom_vars.
'checkout_src_internal': False,
# Checkout legacy src_internal. This variable is ignored if
# checkout_src_internal is set as false.
'checkout_legacy_src_internal': True,
# For super-internal deps. Set by the official builders.
'checkout_google_internal': False,
# Checkout SODA (Speech On-Device API go/chrome-live-caption)
'checkout_soda': False,
# Fetch the additional packages and files needed to run all of the
# telemetry tests. This is false by default as some stuff is only
# privately accessible.
'checkout_telemetry_dependencies': False,
# Bots that don't consume WPR archives can skip downloading
# them.
'skip_wpr_archives_download': False,
# Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to
# process the raw profiles produced by instrumented targets (built with
# the gn arg 'use_clang_coverage').
'checkout_clang_coverage_tools': False,
# Fetch the pgo profiles to optimize official builds.
'checkout_pgo_profiles': False,
# Fetch clang-tidy into the same bin/ directory as our clang binary.
'checkout_clang_tidy': False,
# Fetch clangd into the same bin/ directory as our clang binary.
'checkout_clangd': False,
# Fetch prebuilt and prepackaged Bazel binary/executable. Bazel is currently
# only needed by `chromium/src/tools/rust/build_crubit.py` and therefore
# shouldn't be used outside of Chromium Rust Experiments project.
# Furthermore note that Bazel is only needed when building Crubit during Rust
# toolchain build (and is *not* needed during regular Chromium builds).
'checkout_bazel': False,
# Fetch Crubit support libraries in order to build ..._rs_api.rs and
# ..._rs_api_impl.cc that are generated by prebuilt (see
# tools/rust/build_crubit.py) Crubit tools during Chromium build (see
# also //build/rust/rs_bindings_from_cc.gni).
'checkout_crubit': False,
# By default checkout the OpenXR loader library only on Windows and Android.
# The OpenXR backend for VR in Chromium is currently only supported for these
# platforms, but support for other platforms may be added in the future.
'checkout_openxr' : 'checkout_win or checkout_android',
'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"',
# By default bot checkouts the WPR archive files only when this
# flag is set True.
'checkout_wpr_archives': False,
# By default, do not check out WebKit for iOS, as it is not needed unless
# running against ToT WebKit rather than system WebKit. This can be overridden
# e.g. with custom_vars.
'checkout_ios_webkit': False,
# Fetches only the SDK boot images that match at least one of the
# entries in a comma-separated list.
#
# Available images:
# Emulation:
# - core.x64-dfv2
# - terminal.x64
# - terminal.qemu-arm64
# - workstation.qemu-x64
# Hardware:
# - workstation_eng.chromebook-x64
# - workstation_eng.chromebook-x64-dfv2
#
# Since the images are hundreds of MB, default to only downloading the image
# most commonly useful for developers. Bots and developers that need to use
# other images can override this with additional images.
'checkout_fuchsia_boot_images': "terminal.x64",
'checkout_fuchsia_product_bundles': '"{checkout_fuchsia_boot_images}" != ""',
# By default, do not check out files required to run fuchsia tests in
# qemu on linux-arm64 machines.
'checkout_fuchsia_for_arm64_host': False,
# Revision of Crubit (trunk on 2022-10-15). This should typically be the
# same as the revision specified in CRUBIT_REVISION in
# tools/rust/update_rust.py. More details and roll instructions can be
# found in tools/rust/README.md.
'crubit_revision': 'f5cbdf4b54b0e6b9f63a4464a2c901c82e0f0209',
# By default, download the fuchsia sdk from the public sdk directory.
'fuchsia_sdk_cipd_prefix': 'fuchsia/sdk/core/',
# By default, download the fuchsia images from the fuchsia GCS bucket.
'fuchsia_images_bucket': 'fuchsia',
# Default to the empty board. Desktop Chrome OS builds don't need cros SDK
# dependencies. Other Chrome OS builds should always define this explicitly.
'cros_boards': Str(''),
'cros_boards_with_qemu_images': Str(''),
# Building for CrOS is only supported on linux currently.
'checkout_simplechrome': '"{cros_boards}" != ""',
'checkout_simplechrome_with_vms': '"{cros_boards_with_qemu_images}" != ""',
# By default, do not check out versions of toolschains and sdks that are
# specifically only needed by Lacros.
'checkout_lacros_sdk': False,
# To update the sdk version:
# 1 Choose a version that's not newer than the Ash side so it's thoroughly
# tested:
# https://chromium-review.googlesource.com/q/%2522Automated+Commit:+LKGM%2522+status:merged
# 2 CL description:
# Lacros SDK: Update version <version>
#
# CQ_INCLUDE_TRYBOTS=luci.chrome.try:lacros-amd64-generic-chrome-skylab
# CQ_INCLUDE_TRYBOTS=luci.chrome.try:lacros-arm-generic-chrome-skylab
'lacros_sdk_version': '15695.0.0',
# Generate location tag metadata to include in tests result data uploaded
# to ResultDB. This isn't needed on some configs and the tool that generates
# the data may not run on them, so we make it possible for this to be
# turned off. Note that you also generate the metadata but not include it
# via a GN build arg (tests_have_location_tags).
'generate_location_tags': True,
# luci-go CIPD package version.
# Make sure the revision is uploaded by infra-packagers builder.
# https://ci.chromium.org/p/infra-internal/g/infra-packagers/console
'luci_go': 'git_revision:1ea45c1829514ff20c476f083462e7b8fdfaf9ae',
# This can be overridden, e.g. with custom_vars, to build clang from HEAD
# instead of downloading the prebuilt pinned revision.
'llvm_force_head_revision': False,
# Fetch Rust toolchain.
'checkout_rust': True,
# Make Dawn skip its standalone dependencies
'dawn_standalone': False,
# Fetch configuration files required for the 'use_remoteexec' gn arg
'download_remoteexec_cfg': False,
# RBE instance to use for running remote builds
'rbe_instance': Str('projects/rbe-chrome-untrusted/instances/default_instance'),
# RBE project to download rewrapper config files for. Only needed if
# different from the project used in 'rbe_instance'
'rewrapper_cfg_project': Str(''),
# reclient CIPD package
'reclient_package': 'infra/rbe/client/',
# reclient CIPD package version
'reclient_version': 're_client_version:0.123.1.b4c22d0-gomaip',
# The path of the sysroots.json file.
# This is used by vendor builds like Electron.
'sysroots_json_path': 'build/linux/sysroot_scripts/sysroots.json',
# siso CIPD package version.
'siso_version': 'git_revision:1ea45c1829514ff20c476f083462e7b8fdfaf9ae',
# download libaom test data
'download_libaom_testdata': False,
'android_git': 'https://android.googlesource.com',
'aomedia_git': 'https://aomedia.googlesource.com',
'boringssl_git': 'https://boringssl.googlesource.com',
'chrome_git': 'https://chrome-internal.googlesource.com',
'chromium_git': 'https://chromium.googlesource.com',
'dawn_git': 'https://dawn.googlesource.com',
'pdfium_git': 'https://pdfium.googlesource.com',
'quiche_git': 'https://quiche.googlesource.com',
'skia_git': 'https://skia.googlesource.com',
'swiftshader_git': 'https://swiftshader.googlesource.com',
'webrtc_git': 'https://webrtc.googlesource.com',
'betocore_git': 'https://beto-core.googlesource.com',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling V8
# and whatever else without interference from each other.
'src_internal_revision': 'e6b6db278f49a0b3bc4bbb04266ce4d77d022df8',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling Skia
# and whatever else without interference from each other.
'skia_revision': '00fc700257885ce98e1cadd750788902d910f0ab',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling V8
# and whatever else without interference from each other.
'v8_revision': 'b74ef6f2cd2fe60c91abcd3271b661547a47ca4f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ANGLE
# and whatever else without interference from each other.
'angle_revision': '4f09451ab4bc2b35c36ea8eb0caba127f4377776',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling SwiftShader
# and whatever else without interference from each other.
'swiftshader_revision': '4befa3ada54ce2fbdadb2383712da70811efe85e',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling PDFium
# and whatever else without interference from each other.
'pdfium_revision': '7388bd02f160a35d06b58e57f6374780fe4bafd3',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling BoringSSL
# and whatever else without interference from each other.
#
# Note this revision should be updated with
# third_party/boringssl/roll_boringssl.py, not roll-dep.
'boringssl_revision': '1b7fdbd9101dedc3e0aa3fcf4ff74eacddb34ecc',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling Fuchsia sdk
# and whatever else without interference from each other.
'fuchsia_version': 'version:16.20231129.1.1',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling google-toolbox-for-mac
# and whatever else without interference from each other.
'google_toolbox_for_mac_revision': '42b12f10cd8342f5cb41a1e3e3a2f13fd9943b0d',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling googletest
# and whatever else without interference from each other.
'googletest_revision': 'af29db7ec28d6df1c7f0f745186884091e602e07',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling lighttpd
# and whatever else without interference from each other.
'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling lss
# and whatever else without interference from each other.
'lss_revision': 'ce877209e11aa69dcfffbd53ef90ea1d07136521',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling NaCl
# and whatever else without interference from each other.
'nacl_revision': 'f9cb132c419b9e019853103e88c518026b9f5083',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling freetype
# and whatever else without interference from each other.
'freetype_revision': '8f255c89e14219ca2489043f699797ee106ec6e9',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling freetype
# and whatever else without interference from each other.
'freetype_testing_revision': '7a69b1a2b028476f840ab7d4a2ffdfe4eb2c389f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling HarfBuzz
# and whatever else without interference from each other.
'harfbuzz_revision': '920c40cd43dd7b10b7ecba3d82a46f5fea88536f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling Emoji Segmenter
# and whatever else without interference from each other.
'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling OTS
# and whatever else without interference from each other.
'ots_revision': '46bea9879127d0ff1c6601b078e2ce98e83fcd33',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling catapult
# and whatever else without interference from each other.
'catapult_revision': '95eabf6f993678df7322d72a7aecfab5ecea9816',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling chromium_variations
# and whatever else without interference from each other.
'chromium_variations_revision': 'ad897218ddcc9335fa824be54053a8b40b2247c5',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling CrossBench
# and whatever else without interference from each other.
'crossbench_revision': '739d5915ad778f3bf3238521fdb677fa5d8186eb',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling libFuzzer
# and whatever else without interference from each other.
'libfuzzer_revision': '758bd21f103a501b362b1ca46fa8fcb692eaa303',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling fuzztest
# and whatever else without interference from each other.
'fuzztest_revision': '9e3dbc646516772c70f7a100be53967323d310cb',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling devtools-frontend
# and whatever else without interference from each other.
'devtools_frontend_revision': '1a0e8dbcc06a90339b858924a7facc6a96ca609b',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling libprotobuf-mutator
# and whatever else without interference from each other.
'libprotobuf-mutator': 'a304ec48dcf15d942607032151f7e9ee504b5dcf',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling android_sdk_build-tools_version
# and whatever else without interference from each other.
'android_sdk_build-tools_version': 'YK9Rzw3fDzMHVzatNN6VlyoD_81amLZpN1AbmkdOd6AC',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling android_sdk_emulator_version
# and whatever else without interference from each other.
'android_sdk_emulator_version': '9lGp8nTUCRRWGMnI_96HcKfzjnxEJKUcfvfwmA3wXNkC',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling android_sdk_platform-tools_version
# and whatever else without interference from each other.
'android_sdk_platform-tools_version': 'HWVsGs2HCKgSVv41FsOcsfJbNcB0UFiNrF6Tc4yRArYC',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling android_sdk_platforms_version
# and whatever else without interference from each other.
'android_sdk_platforms_version': 'u-bhWbTME6u-DjypTgr3ZikCyeAeU6txkR9ET6Uudc8C',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'dawn_revision': 'a598e5ffe1b7806d2d4df4373085687b54bcb42a',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'quiche_revision': '45374cbe5557a6d3da7aa1a43c969314f7b1894e',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other.
'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling libexpat
# and whatever else without interference from each other.
'libexpat_revision': '441f98d02deafd9b090aea568282b28f66a50e36',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling wuffs
# and whatever else without interference from each other.
'wuffs_revision': 'e3f919ccfe3ef542cfc983a82146070258fb57f8',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling libavif
# and whatever else without interference from each other.
'libavif_revision': '286f1b9a66e7f05ac5a32510e4c08ecd03f0ba0f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling libavifinfo
# and whatever else without interference from each other.
'libavifinfo_revision': 'b496868f7c3fd17dfeeecc0364fe37e19edd548a',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling Speedometer v3.0
# and whatever else without interference from each other.
'speedometer_3.0_revision': '5107c739c1b2a008e7293e3b489c4f80a8fb2e01',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling nearby
# and whatever else without interference from each other.
'nearby_revision': '91197f36839fa7241d89b7c589abd5e1eda591ee',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling securemessage
# and whatever else without interference from each other.
'securemessage_revision': 'fa07beb12babc3b25e0c5b1f38c16aa8cb6b8f84',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ukey2
# and whatever else without interference from each other.
'ukey2_revision': '0275885d8e6038c39b8a8ca55e75d1d4d1727f47',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'cros_components_revision': '08200550c59264dfd662a39f6b9f3b551f9cdad4',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'resultdb_version': 'git_revision:ebc74d10fa0d64057daa6f128e89f3672eeeec95',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'libcxxabi_revision': '4cb5c2cefedc025433f81735bacbc0f773fdcd8f',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'libunwind_revision': '278e5fbafc5b1707a5c4d09c3fc351cd4aa1630a',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'clang_format_revision': 'e5337933f2951cacd3aeacd238ce4578163ca0b9',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'highway_revision': '8f20644eca693cfb74aa795b0006b6779c370e7a',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ffmpeg
# and whatever else without interference from each other.
'ffmpeg_revision': '92319178aaea9791d5803619d1279699a724e351',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling beto-core
# and whatever else without interference from each other.
'betocore_revision': '96e6e374c28a01caf35c7fb620eba078aeb655bb',
# If you change this, also update the libc++ revision in
# //buildtools/deps_revisions.gni.
'libcxx_revision': 'caccdb0407e84357ca6490165e88dcad64e47d17',
# GN CIPD package version.
'gn_version': 'git_revision:7367b0df0a0aa25440303998d54045bda73935a5',
# ninja CIPD package version.
# https://chrome-infra-packages.appspot.com/p/infra/3pp/tools/ninja
# This has to stay in sync with the version in src/third_party/ninja/README.chromium.
'ninja_version': 'version:[email protected]',
# 'magic' variable to tell depot_tools that git submodules should be accepted
# but parity with DEPS file is expected.
'SUBMODULE_MIGRATION': 'True',
}
# Only these hosts are allowed for dependencies in this DEPS file.
# If you need to add a new host, contact chrome infrastracture team.
allowed_hosts = [
'android.googlesource.com',
'aomedia.googlesource.com',
'beto-core.googlesource.com',
'boringssl.googlesource.com',
'chrome-infra-packages.appspot.com',
'chrome-internal.googlesource.com',
'chromium.googlesource.com',
'dawn.googlesource.com',
'pdfium.googlesource.com',
'quiche.googlesource.com',
'skia.googlesource.com',
'swiftshader.googlesource.com',
'webrtc.googlesource.com',
]
deps = {
'src/third_party/clang-format/script':
Var('chromium_git') +
'/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@' +
Var('clang_format_revision'),
'src/buildtools/linux64': {
'packages': [
{
'package': 'gn/gn/linux-${{arch}}',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "linux"',
},
'src/buildtools/mac': {
'packages': [
{
'package': 'gn/gn/mac-${{arch}}',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "mac"',
},
'src/buildtools/win': {
'packages': [
{
'package': 'gn/gn/windows-amd64',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "win"',
},
'src/buildtools/reclient': {
'packages': [
{
'package': Var('reclient_package') + '${{platform}}',
'version': Var('reclient_version'),
}
],
'dep_type': 'cipd',
},
# We don't know target_cpu at deps time. At least until there's a universal
# binary of httpd-php, pull both intel and arm versions in DEPS and then pick
# the right one at runtime.
'src/third_party/apache-mac': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/mac-amd64',
'version': 'version:[email protected]',
},
],
'dep_type': 'cipd',
'condition': '(host_os == "mac")',
},
'src/third_party/apache-mac-arm64': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/mac-arm64',
'version': 'version:[email protected]',
},
],
'dep_type': 'cipd',
'condition': '(host_os == "mac")',
},
'src/third_party/apache-linux': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/linux-amd64',
'version': 'version:[email protected]',
},
],
'dep_type': 'cipd',
'condition': '(host_os == "linux")',
},
'src/third_party/apache-windows-arm64': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/windows-arm64',
'version': 'version:[email protected]',
}
],
'dep_type': 'cipd',
'condition': '(host_os == "win")'
},
'src/third_party/aosp_dalvik': {
'packages': [
{
'package': 'chromium/third_party/aosp_dalvik/linux-amd64',
'version': 'version:[email protected]_r24.cr1',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/cronet_android_mainline_clang/linux-amd64': {
'packages': [
{
'package': 'chromium/third_party/cronet_android_mainline_clang/linux-amd64',
'version': 'cOWHyVbQYOA9ATyuUaYmOE6YLer1h1JFFa6KRS3_hjIC',
},
],
'condition': 'checkout_android and host_os == "linux"',
'dep_type': 'cipd',
},
'src/android_webview/tools/cts_archive': {
'packages': [
{
'package': 'chromium/android_webview/tools/cts_archive',
'version': 'akIIr4yAFQwo3j5WYo2PQvy6z8XI51UiwiikPYzI4tUC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/chrome/browser/resources/preinstalled_web_apps/internal': {
'url': Var('chrome_git') + '/chrome/components/default_apps.git' + '@' + '3610b316398d68e3ae89388c03cb8bd8eb30e76a',
'condition': 'checkout_src_internal',
},
'src/chrome/installer/mac/third_party/xz/xz': {
'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7',
'condition': 'checkout_mac',
},
'src/third_party/libc++/src':
Var('chromium_git') +
'/external/github.com/llvm/llvm-project/libcxx.git' + '@' +
Var('libcxx_revision'),
'src/third_party/libc++abi/src':
Var('chromium_git') +
'/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' +
Var('libcxxabi_revision'),
'src/third_party/libunwind/src':
Var('chromium_git') +
'/external/github.com/llvm/llvm-project/libunwind.git' + '@' +
Var('libunwind_revision'),
'src/third_party/updater/chrome_linux64': {
'dep_type': 'cipd',
'condition': 'checkout_linux',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_linux64',
'version': 'JprQGBegsBtPiDQj3wsJwiFtJn222Du_mqAd9ezYu3QC',
},
],
},
'src/third_party/updater/chrome_mac_universal': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_mac_universal',
'version': 'gzutuY-G7u8n5746jgmishm8uWjUR070TXdFc23Ea7YC',
},
],
},
'src/third_party/updater/chrome_mac_universal_prod': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_mac_universal_prod',
'version': 'TdGnw1id-3i9-_MUY_x8gomx5NSrH8moDvvl5hEs3uoC',
},
],
},
'src/third_party/updater/chrome_win_x86': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_win_x86',
'version': 'BxagiWo5rzVep9rPqGaQqt1e_-MBhGaSCYgBrI_aQisC',
},
],
},
'src/third_party/updater/chrome_win_x86_64': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_win_x86_64',
'version': '4R5OznuthRryKbHdx7HjPG8NaJTt59TDBrk0_JUvBfsC',
},
],
},
'src/third_party/updater/chromium_linux64': {
'dep_type': 'cipd',
'condition': 'checkout_linux',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_linux64',
'version': 'bsdBdvBb4SgelDTbFjI5UQY2sebsZ8ROCykY3wrAKo8C',
},
],
},
# A somewhat recent Chromium-branded updater build. (x86_64)
'src/third_party/updater/chromium_mac_amd64': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_mac_amd64',
'version': 'zVv93X5XSClxTR1YejkQuBdSpye7JfPS_h6GcH1N4i4C',
},
],
},
# A somewhat recent Chromium-branded updater build. (ARM64)
'src/third_party/updater/chromium_mac_arm64': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_mac_arm64',
'version': 'Va20qxSst3lq4WfEZlWiwzXCpSo5XbhhuqJXyqzvhF8C',
},
],
},
'src/third_party/updater/chromium_win_x86': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_win_x86',
'version': '73PhAHTSsxwv6MlxgS7f2ZVOIeWabI66t1XuyGAq7k0C',
},
],
},
'src/third_party/updater/chromium_win_x86_64': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_win_x86_64',
'version': 'MKwo9kpC2PHV2xIqkHameH_ha9QZ85MA1imi0wG1_8kC',
},
],
},
'src/chrome/test/data/autofill/captured_sites/artifacts': {
'url': Var('chrome_git') + '/chrome/test/captured_sites/autofill.git' + '@' + '9a414b76bec47648b16aa34bc8db17f38ca79233',
'condition': 'checkout_chromium_autofill_test_dependencies',
},
'src/chrome/test/data/password/captured_sites/artifacts': {
'url': Var('chrome_git') + '/chrome/test/captured_sites/password.git' + '@' + '04b3ea663adf745c52831650e2426b54bc94e65d',
'condition': 'checkout_chromium_password_manager_test_dependencies',
},
'src/chrome/test/data/perf/canvas_bench':
Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732',
'src/chrome/test/data/perf/frame_rate/content':
Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9',
'src/chrome/test/data/safe_browsing/dmg': {
'packages': [
{
'package': 'chromium/chrome/test/data/safe_browsing/dmg',
'version': '03TLfNQgc59nHmyWtYWJfFaUrEW8QDJJzXwm-672m-QC',
},
],
'condition': 'checkout_mac',
'dep_type': 'cipd',
},
'src/chrome/test/data/xr/webvr_info':
Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248',
'src/clank': {
'url': Var('chrome_git') + '/clank/internal/apps.git' + '@' +
'967021bc8c2be509f3f2c5d3551070861965a0e8',
'condition': 'checkout_android and checkout_src_internal',
},
'src/docs/website': {
'url': Var('chromium_git') + '/website.git' + '@' + '9a7921bcf8d78bf5d54086b3ceeb038640a11a37',
},
'src/ios/third_party/earl_grey2/src': {
'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '464fbcd7386d3b93756d92b284c6921d222a5358',
'condition': 'checkout_ios',
},
'src/ios/third_party/edo/src': {
'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '0032cf505f811cba931c3fc1e9f2f01698db1af4',
'condition': 'checkout_ios',
},
'src/ios/third_party/gtx/src': {
'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '0e6d6628c5b4d733dfc8f605ab576dcbb72aeeb9',
'condition': 'checkout_ios',
},
'src/ios/third_party/lottie/src': {
'url': Var('chromium_git') + '/external/github.com/airbnb/lottie-ios.git' + '@' + '4a4367659c0b8576d4a106669ff2ba129026085f',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_components_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '620b89ce724ce4239f8ef2a657d1bbe11bb7347c',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_font_disk_loader_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '93acc021e3034898716028822cb802a3a816be7e',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_internationalization_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '305aa8d276f5137c98c5c1c888efc22e02251ee7',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_roboto_font_loader_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4be05d4676645febc453a6cde7f5adfb1b785dc1',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_sprited_animation_view_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + '8af9adaa182044cf2920dfb620b863669e1aeb7c',
'condition': 'checkout_ios',
},
'src/ios/third_party/material_text_accessibility_ios/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '8cd910c1c8bbae261ae0d7e873ed96c69a386448',
'condition': 'checkout_ios',
},
'src/ios/third_party/motion_interchange_objc/src': {
'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '2f8b548f74c52f71d4c2160715a4ba9c887321dd',
'condition': 'checkout_ios',
},
'src/ios/third_party/motion_animator_objc/src': {
'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '296f529321dd7c59c6284c7ccd85dec978c225cc',
'condition': 'checkout_ios',
},
'src/ios/third_party/motion_transitioning_objc/src': {
'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '1fe4a9d81433c1d43e54b118f29642e9b233907b',
'condition': 'checkout_ios',
},
'src/ios/third_party/ochamcrest/src': {
'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b',
'condition': 'checkout_ios',
},
'src/ios/third_party/webkit/src': {
'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' +
'@' + Var('ios_webkit_revision'),
'condition': 'checkout_ios and checkout_ios_webkit'
},
'src/media/cdm/api':
Var('chromium_git') + '/chromium/cdm.git' + '@' + 'fef0b5aa1bd31efb88dfab804bdbe614f3d54f28',
'src/native_client': {
'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'),
'condition': 'checkout_nacl',
},
'src/net/third_party/quiche/src':
Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'),
'src/tools/luci-go': {
'packages': [
{
'package': 'infra/tools/luci/isolate/${{platform}}',
'version': Var('luci_go'),
},
{
'package': 'infra/tools/luci/swarming/${{platform}}',
'version': Var('luci_go'),
},
],
'dep_type': 'cipd',
},
'src/third_party/accessibility_test_framework': {
'packages': [
{
'package': 'chromium/third_party/accessibility-test-framework',
'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_protobuf/src': {
'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f',
'condition': 'checkout_android',
},
'src/third_party/android_protoc': {
'packages': [
{
'package': 'chromium/third_party/android_protoc',
'version': 'sLsJWojddBL2u8NYwNh6pJsqp_bL1ttmYIlBnhiIQ1QC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_toolchain/ndk': {
'packages': [
{
'package': 'chromium/third_party/android_toolchain/android_toolchain',
'version': 'NSOM616pOQCfRfDAhC72ltgjyUQp9lAWCMzlmgB18dAC',
},
],
'condition': 'checkout_android_native_support',
'dep_type': 'cipd',
},
'src/third_party/android_toolchain_canary/ndk': {
'packages': [
{
'package': 'chromium/third_party/android_toolchain_canary/android_toolchain_canary',
'version': 'soBOaEK-tZV5GhAwchsmh9uarWMa7_WpGAw6eVpEVF0C',
},
],
'condition': 'checkout_android_native_support',
'dep_type': 'cipd',
},
'src/third_party/androidx': {
'packages': [
{
'package': 'chromium/third_party/androidx',
'version': 'x-g09FjON51KJHVJ0fG7l7hKCJ4S3qWKpcHO8rT4hNQC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/androidx_javascriptengine/src': {
'url': Var('chromium_git') + '/aosp/platform/frameworks/support/javascriptengine/javascriptengine/src.git' + '@' + 'dd087a8dd0d118a819092356cf2cd671c56013aa',
'condition': 'checkout_android',
},
'src/third_party/android_system_sdk': {
'packages': [
{