react-native-vision-camera-spoof-detector 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.gitattributes +2 -0
- package/.gitignore +27 -0
- package/CHANGELOG.md +2 -2
- package/CONTRIBUTING.md +2 -2
- package/README.md +442 -443
- package/android/build.gradle +12 -4
- package/android/src/main/cpp/CMakeLists.txt +101 -94
- package/android/src/main/cpp/libyuv/.clang-format +6 -6
- package/android/src/main/cpp/libyuv/.gn +40 -40
- package/android/src/main/cpp/libyuv/.vpython3 +410 -410
- package/android/src/main/cpp/libyuv/AUTHORS +7 -7
- package/android/src/main/cpp/libyuv/Android.bp +202 -202
- package/android/src/main/cpp/libyuv/Android.mk +106 -106
- package/android/src/main/cpp/libyuv/BUILD.gn +490 -490
- package/android/src/main/cpp/libyuv/CM_linux_packages.cmake +70 -70
- package/android/src/main/cpp/libyuv/CMakeLists.txt +259 -252
- package/android/src/main/cpp/libyuv/DEPS +935 -935
- package/android/src/main/cpp/libyuv/DIR_METADATA +3 -3
- package/android/src/main/cpp/libyuv/LICENSE +29 -29
- package/android/src/main/cpp/libyuv/OWNERS +11 -11
- package/android/src/main/cpp/libyuv/PATENTS +23 -23
- package/android/src/main/cpp/libyuv/PRESUBMIT.py +65 -65
- package/android/src/main/cpp/libyuv/README.chromium +11 -11
- package/android/src/main/cpp/libyuv/README.md +19 -19
- package/android/src/main/cpp/libyuv/build_overrides/build.gni +60 -60
- package/android/src/main/cpp/libyuv/build_overrides/gtest.gni +19 -19
- package/android/src/main/cpp/libyuv/build_overrides/partition_alloc.gni +17 -17
- package/android/src/main/cpp/libyuv/codereview.settings +5 -5
- package/android/src/main/cpp/libyuv/docs/deprecated_builds.md +409 -409
- package/android/src/main/cpp/libyuv/docs/environment_variables.md +64 -64
- package/android/src/main/cpp/libyuv/docs/feature_detection.md +108 -108
- package/android/src/main/cpp/libyuv/docs/filtering.md +196 -196
- package/android/src/main/cpp/libyuv/docs/formats.md +208 -208
- package/android/src/main/cpp/libyuv/docs/getting_started.md +296 -296
- package/android/src/main/cpp/libyuv/docs/rotation.md +107 -107
- package/android/src/main/cpp/libyuv/download_vs_toolchain.py +29 -29
- package/android/src/main/cpp/libyuv/include/libyuv/basic_types.h +68 -68
- package/android/src/main/cpp/libyuv/include/libyuv/compare.h +111 -111
- package/android/src/main/cpp/libyuv/include/libyuv/compare_row.h +112 -112
- package/android/src/main/cpp/libyuv/include/libyuv/convert.h +1117 -1117
- package/android/src/main/cpp/libyuv/include/libyuv/convert_argb.h +2335 -2335
- package/android/src/main/cpp/libyuv/include/libyuv/convert_from.h +203 -203
- package/android/src/main/cpp/libyuv/include/libyuv/convert_from_argb.h +394 -394
- package/android/src/main/cpp/libyuv/include/libyuv/cpu_id.h +147 -147
- package/android/src/main/cpp/libyuv/include/libyuv/cpu_support.h +99 -99
- package/android/src/main/cpp/libyuv/include/libyuv/loongson_intrinsics.h +1949 -1949
- package/android/src/main/cpp/libyuv/include/libyuv/mjpeg_decoder.h +195 -195
- package/android/src/main/cpp/libyuv/include/libyuv/planar_functions.h +1131 -1131
- package/android/src/main/cpp/libyuv/include/libyuv/rotate.h +296 -296
- package/android/src/main/cpp/libyuv/include/libyuv/rotate_argb.h +37 -37
- package/android/src/main/cpp/libyuv/include/libyuv/rotate_row.h +265 -265
- package/android/src/main/cpp/libyuv/include/libyuv/row.h +6738 -6738
- package/android/src/main/cpp/libyuv/include/libyuv/row_sve.h +2154 -2154
- package/android/src/main/cpp/libyuv/include/libyuv/scale.h +336 -336
- package/android/src/main/cpp/libyuv/include/libyuv/scale_argb.h +76 -76
- package/android/src/main/cpp/libyuv/include/libyuv/scale_rgb.h +42 -42
- package/android/src/main/cpp/libyuv/include/libyuv/scale_row.h +1726 -1726
- package/android/src/main/cpp/libyuv/include/libyuv/scale_uv.h +51 -51
- package/android/src/main/cpp/libyuv/include/libyuv/version.h +16 -16
- package/android/src/main/cpp/libyuv/include/libyuv/video_common.h +222 -222
- package/android/src/main/cpp/libyuv/include/libyuv.h +33 -33
- package/android/src/main/cpp/libyuv/infra/config/OWNERS +3 -3
- package/android/src/main/cpp/libyuv/infra/config/PRESUBMIT.py +17 -17
- package/android/src/main/cpp/libyuv/infra/config/README.md +2 -2
- package/android/src/main/cpp/libyuv/infra/config/codereview.settings +6 -6
- package/android/src/main/cpp/libyuv/infra/config/commit-queue.cfg +144 -144
- package/android/src/main/cpp/libyuv/infra/config/cr-buildbucket.cfg +1185 -1185
- package/android/src/main/cpp/libyuv/infra/config/luci-logdog.cfg +9 -9
- package/android/src/main/cpp/libyuv/infra/config/luci-milo.cfg +246 -246
- package/android/src/main/cpp/libyuv/infra/config/luci-scheduler.cfg +385 -385
- package/android/src/main/cpp/libyuv/infra/config/main.star +402 -402
- package/android/src/main/cpp/libyuv/infra/config/project.cfg +16 -16
- package/android/src/main/cpp/libyuv/infra/config/realms.cfg +111 -111
- package/android/src/main/cpp/libyuv/libyuv.gni +34 -34
- package/android/src/main/cpp/libyuv/libyuv.gyp +149 -149
- package/android/src/main/cpp/libyuv/libyuv.gypi +87 -87
- package/android/src/main/cpp/libyuv/linux.mk +96 -96
- package/android/src/main/cpp/libyuv/public.mk +13 -13
- package/android/src/main/cpp/libyuv/pylintrc +49 -49
- package/android/src/main/cpp/libyuv/riscv_script/prepare_toolchain_qemu.sh +74 -74
- package/android/src/main/cpp/libyuv/riscv_script/riscv-clang.cmake +56 -56
- package/android/src/main/cpp/libyuv/riscv_script/run_qemu.sh +15 -15
- package/android/src/main/cpp/libyuv/source/compare.cc +435 -435
- package/android/src/main/cpp/libyuv/source/compare_common.cc +74 -74
- package/android/src/main/cpp/libyuv/source/compare_gcc.cc +362 -362
- package/android/src/main/cpp/libyuv/source/compare_neon.cc +96 -96
- package/android/src/main/cpp/libyuv/source/compare_neon64.cc +223 -223
- package/android/src/main/cpp/libyuv/source/compare_win.cc +241 -241
- package/android/src/main/cpp/libyuv/source/convert.cc +4746 -4746
- package/android/src/main/cpp/libyuv/source/convert_argb.cc +9179 -9179
- package/android/src/main/cpp/libyuv/source/convert_from.cc +866 -866
- package/android/src/main/cpp/libyuv/source/convert_from_argb.cc +3671 -3671
- package/android/src/main/cpp/libyuv/source/convert_jpeg.cc +602 -602
- package/android/src/main/cpp/libyuv/source/convert_to_argb.cc +391 -391
- package/android/src/main/cpp/libyuv/source/convert_to_i420.cc +288 -288
- package/android/src/main/cpp/libyuv/source/cpu_id.cc +496 -496
- package/android/src/main/cpp/libyuv/source/mjpeg_decoder.cc +580 -580
- package/android/src/main/cpp/libyuv/source/mjpeg_validate.cc +71 -71
- package/android/src/main/cpp/libyuv/source/planar_functions.cc +5663 -5663
- package/android/src/main/cpp/libyuv/source/rotate.cc +1241 -1241
- package/android/src/main/cpp/libyuv/source/rotate_any.cc +76 -76
- package/android/src/main/cpp/libyuv/source/rotate_argb.cc +259 -259
- package/android/src/main/cpp/libyuv/source/rotate_common.cc +208 -208
- package/android/src/main/cpp/libyuv/source/rotate_gcc.cc +505 -505
- package/android/src/main/cpp/libyuv/source/rotate_lsx.cc +233 -233
- package/android/src/main/cpp/libyuv/source/rotate_neon.cc +219 -219
- package/android/src/main/cpp/libyuv/source/rotate_neon64.cc +273 -273
- package/android/src/main/cpp/libyuv/source/rotate_sme.cc +174 -174
- package/android/src/main/cpp/libyuv/source/rotate_win.cc +253 -253
- package/android/src/main/cpp/libyuv/source/row_any.cc +2519 -2519
- package/android/src/main/cpp/libyuv/source/row_common.cc +4461 -4461
- package/android/src/main/cpp/libyuv/source/row_gcc.cc +9570 -9570
- package/android/src/main/cpp/libyuv/source/row_lasx.cc +2343 -2343
- package/android/src/main/cpp/libyuv/source/row_lsx.cc +3030 -3030
- package/android/src/main/cpp/libyuv/source/row_neon.cc +4026 -4026
- package/android/src/main/cpp/libyuv/source/row_neon64.cc +5617 -5617
- package/android/src/main/cpp/libyuv/source/row_rvv.cc +2599 -2599
- package/android/src/main/cpp/libyuv/source/row_sme.cc +1183 -1183
- package/android/src/main/cpp/libyuv/source/row_sve.cc +1088 -1088
- package/android/src/main/cpp/libyuv/source/row_win.cc +6453 -6453
- package/android/src/main/cpp/libyuv/source/scale.cc +2710 -2710
- package/android/src/main/cpp/libyuv/source/scale_any.cc +991 -991
- package/android/src/main/cpp/libyuv/source/scale_argb.cc +1158 -1158
- package/android/src/main/cpp/libyuv/source/scale_common.cc +1977 -1977
- package/android/src/main/cpp/libyuv/source/scale_gcc.cc +2947 -2947
- package/android/src/main/cpp/libyuv/source/scale_lsx.cc +739 -739
- package/android/src/main/cpp/libyuv/source/scale_neon.cc +1449 -1449
- package/android/src/main/cpp/libyuv/source/scale_neon64.cc +1552 -1552
- package/android/src/main/cpp/libyuv/source/scale_rgb.cc +82 -82
- package/android/src/main/cpp/libyuv/source/scale_rvv.cc +1971 -1971
- package/android/src/main/cpp/libyuv/source/scale_sme.cc +555 -555
- package/android/src/main/cpp/libyuv/source/scale_uv.cc +1159 -1159
- package/android/src/main/cpp/libyuv/source/scale_win.cc +1392 -1392
- package/android/src/main/cpp/libyuv/source/test.sh +35 -35
- package/android/src/main/cpp/libyuv/source/video_common.cc +62 -62
- package/android/src/main/cpp/libyuv/tools_libyuv/OWNERS +4 -4
- package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/roll_deps.py +931 -931
- package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/roll_deps_test.py +164 -164
- package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS +21 -21
- package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.new +13 -13
- package/android/src/main/cpp/libyuv/tools_libyuv/autoroller/unittests/testdata/DEPS.chromium.old +13 -13
- package/android/src/main/cpp/libyuv/tools_libyuv/get_landmines.py +38 -38
- package/android/src/main/cpp/libyuv/tools_libyuv/msan/OWNERS +3 -3
- package/android/src/main/cpp/libyuv/tools_libyuv/msan/blacklist.txt +9 -9
- package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/OWNERS +3 -3
- package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/blacklist.txt +15 -15
- package/android/src/main/cpp/libyuv/tools_libyuv/ubsan/vptr_blacklist.txt +25 -25
- package/android/src/main/cpp/libyuv/unit_test/basictypes_test.cc +43 -43
- package/android/src/main/cpp/libyuv/unit_test/color_test.cc +848 -848
- package/android/src/main/cpp/libyuv/unit_test/compare_test.cc +739 -739
- package/android/src/main/cpp/libyuv/unit_test/convert_argb_test.cc +2867 -2867
- package/android/src/main/cpp/libyuv/unit_test/convert_test.cc +2133 -2133
- package/android/src/main/cpp/libyuv/unit_test/cpu_test.cc +427 -427
- package/android/src/main/cpp/libyuv/unit_test/cpu_thread_test.cc +63 -63
- package/android/src/main/cpp/libyuv/unit_test/math_test.cc +160 -160
- package/android/src/main/cpp/libyuv/unit_test/planar_test.cc +4731 -4731
- package/android/src/main/cpp/libyuv/unit_test/rotate_argb_test.cc +334 -334
- package/android/src/main/cpp/libyuv/unit_test/rotate_test.cc +962 -962
- package/android/src/main/cpp/libyuv/unit_test/scale_argb_test.cc +590 -590
- package/android/src/main/cpp/libyuv/unit_test/scale_plane_test.cc +465 -465
- package/android/src/main/cpp/libyuv/unit_test/scale_rgb_test.cc +280 -280
- package/android/src/main/cpp/libyuv/unit_test/scale_test.cc +1135 -1135
- package/android/src/main/cpp/libyuv/unit_test/scale_uv_test.cc +249 -249
- package/android/src/main/cpp/libyuv/unit_test/testdata/arm_v7.txt +12 -12
- package/android/src/main/cpp/libyuv/unit_test/testdata/mips.txt +7 -7
- package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson2k.txt +5 -5
- package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson3.txt +10 -10
- package/android/src/main/cpp/libyuv/unit_test/testdata/mips_loongson_mmi.txt +7 -7
- package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64.txt +3 -3
- package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv.txt +3 -3
- package/android/src/main/cpp/libyuv/unit_test/testdata/riscv64_rvv_zvfh.txt +3 -3
- package/android/src/main/cpp/libyuv/unit_test/testdata/tegra3.txt +23 -23
- package/android/src/main/cpp/libyuv/unit_test/unit_test.cc +581 -581
- package/android/src/main/cpp/libyuv/unit_test/unit_test.h +232 -232
- package/android/src/main/cpp/libyuv/unit_test/video_common_test.cc +112 -112
- package/android/src/main/cpp/libyuv/util/Makefile +9 -9
- package/android/src/main/cpp/libyuv/util/color.cc +120 -120
- package/android/src/main/cpp/libyuv/util/compare.cc +67 -67
- package/android/src/main/cpp/libyuv/util/cpuid.c +211 -211
- package/android/src/main/cpp/libyuv/util/i444tonv12_eg.cc +27 -27
- package/android/src/main/cpp/libyuv/util/psnr.cc +291 -291
- package/android/src/main/cpp/libyuv/util/psnr.h +47 -47
- package/android/src/main/cpp/libyuv/util/psnr_main.cc +620 -620
- package/android/src/main/cpp/libyuv/util/ssim.cc +364 -364
- package/android/src/main/cpp/libyuv/util/ssim.h +38 -38
- package/android/src/main/cpp/libyuv/util/yuvconstants.c +114 -114
- package/android/src/main/cpp/libyuv/util/yuvconvert.cc +367 -367
- package/android/src/main/cpp/libyuv/winarm.mk +47 -47
- package/package.json +86 -84
- package/android/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/8.9/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/android/.gradle/vcs-1/gc.properties +0 -0
|
@@ -1,935 +1,935 @@
|
|
|
1
|
-
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|
|
2
|
-
gclient_gn_args = [
|
|
3
|
-
'generate_location_tags',
|
|
4
|
-
]
|
|
5
|
-
|
|
6
|
-
vars = {
|
|
7
|
-
'chromium_git': 'https://chromium.googlesource.com',
|
|
8
|
-
'chromium_revision': '68659bfa38fb7a446bff13b59532f4cb301d9bf1',
|
|
9
|
-
'gn_version': 'git_revision:07d3c6f4dc290fae5ca6152ebcb37d6815c411ab',
|
|
10
|
-
# ninja CIPD package version.
|
|
11
|
-
# https://chrome-infra-packages.appspot.com/p/infra/3pp/tools/ninja
|
|
12
|
-
'ninja_version': 'version:3@1.12.1.chromium.4',
|
|
13
|
-
# reclient CIPD package version
|
|
14
|
-
'reclient_version': 're_client_version:0.185.0.db415f21-gomaip',
|
|
15
|
-
# siso CIPD package version.
|
|
16
|
-
'siso_version': 'git_revision:f24720f1320c0b85feea49cb5f1207be7555deee',
|
|
17
|
-
# Fetch configuration files required for the 'use_remoteexec' gn arg
|
|
18
|
-
'download_remoteexec_cfg': False,
|
|
19
|
-
# RBE instance to use for running remote builds
|
|
20
|
-
'rbe_instance': Str('projects/rbe-webrtc-developer/instances/default_instance'),
|
|
21
|
-
# RBE project to download rewrapper config files for. Only needed if
|
|
22
|
-
# different from the project used in 'rbe_instance'
|
|
23
|
-
'rewrapper_cfg_project': Str(''),
|
|
24
|
-
|
|
25
|
-
# Keep the Chromium default of generating location tags.
|
|
26
|
-
'generate_location_tags': True,
|
|
27
|
-
|
|
28
|
-
# By default, download the fuchsia sdk from the public sdk directory.
|
|
29
|
-
'fuchsia_sdk_cipd_prefix': 'fuchsia/sdk/core/',
|
|
30
|
-
'fuchsia_version': 'version:29.20251016.3.1',
|
|
31
|
-
# By default, download the fuchsia images from the fuchsia GCS bucket.
|
|
32
|
-
'fuchsia_images_bucket': 'fuchsia',
|
|
33
|
-
'checkout_fuchsia': False,
|
|
34
|
-
# Since the images are hundreds of MB, default to only downloading the image
|
|
35
|
-
# most commonly useful for developers. Bots and developers that need to use
|
|
36
|
-
# other images can override this with additional images.
|
|
37
|
-
'checkout_fuchsia_boot_images': "terminal.x64",
|
|
38
|
-
'checkout_fuchsia_product_bundles': '"{checkout_fuchsia_boot_images}" != ""',
|
|
39
|
-
|
|
40
|
-
# condition to allowlist deps for non-git-source processing.
|
|
41
|
-
'non_git_source': 'True',
|
|
42
|
-
|
|
43
|
-
'android_sdk_build-tools_version': 'y3EsZLg4bxPmpW0oYsAHylywNyMnIwPS3kh1VbQLAFAC',
|
|
44
|
-
'android_sdk_emulator_version': '9lGp8nTUCRRWGMnI_96HcKfzjnxEJKUcfvfwmA3wXNkC',
|
|
45
|
-
'android_sdk_platform-tools_version': 'qTD9QdBlBf3dyHsN1lJ0RH6AhHxR42Hmg2Ih-Vj4zIEC',
|
|
46
|
-
'android_sdk_platforms_version': '_YHemUrK49JrE7Mctdf5DDNOHu1VKBx_PTcWnZ-cbOAC',
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
deps = {
|
|
50
|
-
'src/build':
|
|
51
|
-
Var('chromium_git') + '/chromium/src/build' + '@' + 'b2e55d8d32cfc78c6d598740ceefc8e6dce00545',
|
|
52
|
-
'src/buildtools':
|
|
53
|
-
Var('chromium_git') + '/chromium/src/buildtools' + '@' + '28a4e2e3dc4dea96027664dd777316c335de1f28',
|
|
54
|
-
'src/testing':
|
|
55
|
-
Var('chromium_git') + '/chromium/src/testing' + '@' + '4c3aba1a9edf0b61f30354e124a0cd99e33ecf6d',
|
|
56
|
-
'src/third_party':
|
|
57
|
-
Var('chromium_git') + '/chromium/src/third_party' + '@' + '1920e63dfd1c6f908d02aa3b61bb6aef8161b29b',
|
|
58
|
-
|
|
59
|
-
'src/buildtools/linux64': {
|
|
60
|
-
'packages': [
|
|
61
|
-
{
|
|
62
|
-
'package': 'gn/gn/linux-${{arch}}',
|
|
63
|
-
'version': Var('gn_version'),
|
|
64
|
-
}
|
|
65
|
-
],
|
|
66
|
-
'dep_type': 'cipd',
|
|
67
|
-
'condition': 'checkout_linux',
|
|
68
|
-
},
|
|
69
|
-
|
|
70
|
-
'src/buildtools/mac': {
|
|
71
|
-
'packages': [
|
|
72
|
-
{
|
|
73
|
-
'package': 'gn/gn/mac-${{arch}}',
|
|
74
|
-
'version': Var('gn_version'),
|
|
75
|
-
}
|
|
76
|
-
],
|
|
77
|
-
'dep_type': 'cipd',
|
|
78
|
-
'condition': 'checkout_mac',
|
|
79
|
-
},
|
|
80
|
-
|
|
81
|
-
'src/buildtools/win': {
|
|
82
|
-
'packages': [
|
|
83
|
-
{
|
|
84
|
-
'package': 'gn/gn/windows-amd64',
|
|
85
|
-
'version': Var('gn_version'),
|
|
86
|
-
}
|
|
87
|
-
],
|
|
88
|
-
'dep_type': 'cipd',
|
|
89
|
-
'condition': 'checkout_win',
|
|
90
|
-
},
|
|
91
|
-
|
|
92
|
-
'src/buildtools/reclient': {
|
|
93
|
-
'packages': [
|
|
94
|
-
{
|
|
95
|
-
'package': 'infra/rbe/client/${{platform}}',
|
|
96
|
-
'version': Var('reclient_version'),
|
|
97
|
-
}
|
|
98
|
-
],
|
|
99
|
-
'dep_type': 'cipd',
|
|
100
|
-
},
|
|
101
|
-
|
|
102
|
-
'src/third_party/catapult':
|
|
103
|
-
Var('chromium_git') + '/catapult.git' + '@' + '1c28f8a288ca1883a3555eaf29a9fc718afaad6e',
|
|
104
|
-
'src/third_party/clang-format/script':
|
|
105
|
-
Var('chromium_git') + '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git' + '@' + 'c2725e0622e1a86d55f14514f2177a39efea4a0e',
|
|
106
|
-
'src/third_party/compiler-rt/src':
|
|
107
|
-
'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt.git@d7392a1ed4ee4eb636db4d38e05905edd3dc7994',
|
|
108
|
-
'src/third_party/colorama/src':
|
|
109
|
-
Var('chromium_git') + '/external/colorama.git' + '@' + '3de9f013df4b470069d03d250224062e8cf15c49',
|
|
110
|
-
'src/third_party/cpu_features/src': {
|
|
111
|
-
'url': Var('chromium_git') + '/external/github.com/google/cpu_features.git' + '@' + '936b9ab5515dead115606559502e3864958f7f6e',
|
|
112
|
-
'condition': 'checkout_android',
|
|
113
|
-
},
|
|
114
|
-
'src/third_party/depot_tools':
|
|
115
|
-
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'ddb97c1c77ee11a8a5d1ab04cffaa9ea5433b45b',
|
|
116
|
-
'third_party/fuchsia-gn-sdk': {
|
|
117
|
-
'url': Var('chromium_git') + '/chromium/src/third_party/fuchsia-gn-sdk.git' + '@' + '0d6902558d92fe3d49ba9a8f638ddea829be595b',
|
|
118
|
-
'condition': 'checkout_fuchsia',
|
|
119
|
-
},
|
|
120
|
-
'src/third_party/googletest/src':
|
|
121
|
-
Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + 'e17e37a1151a47d6e8089f2e9a78921ac022a511',
|
|
122
|
-
'src/third_party/harfbuzz-ng/src':
|
|
123
|
-
Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + '7d936359a27abb2d7cb14ecc102463bb15c11843',
|
|
124
|
-
'src/third_party/instrumented_libs': {
|
|
125
|
-
'url': Var('chromium_git') + '/chromium/third_party/instrumented_libraries.git' + '@' + '69015643b3f68dbd438c010439c59adc52cac808',
|
|
126
|
-
'condition': 'checkout_instrumented_libraries',
|
|
127
|
-
},
|
|
128
|
-
'src/third_party/libc++/src':
|
|
129
|
-
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + '1af2c657e2646fd13cf50f426059b696194fff10',
|
|
130
|
-
'src/third_party/libc++abi/src':
|
|
131
|
-
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + '8e720a3a3ae30fcfffe436aae418c91acacc34d0',
|
|
132
|
-
'src/third_party/llvm-libc/src':
|
|
133
|
-
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libc.git' + '@' + 'b3af9aedd645bb067261301f6cc2151fa01db295',
|
|
134
|
-
|
|
135
|
-
'src/third_party/libunwind/src':
|
|
136
|
-
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + '224761f783e2fb35d5556943e2fecf490fdc3fab',
|
|
137
|
-
'src/third_party/libjpeg_turbo':
|
|
138
|
-
Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e14cbfaa85529d47f9f55b0f104a579c1061f9ad',
|
|
139
|
-
'src/third_party/nasm':
|
|
140
|
-
Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + 'e2c93c34982b286b27ce8b56dd7159e0b90869a2',
|
|
141
|
-
'src/tools':
|
|
142
|
-
Var('chromium_git') + '/chromium/src/tools' + '@' + '6c975b3dc5452046f61bf08e9f442619deae31ef',
|
|
143
|
-
|
|
144
|
-
# libyuv-only dependencies (not present in Chromium).
|
|
145
|
-
'src/third_party/gtest-parallel':
|
|
146
|
-
Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '@' + '1dad0e9f6d82ff994130b529d7d814b40eb32b0e',
|
|
147
|
-
|
|
148
|
-
'src/third_party/lss': {
|
|
149
|
-
'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + '29164a80da4d41134950d76d55199ea33fbb9613',
|
|
150
|
-
'condition': 'checkout_android or checkout_linux',
|
|
151
|
-
},
|
|
152
|
-
|
|
153
|
-
'src/third_party/re2/src':
|
|
154
|
-
Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '61c4644171ee6b480540bf9e569cba06d9090b4b',
|
|
155
|
-
|
|
156
|
-
# Android deps:
|
|
157
|
-
'src/third_party/kotlin_stdlib/cipd': {
|
|
158
|
-
'packages': [
|
|
159
|
-
{
|
|
160
|
-
'package': 'chromium/third_party/kotlin_stdlib',
|
|
161
|
-
'version': 'fb5owI7Lkc_2iMOvOSTFR5l6KH9Ufv9VQ2quZCyG3eQC',
|
|
162
|
-
},
|
|
163
|
-
],
|
|
164
|
-
'condition': 'checkout_android',
|
|
165
|
-
'dep_type': 'cipd',
|
|
166
|
-
},
|
|
167
|
-
|
|
168
|
-
'src/third_party/kotlinc/current': {
|
|
169
|
-
'packages': [
|
|
170
|
-
{
|
|
171
|
-
'package': 'chromium/third_party/kotlinc',
|
|
172
|
-
'version': '_goUeuVtOV_2DBIbshAqBuLckbAOCDbHx3UfMYwHK2cC',
|
|
173
|
-
},
|
|
174
|
-
],
|
|
175
|
-
'condition': 'checkout_android',
|
|
176
|
-
'dep_type': 'cipd',
|
|
177
|
-
},
|
|
178
|
-
|
|
179
|
-
'src/third_party/android_toolchain/ndk': {
|
|
180
|
-
'packages': [
|
|
181
|
-
{
|
|
182
|
-
'package': 'chromium/third_party/android_toolchain/android_toolchain',
|
|
183
|
-
'version': 'KXOia11cm9lVdUdPlbGLu8sCz6Y4ey_HV2s8_8qeqhgC',
|
|
184
|
-
},
|
|
185
|
-
],
|
|
186
|
-
'condition': 'checkout_android',
|
|
187
|
-
'dep_type': 'cipd',
|
|
188
|
-
},
|
|
189
|
-
|
|
190
|
-
'src/third_party/androidx/cipd': {
|
|
191
|
-
'packages': [
|
|
192
|
-
{
|
|
193
|
-
'package': 'chromium/third_party/androidx',
|
|
194
|
-
'version': 'KoJF8n5Z68D_pjbJf-EUw4bnZ5FTSOFKGsfnzTWt6pwC',
|
|
195
|
-
},
|
|
196
|
-
],
|
|
197
|
-
'condition': 'checkout_android and non_git_source',
|
|
198
|
-
'dep_type': 'cipd',
|
|
199
|
-
},
|
|
200
|
-
|
|
201
|
-
'src/third_party/android_support_test_runner': {
|
|
202
|
-
'packages': [
|
|
203
|
-
{
|
|
204
|
-
'package': 'chromium/third_party/android_support_test_runner',
|
|
205
|
-
'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141',
|
|
206
|
-
},
|
|
207
|
-
],
|
|
208
|
-
'condition': 'checkout_android',
|
|
209
|
-
'dep_type': 'cipd',
|
|
210
|
-
},
|
|
211
|
-
|
|
212
|
-
'src/third_party/android_sdk/public': {
|
|
213
|
-
'packages': [
|
|
214
|
-
{
|
|
215
|
-
'package': 'chromium/third_party/android_sdk/public/build-tools/36.0.0',
|
|
216
|
-
'version': Var('android_sdk_build-tools_version'),
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
'package': 'chromium/third_party/android_sdk/public/emulator',
|
|
220
|
-
'version': Var('android_sdk_emulator_version'),
|
|
221
|
-
},
|
|
222
|
-
{
|
|
223
|
-
'package': 'chromium/third_party/android_sdk/public/platform-tools',
|
|
224
|
-
'version': Var('android_sdk_platform-tools_version'),
|
|
225
|
-
},
|
|
226
|
-
{
|
|
227
|
-
'package': 'chromium/third_party/android_sdk/public/platforms/android-36',
|
|
228
|
-
'version': Var('android_sdk_platforms_version'),
|
|
229
|
-
},
|
|
230
|
-
{
|
|
231
|
-
'package': 'chromium/third_party/android_sdk/public/cmdline-tools',
|
|
232
|
-
'version': 'gekOVsZjseS1w9BXAT3FsoW__ByGDJYS9DgqesiwKYoC',
|
|
233
|
-
},
|
|
234
|
-
],
|
|
235
|
-
'condition': 'checkout_android and non_git_source',
|
|
236
|
-
'dep_type': 'cipd',
|
|
237
|
-
},
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
'src/third_party/android_build_tools/aapt2/cipd': {
|
|
241
|
-
'packages': [
|
|
242
|
-
{
|
|
243
|
-
'package': 'chromium/third_party/android_build_tools/aapt2',
|
|
244
|
-
'version': 'XqcH9BN43Trcigbh3gSdKc-5OAI-r7MV7wIs5fRXxFMC',
|
|
245
|
-
},
|
|
246
|
-
],
|
|
247
|
-
'condition': 'checkout_android',
|
|
248
|
-
'dep_type': 'cipd',
|
|
249
|
-
},
|
|
250
|
-
|
|
251
|
-
'src/third_party/ced/src': {
|
|
252
|
-
'url': Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5',
|
|
253
|
-
'condition': 'checkout_android',
|
|
254
|
-
},
|
|
255
|
-
'src/third_party/errorprone/lib': {
|
|
256
|
-
'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7',
|
|
257
|
-
'condition': 'checkout_android',
|
|
258
|
-
},
|
|
259
|
-
'src/third_party/findbugs': {
|
|
260
|
-
'url': Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '4275d9ac8610db6b1bc9a5e887f97e41b33fac67',
|
|
261
|
-
'condition': 'checkout_android',
|
|
262
|
-
},
|
|
263
|
-
'src/third_party/gson': {
|
|
264
|
-
'packages': [
|
|
265
|
-
{
|
|
266
|
-
'package': 'chromium/third_party/gson',
|
|
267
|
-
'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca',
|
|
268
|
-
},
|
|
269
|
-
],
|
|
270
|
-
'condition': 'checkout_android',
|
|
271
|
-
'dep_type': 'cipd',
|
|
272
|
-
},
|
|
273
|
-
|
|
274
|
-
'src/third_party/hamcrest/cipd': {
|
|
275
|
-
'packages': [
|
|
276
|
-
{
|
|
277
|
-
'package': 'chromium/third_party/hamcrest',
|
|
278
|
-
'version': 'dBioOAmFJjqAr_DY7dipbXdVfAxUQwjOBNibMPtX8lQC',
|
|
279
|
-
},
|
|
280
|
-
],
|
|
281
|
-
'condition': 'checkout_android',
|
|
282
|
-
'dep_type': 'cipd',
|
|
283
|
-
},
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
'src/third_party/icu': {
|
|
287
|
-
'url': Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'ff35c4f9df23800935ff9f34203152c6b3c7881e',
|
|
288
|
-
},
|
|
289
|
-
|
|
290
|
-
'src/third_party/icu4j/cipd': {
|
|
291
|
-
'packages': [
|
|
292
|
-
{
|
|
293
|
-
'package': 'chromium/third_party/icu4j',
|
|
294
|
-
'version': '8dV7WRVX0tTaNNqkLEnCA_dMofr2MJXFK400E7gOFygC',
|
|
295
|
-
},
|
|
296
|
-
],
|
|
297
|
-
'condition': 'checkout_android',
|
|
298
|
-
'dep_type': 'cipd',
|
|
299
|
-
},
|
|
300
|
-
|
|
301
|
-
'src/third_party/intellij': {
|
|
302
|
-
'packages': [
|
|
303
|
-
{
|
|
304
|
-
'package': 'chromium/third_party/intellij',
|
|
305
|
-
'version': '77c2721b024b36ee073402c08e6d8428c0295336',
|
|
306
|
-
},
|
|
307
|
-
],
|
|
308
|
-
'condition': 'checkout_android',
|
|
309
|
-
'dep_type': 'cipd',
|
|
310
|
-
},
|
|
311
|
-
'src/third_party/jdk/current': {
|
|
312
|
-
'packages': [
|
|
313
|
-
{
|
|
314
|
-
'package': 'chromium/third_party/jdk/linux-amd64',
|
|
315
|
-
'version': '2iiuF-nKDH3moTImx2op4WTRetbfhzKoZhH7Xo44zGsC',
|
|
316
|
-
},
|
|
317
|
-
],
|
|
318
|
-
# Needed on Linux for use on chromium_presubmit (for checkstyle).
|
|
319
|
-
'condition': '(checkout_android or checkout_linux) and non_git_source',
|
|
320
|
-
'dep_type': 'cipd',
|
|
321
|
-
},
|
|
322
|
-
'src/third_party/jsr-305/src': {
|
|
323
|
-
'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
|
|
324
|
-
'condition': 'checkout_android',
|
|
325
|
-
},
|
|
326
|
-
'src/third_party/junit/src': {
|
|
327
|
-
'url': Var('chromium_git') + '/external/junit.git' + '@' + '0eb5ce72848d730da5bd6d42902fdd6a8a42055d',
|
|
328
|
-
'condition': 'checkout_android',
|
|
329
|
-
},
|
|
330
|
-
'src/third_party/libunwindstack': {
|
|
331
|
-
'url': Var('chromium_git') + '/chromium/src/third_party/libunwindstack.git' + '@' + '0928ad0d25e4af07c8be5ab06d0ca584f9f4ceb5',
|
|
332
|
-
'condition': 'checkout_android',
|
|
333
|
-
},
|
|
334
|
-
'src/third_party/ninja': {
|
|
335
|
-
'packages': [
|
|
336
|
-
{
|
|
337
|
-
'package': 'infra/3pp/tools/ninja/${{platform}}',
|
|
338
|
-
'version': Var('ninja_version'),
|
|
339
|
-
}
|
|
340
|
-
],
|
|
341
|
-
'dep_type': 'cipd',
|
|
342
|
-
},
|
|
343
|
-
'src/third_party/siso/cipd': {
|
|
344
|
-
'packages': [
|
|
345
|
-
{
|
|
346
|
-
'package': 'build/siso/${{platform}}',
|
|
347
|
-
'version': Var('siso_version'),
|
|
348
|
-
}
|
|
349
|
-
],
|
|
350
|
-
'dep_type': 'cipd',
|
|
351
|
-
},
|
|
352
|
-
'src/third_party/mockito/src': {
|
|
353
|
-
'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '7c3641bcef717ffa7d765f2c86b847d0aab1aac9',
|
|
354
|
-
'condition': 'checkout_android',
|
|
355
|
-
},
|
|
356
|
-
'src/third_party/ow2_asm': {
|
|
357
|
-
'packages': [
|
|
358
|
-
{
|
|
359
|
-
'package': 'chromium/third_party/ow2_asm',
|
|
360
|
-
'version': 'NNAhdJzMdnutUVqfSJm5v0tVazA9l3Dd6CRwH6N4Q5kC',
|
|
361
|
-
},
|
|
362
|
-
],
|
|
363
|
-
'condition': 'checkout_android',
|
|
364
|
-
'dep_type': 'cipd',
|
|
365
|
-
},
|
|
366
|
-
|
|
367
|
-
'src/third_party/r8/cipd': {
|
|
368
|
-
'packages': [
|
|
369
|
-
{
|
|
370
|
-
'package': 'chromium/third_party/r8',
|
|
371
|
-
'version': 'AYeAI5FH_WyqBwnhCmq8W1k-pGRyIkxmRN7PbMErE7EC',
|
|
372
|
-
},
|
|
373
|
-
],
|
|
374
|
-
'condition': 'checkout_android',
|
|
375
|
-
'dep_type': 'cipd',
|
|
376
|
-
},
|
|
377
|
-
# This duplication is intentional, so we avoid updating the r8.jar used by
|
|
378
|
-
# dexing unless necessary, since each update invalidates all incremental
|
|
379
|
-
# dexing and unnecessarily slows down all bots.
|
|
380
|
-
'src/third_party/r8/d8/cipd': {
|
|
381
|
-
'packages': [
|
|
382
|
-
{
|
|
383
|
-
'package': 'chromium/third_party/r8',
|
|
384
|
-
'version': '2aBDG942g42qUBPPInGETRHusdxru1U3anwJI_QX5wIC',
|
|
385
|
-
},
|
|
386
|
-
],
|
|
387
|
-
'condition': 'checkout_android',
|
|
388
|
-
'dep_type': 'cipd',
|
|
389
|
-
},
|
|
390
|
-
'src/third_party/proguard': {
|
|
391
|
-
'packages': [
|
|
392
|
-
{
|
|
393
|
-
'package': 'chromium/third_party/proguard',
|
|
394
|
-
'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC',
|
|
395
|
-
},
|
|
396
|
-
],
|
|
397
|
-
'condition': 'checkout_android',
|
|
398
|
-
'dep_type': 'cipd',
|
|
399
|
-
},
|
|
400
|
-
'src/third_party/requests/src': {
|
|
401
|
-
'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'c7e0fc087ceeadb8b4c84a0953a422c474093d6d',
|
|
402
|
-
'condition': 'checkout_android',
|
|
403
|
-
},
|
|
404
|
-
|
|
405
|
-
'src/third_party/robolectric/cipd': {
|
|
406
|
-
'packages': [
|
|
407
|
-
{
|
|
408
|
-
'package': 'chromium/third_party/robolectric',
|
|
409
|
-
'version': 'dr-aJxRAPYDTBJXnjfht-bdxyywD6BP1lrcjZZPnRG0C',
|
|
410
|
-
},
|
|
411
|
-
],
|
|
412
|
-
'condition': 'checkout_android',
|
|
413
|
-
'dep_type': 'cipd',
|
|
414
|
-
},
|
|
415
|
-
|
|
416
|
-
'src/third_party/sqlite4java/cipd': {
|
|
417
|
-
'packages': [
|
|
418
|
-
{
|
|
419
|
-
'package': 'chromium/third_party/sqlite4java',
|
|
420
|
-
'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC',
|
|
421
|
-
},
|
|
422
|
-
],
|
|
423
|
-
'condition': 'checkout_android',
|
|
424
|
-
'dep_type': 'cipd',
|
|
425
|
-
},
|
|
426
|
-
'src/third_party/turbine/cipd': {
|
|
427
|
-
'packages': [
|
|
428
|
-
{
|
|
429
|
-
'package': 'chromium/third_party/turbine',
|
|
430
|
-
'version': 'EHj3lVL72PrpZUDnsWnaS5rdJuF5o1QYrJ7CUhO3MIEC',
|
|
431
|
-
},
|
|
432
|
-
],
|
|
433
|
-
'condition': 'checkout_android',
|
|
434
|
-
'dep_type': 'cipd',
|
|
435
|
-
},
|
|
436
|
-
'src/third_party/ub-uiautomator/lib': {
|
|
437
|
-
'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
|
|
438
|
-
'condition': 'checkout_android',
|
|
439
|
-
},
|
|
440
|
-
|
|
441
|
-
# iOS deps:
|
|
442
|
-
'src/ios': {
|
|
443
|
-
'url': Var('chromium_git') + '/chromium/src/ios' + '@' + '82e655421ce38fb3cb25f19c67572c0907fd722f',
|
|
444
|
-
'condition': 'checkout_ios'
|
|
445
|
-
},
|
|
446
|
-
|
|
447
|
-
'src/third_party/llvm-build/Release+Asserts': {
|
|
448
|
-
'dep_type': 'gcs',
|
|
449
|
-
'bucket': 'chromium-browser-clang',
|
|
450
|
-
'objects': [
|
|
451
|
-
{
|
|
452
|
-
# The Android libclang_rt.builtins libraries are currently only included in the Linux clang package.
|
|
453
|
-
'object_name': 'Linux_x64/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
454
|
-
'sha256sum': 'f6a487ffd0e56ba7a39b063d85d1f8ff7846514f50635785730cffb7368872ce',
|
|
455
|
-
'size_bytes': 55669844,
|
|
456
|
-
'generation': 1759771493989631,
|
|
457
|
-
'condition': 'host_os == "linux" or checkout_android',
|
|
458
|
-
},
|
|
459
|
-
{
|
|
460
|
-
'object_name': 'Linux_x64/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
461
|
-
'sha256sum': 'fd644634db56977b072d951f26571ac41c9c298bf5989e99efeb150ee8427364',
|
|
462
|
-
'size_bytes': 5666140,
|
|
463
|
-
'generation': 1759771494159187,
|
|
464
|
-
'condition': '((checkout_linux or checkout_mac or checkout_android) and host_os == "linux")',
|
|
465
|
-
},
|
|
466
|
-
{
|
|
467
|
-
'object_name': 'Mac/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
468
|
-
'sha256sum': '44811b6ed6868142c088807f6bcc0d08811a7b11d3f2bc2124c45868037e8cc3',
|
|
469
|
-
'size_bytes': 53583464,
|
|
470
|
-
'generation': 1759771495565305,
|
|
471
|
-
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
472
|
-
},
|
|
473
|
-
{
|
|
474
|
-
'object_name': 'Mac/clang-mac-runtime-library-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
475
|
-
'sha256sum': '8a2e16410bede5d52c77a012f182dde2350b05e647f7c1acaf7823ce816b4422',
|
|
476
|
-
'size_bytes': 1005144,
|
|
477
|
-
'generation': 1759771503758969,
|
|
478
|
-
'condition': 'checkout_mac and not host_os == "mac"',
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
'object_name': 'Mac/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
482
|
-
'sha256sum': 'a10d075e19e7b614ffd8c5a65f04fbd45011ec74c735dda89f0b3780ab397329',
|
|
483
|
-
'size_bytes': 5567160,
|
|
484
|
-
'generation': 1759771495741126,
|
|
485
|
-
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
486
|
-
},
|
|
487
|
-
{
|
|
488
|
-
'object_name': 'Mac_arm64/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
489
|
-
'sha256sum': 'c97e4f62cdd77edf725ccbf4cd63b589302605bf643c871f83214f39e629b2ea',
|
|
490
|
-
'size_bytes': 44593804,
|
|
491
|
-
'generation': 1759771504972271,
|
|
492
|
-
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
493
|
-
},
|
|
494
|
-
{
|
|
495
|
-
'object_name': 'Mac_arm64/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
496
|
-
'sha256sum': '7aa959752d6beafc74129e4822912021f855584e55a55600044f1d42b889f8b0',
|
|
497
|
-
'size_bytes': 5292960,
|
|
498
|
-
'generation': 1759771505201957,
|
|
499
|
-
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
'object_name': 'Win/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
503
|
-
'sha256sum': 'fc756186dea61e700bd0f885b585050d9356bbd7f942dafae25d38eef4671adf',
|
|
504
|
-
'size_bytes': 47657436,
|
|
505
|
-
'generation': 1759771514781908,
|
|
506
|
-
'condition': 'host_os == "win"',
|
|
507
|
-
},
|
|
508
|
-
{
|
|
509
|
-
'object_name': 'Win/clang-win-runtime-library-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
510
|
-
'sha256sum': '0a426702c9e0f92ea27f9611a1665cc5df9a58820360d3fa6a4026b9a0e5120f',
|
|
511
|
-
'size_bytes': 2501292,
|
|
512
|
-
'generation': 1759771523074183,
|
|
513
|
-
'condition': 'checkout_win and not host_os == "win"',
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
'object_name': 'Win/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
517
|
-
'sha256sum': '94c068f109e220e028a38f5beced7d6acd67725fc0b1da9fa8ed1b959f12d799',
|
|
518
|
-
'size_bytes': 5673824,
|
|
519
|
-
'generation': 1759771514962844,
|
|
520
|
-
'condition': '(checkout_linux or checkout_mac or checkout_android) and host_os == "win"',
|
|
521
|
-
},
|
|
522
|
-
]
|
|
523
|
-
},
|
|
524
|
-
|
|
525
|
-
# Everything coming after this is automatically updated by the auto-roller.
|
|
526
|
-
# === ANDROID_DEPS Generated Code Start ===
|
|
527
|
-
# Generated by //third_party/android_deps/fetch_all.py
|
|
528
|
-
'src/third_party/android_deps/cipd/libs/com_android_support_support_annotations': {
|
|
529
|
-
'packages': [
|
|
530
|
-
{
|
|
531
|
-
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations',
|
|
532
|
-
'version': 'version:2@28.0.0.cr2',
|
|
533
|
-
},
|
|
534
|
-
],
|
|
535
|
-
'condition': 'checkout_android and non_git_source',
|
|
536
|
-
'dep_type': 'cipd',
|
|
537
|
-
},
|
|
538
|
-
|
|
539
|
-
'src/third_party/android_deps/cipd/libs/com_android_tools_common': {
|
|
540
|
-
'packages': [
|
|
541
|
-
{
|
|
542
|
-
'package': 'chromium/third_party/android_deps/libs/com_android_tools_common',
|
|
543
|
-
'version': 'version:2@30.2.0-beta01.cr2',
|
|
544
|
-
},
|
|
545
|
-
],
|
|
546
|
-
'condition': 'checkout_android and non_git_source',
|
|
547
|
-
'dep_type': 'cipd',
|
|
548
|
-
},
|
|
549
|
-
|
|
550
|
-
'src/third_party/android_deps/cipd/libs/com_android_tools_layoutlib_layoutlib_api': {
|
|
551
|
-
'packages': [
|
|
552
|
-
{
|
|
553
|
-
'package': 'chromium/third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api',
|
|
554
|
-
'version': 'version:2@30.2.0-beta01.cr2',
|
|
555
|
-
},
|
|
556
|
-
],
|
|
557
|
-
'condition': 'checkout_android and non_git_source',
|
|
558
|
-
'dep_type': 'cipd',
|
|
559
|
-
},
|
|
560
|
-
|
|
561
|
-
'src/third_party/android_deps/cipd/libs/com_android_tools_sdk_common': {
|
|
562
|
-
'packages': [
|
|
563
|
-
{
|
|
564
|
-
'package': 'chromium/third_party/android_deps/libs/com_android_tools_sdk_common',
|
|
565
|
-
'version': 'version:2@30.2.0-beta01.cr2',
|
|
566
|
-
},
|
|
567
|
-
],
|
|
568
|
-
'condition': 'checkout_android and non_git_source',
|
|
569
|
-
'dep_type': 'cipd',
|
|
570
|
-
},
|
|
571
|
-
|
|
572
|
-
'src/third_party/android_deps/cipd/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework': {
|
|
573
|
-
'packages': [
|
|
574
|
-
{
|
|
575
|
-
'package': 'chromium/third_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework',
|
|
576
|
-
'version': 'version:2@4.0.0.cr2',
|
|
577
|
-
},
|
|
578
|
-
],
|
|
579
|
-
'condition': 'checkout_android and non_git_source',
|
|
580
|
-
'dep_type': 'cipd',
|
|
581
|
-
},
|
|
582
|
-
|
|
583
|
-
'src/third_party/android_deps/cipd/libs/com_googlecode_java_diff_utils_diffutils': {
|
|
584
|
-
'packages': [
|
|
585
|
-
{
|
|
586
|
-
'package': 'chromium/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils',
|
|
587
|
-
'version': 'version:2@1.3.0.cr2',
|
|
588
|
-
},
|
|
589
|
-
],
|
|
590
|
-
'condition': 'checkout_android and non_git_source',
|
|
591
|
-
'dep_type': 'cipd',
|
|
592
|
-
},
|
|
593
|
-
|
|
594
|
-
'src/third_party/android_deps/cipd/libs/com_squareup_javapoet': {
|
|
595
|
-
'packages': [
|
|
596
|
-
{
|
|
597
|
-
'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet',
|
|
598
|
-
'version': 'version:2@1.13.0.cr2',
|
|
599
|
-
},
|
|
600
|
-
],
|
|
601
|
-
'condition': 'checkout_android and non_git_source',
|
|
602
|
-
'dep_type': 'cipd',
|
|
603
|
-
},
|
|
604
|
-
|
|
605
|
-
'src/third_party/android_deps/cipd/libs/net_bytebuddy_byte_buddy': {
|
|
606
|
-
'packages': [
|
|
607
|
-
{
|
|
608
|
-
'package': 'chromium/third_party/android_deps/libs/net_bytebuddy_byte_buddy',
|
|
609
|
-
'version': 'version:2@1.17.6.cr2',
|
|
610
|
-
},
|
|
611
|
-
],
|
|
612
|
-
'condition': 'checkout_android and non_git_source',
|
|
613
|
-
'dep_type': 'cipd',
|
|
614
|
-
},
|
|
615
|
-
|
|
616
|
-
'src/third_party/android_deps/cipd/libs/net_bytebuddy_byte_buddy_agent': {
|
|
617
|
-
'packages': [
|
|
618
|
-
{
|
|
619
|
-
'package': 'chromium/third_party/android_deps/libs/net_bytebuddy_byte_buddy_agent',
|
|
620
|
-
'version': 'version:2@1.17.6.cr2',
|
|
621
|
-
},
|
|
622
|
-
],
|
|
623
|
-
'condition': 'checkout_android and non_git_source',
|
|
624
|
-
'dep_type': 'cipd',
|
|
625
|
-
},
|
|
626
|
-
|
|
627
|
-
'src/third_party/android_deps/cipd/libs/org_ccil_cowan_tagsoup_tagsoup': {
|
|
628
|
-
'packages': [
|
|
629
|
-
{
|
|
630
|
-
'package': 'chromium/third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup',
|
|
631
|
-
'version': 'version:2@1.2.1.cr2',
|
|
632
|
-
},
|
|
633
|
-
],
|
|
634
|
-
'condition': 'checkout_android and non_git_source',
|
|
635
|
-
'dep_type': 'cipd',
|
|
636
|
-
},
|
|
637
|
-
|
|
638
|
-
'src/third_party/android_deps/cipd/libs/org_checkerframework_checker_compat_qual': {
|
|
639
|
-
'packages': [
|
|
640
|
-
{
|
|
641
|
-
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual',
|
|
642
|
-
'version': 'version:2@2.5.5.cr2',
|
|
643
|
-
},
|
|
644
|
-
],
|
|
645
|
-
'condition': 'checkout_android and non_git_source',
|
|
646
|
-
'dep_type': 'cipd',
|
|
647
|
-
},
|
|
648
|
-
|
|
649
|
-
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlin_kotlin_android_extensions_runtime': {
|
|
650
|
-
'packages': [
|
|
651
|
-
{
|
|
652
|
-
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_android_extensions_runtime',
|
|
653
|
-
'version': 'version:2@1.9.22.cr2',
|
|
654
|
-
},
|
|
655
|
-
],
|
|
656
|
-
'condition': 'checkout_android and non_git_source',
|
|
657
|
-
'dep_type': 'cipd',
|
|
658
|
-
},
|
|
659
|
-
|
|
660
|
-
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlin_kotlin_parcelize_runtime': {
|
|
661
|
-
'packages': [
|
|
662
|
-
{
|
|
663
|
-
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_parcelize_runtime',
|
|
664
|
-
'version': 'version:2@1.9.22.cr2',
|
|
665
|
-
},
|
|
666
|
-
],
|
|
667
|
-
'condition': 'checkout_android and non_git_source',
|
|
668
|
-
'dep_type': 'cipd',
|
|
669
|
-
},
|
|
670
|
-
|
|
671
|
-
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlinx_atomicfu_jvm': {
|
|
672
|
-
'packages': [
|
|
673
|
-
{
|
|
674
|
-
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_atomicfu_jvm',
|
|
675
|
-
'version': 'version:2@0.23.2.cr2',
|
|
676
|
-
},
|
|
677
|
-
],
|
|
678
|
-
'condition': 'checkout_android and non_git_source',
|
|
679
|
-
'dep_type': 'cipd',
|
|
680
|
-
},
|
|
681
|
-
|
|
682
|
-
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlinx_kotlinx_coroutines_guava': {
|
|
683
|
-
'packages': [
|
|
684
|
-
{
|
|
685
|
-
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_guava',
|
|
686
|
-
'version': 'version:2@1.8.1.cr2',
|
|
687
|
-
},
|
|
688
|
-
],
|
|
689
|
-
'condition': 'checkout_android and non_git_source',
|
|
690
|
-
'dep_type': 'cipd',
|
|
691
|
-
},
|
|
692
|
-
|
|
693
|
-
'src/third_party/android_deps/cipd/libs/org_jsoup_jsoup': {
|
|
694
|
-
'packages': [
|
|
695
|
-
{
|
|
696
|
-
'package': 'chromium/third_party/android_deps/libs/org_jsoup_jsoup',
|
|
697
|
-
'version': 'version:2@1.15.1.cr2',
|
|
698
|
-
},
|
|
699
|
-
],
|
|
700
|
-
'condition': 'checkout_android and non_git_source',
|
|
701
|
-
'dep_type': 'cipd',
|
|
702
|
-
},
|
|
703
|
-
|
|
704
|
-
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_android': {
|
|
705
|
-
'packages': [
|
|
706
|
-
{
|
|
707
|
-
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_android',
|
|
708
|
-
'version': 'version:2@5.19.0.cr2',
|
|
709
|
-
},
|
|
710
|
-
],
|
|
711
|
-
'condition': 'checkout_android and non_git_source',
|
|
712
|
-
'dep_type': 'cipd',
|
|
713
|
-
},
|
|
714
|
-
|
|
715
|
-
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_core': {
|
|
716
|
-
'packages': [
|
|
717
|
-
{
|
|
718
|
-
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_core',
|
|
719
|
-
'version': 'version:2@5.19.0.cr2',
|
|
720
|
-
},
|
|
721
|
-
],
|
|
722
|
-
'condition': 'checkout_android and non_git_source',
|
|
723
|
-
'dep_type': 'cipd',
|
|
724
|
-
},
|
|
725
|
-
|
|
726
|
-
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_subclass': {
|
|
727
|
-
'packages': [
|
|
728
|
-
{
|
|
729
|
-
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_subclass',
|
|
730
|
-
'version': 'version:2@5.19.0.cr2',
|
|
731
|
-
},
|
|
732
|
-
],
|
|
733
|
-
'condition': 'checkout_android and non_git_source',
|
|
734
|
-
'dep_type': 'cipd',
|
|
735
|
-
},
|
|
736
|
-
|
|
737
|
-
'src/third_party/android_deps/cipd/libs/org_objenesis_objenesis': {
|
|
738
|
-
'packages': [
|
|
739
|
-
{
|
|
740
|
-
'package': 'chromium/third_party/android_deps/libs/org_objenesis_objenesis',
|
|
741
|
-
'version': 'version:2@3.3.cr2',
|
|
742
|
-
},
|
|
743
|
-
],
|
|
744
|
-
'condition': 'checkout_android and non_git_source',
|
|
745
|
-
'dep_type': 'cipd',
|
|
746
|
-
},
|
|
747
|
-
|
|
748
|
-
# === ANDROID_DEPS Generated Code End ===
|
|
749
|
-
}
|
|
750
|
-
|
|
751
|
-
hooks = [
|
|
752
|
-
{
|
|
753
|
-
# This clobbers when necessary (based on get_landmines.py). It should be
|
|
754
|
-
# an early hook but it will need to be run after syncing Chromium and
|
|
755
|
-
# setting up the links, so the script actually exists.
|
|
756
|
-
'name': 'landmines',
|
|
757
|
-
'pattern': '.',
|
|
758
|
-
'action': [
|
|
759
|
-
'python3',
|
|
760
|
-
'src/build/landmines.py',
|
|
761
|
-
'--landmine-scripts',
|
|
762
|
-
'src/tools_libyuv/get_landmines.py',
|
|
763
|
-
'--src-dir',
|
|
764
|
-
'src',
|
|
765
|
-
],
|
|
766
|
-
},
|
|
767
|
-
# Downloads the current stable linux sysroot to build/linux/ if needed.
|
|
768
|
-
{
|
|
769
|
-
'name': 'sysroot_arm',
|
|
770
|
-
'pattern': '.',
|
|
771
|
-
'condition': 'checkout_linux and checkout_arm',
|
|
772
|
-
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
773
|
-
'--arch=arm'],
|
|
774
|
-
},
|
|
775
|
-
{
|
|
776
|
-
'name': 'sysroot_arm64',
|
|
777
|
-
'pattern': '.',
|
|
778
|
-
'condition': 'checkout_linux and checkout_arm64',
|
|
779
|
-
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
780
|
-
'--arch=arm64'],
|
|
781
|
-
},
|
|
782
|
-
{
|
|
783
|
-
'name': 'sysroot_x86',
|
|
784
|
-
'pattern': '.',
|
|
785
|
-
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
|
786
|
-
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
787
|
-
'--arch=x86'],
|
|
788
|
-
},
|
|
789
|
-
{
|
|
790
|
-
'name': 'sysroot_x64',
|
|
791
|
-
'pattern': '.',
|
|
792
|
-
'condition': 'checkout_linux and checkout_x64',
|
|
793
|
-
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
794
|
-
'--arch=x64'],
|
|
795
|
-
},
|
|
796
|
-
{
|
|
797
|
-
# Update the Windows toolchain if necessary.
|
|
798
|
-
'name': 'win_toolchain',
|
|
799
|
-
'pattern': '.',
|
|
800
|
-
'action': ['python3', 'src/build/vs_toolchain.py', 'update'],
|
|
801
|
-
},
|
|
802
|
-
{
|
|
803
|
-
# Update the Mac toolchain if necessary.
|
|
804
|
-
'name': 'mac_toolchain',
|
|
805
|
-
'pattern': '.',
|
|
806
|
-
'action': ['python3', 'src/build/mac_toolchain.py'],
|
|
807
|
-
'condition': 'checkout_mac',
|
|
808
|
-
},
|
|
809
|
-
{
|
|
810
|
-
'name': 'Download Fuchsia SDK from GCS',
|
|
811
|
-
'pattern': '.',
|
|
812
|
-
'condition': 'checkout_fuchsia',
|
|
813
|
-
'action': [
|
|
814
|
-
'python3',
|
|
815
|
-
'src/build/fuchsia/update_sdk.py',
|
|
816
|
-
'--cipd-prefix={fuchsia_sdk_cipd_prefix}',
|
|
817
|
-
'--version={fuchsia_version}',
|
|
818
|
-
],
|
|
819
|
-
},
|
|
820
|
-
{
|
|
821
|
-
'name': 'Download Fuchsia system images',
|
|
822
|
-
'pattern': '.',
|
|
823
|
-
'condition': 'checkout_fuchsia and checkout_fuchsia_product_bundles',
|
|
824
|
-
'action': [
|
|
825
|
-
'python3',
|
|
826
|
-
'src/build/fuchsia/update_product_bundles.py',
|
|
827
|
-
'{checkout_fuchsia_boot_images}',
|
|
828
|
-
],
|
|
829
|
-
},
|
|
830
|
-
{
|
|
831
|
-
# Update LASTCHANGE.
|
|
832
|
-
'name': 'lastchange',
|
|
833
|
-
'pattern': '.',
|
|
834
|
-
'action': ['python3', 'src/build/util/lastchange.py',
|
|
835
|
-
'-o', 'src/build/util/LASTCHANGE'],
|
|
836
|
-
},
|
|
837
|
-
# Pull luci-go binaries (isolate, swarming) using checked-in hashes.
|
|
838
|
-
{
|
|
839
|
-
'name': 'luci-go_win',
|
|
840
|
-
'pattern': '.',
|
|
841
|
-
'action': [ 'download_from_google_storage',
|
|
842
|
-
'--no_resume',
|
|
843
|
-
'--platform=win32',
|
|
844
|
-
'--bucket', 'chromium-luci',
|
|
845
|
-
'-d', 'src/tools/luci-go/win64',
|
|
846
|
-
],
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
'name': 'luci-go_mac',
|
|
850
|
-
'pattern': '.',
|
|
851
|
-
'action': [ 'download_from_google_storage',
|
|
852
|
-
'--no_resume',
|
|
853
|
-
'--platform=darwin',
|
|
854
|
-
'--bucket', 'chromium-luci',
|
|
855
|
-
'-d', 'src/tools/luci-go/mac64',
|
|
856
|
-
],
|
|
857
|
-
},
|
|
858
|
-
{
|
|
859
|
-
'name': 'luci-go_linux',
|
|
860
|
-
'pattern': '.',
|
|
861
|
-
'action': [ 'download_from_google_storage',
|
|
862
|
-
'--no_resume',
|
|
863
|
-
'--platform=linux*',
|
|
864
|
-
'--bucket', 'chromium-luci',
|
|
865
|
-
'-d', 'src/tools/luci-go/linux64',
|
|
866
|
-
],
|
|
867
|
-
},
|
|
868
|
-
{
|
|
869
|
-
'name': 'Generate component metadata for tests',
|
|
870
|
-
'pattern': '.',
|
|
871
|
-
'action': [
|
|
872
|
-
'vpython3',
|
|
873
|
-
'src/testing/generate_location_tags.py',
|
|
874
|
-
'--out',
|
|
875
|
-
'src/testing/location_tags.json',
|
|
876
|
-
],
|
|
877
|
-
},
|
|
878
|
-
# Download remote exec cfg files
|
|
879
|
-
{
|
|
880
|
-
'name': 'configure_reclient_cfgs',
|
|
881
|
-
'pattern': '.',
|
|
882
|
-
'condition': 'download_remoteexec_cfg',
|
|
883
|
-
'action': ['python3',
|
|
884
|
-
'src/buildtools/reclient_cfgs/configure_reclient_cfgs.py',
|
|
885
|
-
'--rbe_instance',
|
|
886
|
-
Var('rbe_instance'),
|
|
887
|
-
'--reproxy_cfg_template',
|
|
888
|
-
'reproxy.cfg.template',
|
|
889
|
-
'--rewrapper_cfg_project',
|
|
890
|
-
Var('rewrapper_cfg_project'),
|
|
891
|
-
'--quiet',
|
|
892
|
-
],
|
|
893
|
-
},
|
|
894
|
-
# Configure Siso for developer builds.
|
|
895
|
-
{
|
|
896
|
-
'name': 'configure_siso',
|
|
897
|
-
'pattern': '.',
|
|
898
|
-
'action': ['python3',
|
|
899
|
-
'src/build/config/siso/configure_siso.py',
|
|
900
|
-
'--rbe_instance',
|
|
901
|
-
Var('rbe_instance'),
|
|
902
|
-
],
|
|
903
|
-
},
|
|
904
|
-
{
|
|
905
|
-
'name': 'dsymutil_mac_arm64',
|
|
906
|
-
'pattern': '.',
|
|
907
|
-
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
908
|
-
'action': [ 'python3',
|
|
909
|
-
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
910
|
-
'--no_resume',
|
|
911
|
-
'--no_auth',
|
|
912
|
-
'--bucket', 'chromium-browser-clang',
|
|
913
|
-
'-s', 'src/tools/clang/dsymutil/bin/dsymutil.arm64.sha1',
|
|
914
|
-
'-o', 'src/tools/clang/dsymutil/bin/dsymutil',
|
|
915
|
-
],
|
|
916
|
-
},
|
|
917
|
-
{
|
|
918
|
-
'name': 'dsymutil_mac_x64',
|
|
919
|
-
'pattern': '.',
|
|
920
|
-
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
921
|
-
'action': [ 'python3',
|
|
922
|
-
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
923
|
-
'--no_resume',
|
|
924
|
-
'--no_auth',
|
|
925
|
-
'--bucket', 'chromium-browser-clang',
|
|
926
|
-
'-s', 'src/tools/clang/dsymutil/bin/dsymutil.x64.sha1',
|
|
927
|
-
'-o', 'src/tools/clang/dsymutil/bin/dsymutil',
|
|
928
|
-
],
|
|
929
|
-
},
|
|
930
|
-
]
|
|
931
|
-
|
|
932
|
-
recursedeps = [
|
|
933
|
-
'src/buildtools',
|
|
934
|
-
'src/third_party/instrumented_libs',
|
|
935
|
-
]
|
|
1
|
+
gclient_gn_args_file = 'src/build/config/gclient_args.gni'
|
|
2
|
+
gclient_gn_args = [
|
|
3
|
+
'generate_location_tags',
|
|
4
|
+
]
|
|
5
|
+
|
|
6
|
+
vars = {
|
|
7
|
+
'chromium_git': 'https://chromium.googlesource.com',
|
|
8
|
+
'chromium_revision': '68659bfa38fb7a446bff13b59532f4cb301d9bf1',
|
|
9
|
+
'gn_version': 'git_revision:07d3c6f4dc290fae5ca6152ebcb37d6815c411ab',
|
|
10
|
+
# ninja CIPD package version.
|
|
11
|
+
# https://chrome-infra-packages.appspot.com/p/infra/3pp/tools/ninja
|
|
12
|
+
'ninja_version': 'version:3@1.12.1.chromium.4',
|
|
13
|
+
# reclient CIPD package version
|
|
14
|
+
'reclient_version': 're_client_version:0.185.0.db415f21-gomaip',
|
|
15
|
+
# siso CIPD package version.
|
|
16
|
+
'siso_version': 'git_revision:f24720f1320c0b85feea49cb5f1207be7555deee',
|
|
17
|
+
# Fetch configuration files required for the 'use_remoteexec' gn arg
|
|
18
|
+
'download_remoteexec_cfg': False,
|
|
19
|
+
# RBE instance to use for running remote builds
|
|
20
|
+
'rbe_instance': Str('projects/rbe-webrtc-developer/instances/default_instance'),
|
|
21
|
+
# RBE project to download rewrapper config files for. Only needed if
|
|
22
|
+
# different from the project used in 'rbe_instance'
|
|
23
|
+
'rewrapper_cfg_project': Str(''),
|
|
24
|
+
|
|
25
|
+
# Keep the Chromium default of generating location tags.
|
|
26
|
+
'generate_location_tags': True,
|
|
27
|
+
|
|
28
|
+
# By default, download the fuchsia sdk from the public sdk directory.
|
|
29
|
+
'fuchsia_sdk_cipd_prefix': 'fuchsia/sdk/core/',
|
|
30
|
+
'fuchsia_version': 'version:29.20251016.3.1',
|
|
31
|
+
# By default, download the fuchsia images from the fuchsia GCS bucket.
|
|
32
|
+
'fuchsia_images_bucket': 'fuchsia',
|
|
33
|
+
'checkout_fuchsia': False,
|
|
34
|
+
# Since the images are hundreds of MB, default to only downloading the image
|
|
35
|
+
# most commonly useful for developers. Bots and developers that need to use
|
|
36
|
+
# other images can override this with additional images.
|
|
37
|
+
'checkout_fuchsia_boot_images': "terminal.x64",
|
|
38
|
+
'checkout_fuchsia_product_bundles': '"{checkout_fuchsia_boot_images}" != ""',
|
|
39
|
+
|
|
40
|
+
# condition to allowlist deps for non-git-source processing.
|
|
41
|
+
'non_git_source': 'True',
|
|
42
|
+
|
|
43
|
+
'android_sdk_build-tools_version': 'y3EsZLg4bxPmpW0oYsAHylywNyMnIwPS3kh1VbQLAFAC',
|
|
44
|
+
'android_sdk_emulator_version': '9lGp8nTUCRRWGMnI_96HcKfzjnxEJKUcfvfwmA3wXNkC',
|
|
45
|
+
'android_sdk_platform-tools_version': 'qTD9QdBlBf3dyHsN1lJ0RH6AhHxR42Hmg2Ih-Vj4zIEC',
|
|
46
|
+
'android_sdk_platforms_version': '_YHemUrK49JrE7Mctdf5DDNOHu1VKBx_PTcWnZ-cbOAC',
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
deps = {
|
|
50
|
+
'src/build':
|
|
51
|
+
Var('chromium_git') + '/chromium/src/build' + '@' + 'b2e55d8d32cfc78c6d598740ceefc8e6dce00545',
|
|
52
|
+
'src/buildtools':
|
|
53
|
+
Var('chromium_git') + '/chromium/src/buildtools' + '@' + '28a4e2e3dc4dea96027664dd777316c335de1f28',
|
|
54
|
+
'src/testing':
|
|
55
|
+
Var('chromium_git') + '/chromium/src/testing' + '@' + '4c3aba1a9edf0b61f30354e124a0cd99e33ecf6d',
|
|
56
|
+
'src/third_party':
|
|
57
|
+
Var('chromium_git') + '/chromium/src/third_party' + '@' + '1920e63dfd1c6f908d02aa3b61bb6aef8161b29b',
|
|
58
|
+
|
|
59
|
+
'src/buildtools/linux64': {
|
|
60
|
+
'packages': [
|
|
61
|
+
{
|
|
62
|
+
'package': 'gn/gn/linux-${{arch}}',
|
|
63
|
+
'version': Var('gn_version'),
|
|
64
|
+
}
|
|
65
|
+
],
|
|
66
|
+
'dep_type': 'cipd',
|
|
67
|
+
'condition': 'checkout_linux',
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
'src/buildtools/mac': {
|
|
71
|
+
'packages': [
|
|
72
|
+
{
|
|
73
|
+
'package': 'gn/gn/mac-${{arch}}',
|
|
74
|
+
'version': Var('gn_version'),
|
|
75
|
+
}
|
|
76
|
+
],
|
|
77
|
+
'dep_type': 'cipd',
|
|
78
|
+
'condition': 'checkout_mac',
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
'src/buildtools/win': {
|
|
82
|
+
'packages': [
|
|
83
|
+
{
|
|
84
|
+
'package': 'gn/gn/windows-amd64',
|
|
85
|
+
'version': Var('gn_version'),
|
|
86
|
+
}
|
|
87
|
+
],
|
|
88
|
+
'dep_type': 'cipd',
|
|
89
|
+
'condition': 'checkout_win',
|
|
90
|
+
},
|
|
91
|
+
|
|
92
|
+
'src/buildtools/reclient': {
|
|
93
|
+
'packages': [
|
|
94
|
+
{
|
|
95
|
+
'package': 'infra/rbe/client/${{platform}}',
|
|
96
|
+
'version': Var('reclient_version'),
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
'dep_type': 'cipd',
|
|
100
|
+
},
|
|
101
|
+
|
|
102
|
+
'src/third_party/catapult':
|
|
103
|
+
Var('chromium_git') + '/catapult.git' + '@' + '1c28f8a288ca1883a3555eaf29a9fc718afaad6e',
|
|
104
|
+
'src/third_party/clang-format/script':
|
|
105
|
+
Var('chromium_git') + '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git' + '@' + 'c2725e0622e1a86d55f14514f2177a39efea4a0e',
|
|
106
|
+
'src/third_party/compiler-rt/src':
|
|
107
|
+
'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/compiler-rt.git@d7392a1ed4ee4eb636db4d38e05905edd3dc7994',
|
|
108
|
+
'src/third_party/colorama/src':
|
|
109
|
+
Var('chromium_git') + '/external/colorama.git' + '@' + '3de9f013df4b470069d03d250224062e8cf15c49',
|
|
110
|
+
'src/third_party/cpu_features/src': {
|
|
111
|
+
'url': Var('chromium_git') + '/external/github.com/google/cpu_features.git' + '@' + '936b9ab5515dead115606559502e3864958f7f6e',
|
|
112
|
+
'condition': 'checkout_android',
|
|
113
|
+
},
|
|
114
|
+
'src/third_party/depot_tools':
|
|
115
|
+
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'ddb97c1c77ee11a8a5d1ab04cffaa9ea5433b45b',
|
|
116
|
+
'third_party/fuchsia-gn-sdk': {
|
|
117
|
+
'url': Var('chromium_git') + '/chromium/src/third_party/fuchsia-gn-sdk.git' + '@' + '0d6902558d92fe3d49ba9a8f638ddea829be595b',
|
|
118
|
+
'condition': 'checkout_fuchsia',
|
|
119
|
+
},
|
|
120
|
+
'src/third_party/googletest/src':
|
|
121
|
+
Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + 'e17e37a1151a47d6e8089f2e9a78921ac022a511',
|
|
122
|
+
'src/third_party/harfbuzz-ng/src':
|
|
123
|
+
Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + '7d936359a27abb2d7cb14ecc102463bb15c11843',
|
|
124
|
+
'src/third_party/instrumented_libs': {
|
|
125
|
+
'url': Var('chromium_git') + '/chromium/third_party/instrumented_libraries.git' + '@' + '69015643b3f68dbd438c010439c59adc52cac808',
|
|
126
|
+
'condition': 'checkout_instrumented_libraries',
|
|
127
|
+
},
|
|
128
|
+
'src/third_party/libc++/src':
|
|
129
|
+
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + '1af2c657e2646fd13cf50f426059b696194fff10',
|
|
130
|
+
'src/third_party/libc++abi/src':
|
|
131
|
+
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + '8e720a3a3ae30fcfffe436aae418c91acacc34d0',
|
|
132
|
+
'src/third_party/llvm-libc/src':
|
|
133
|
+
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libc.git' + '@' + 'b3af9aedd645bb067261301f6cc2151fa01db295',
|
|
134
|
+
|
|
135
|
+
'src/third_party/libunwind/src':
|
|
136
|
+
Var('chromium_git') + '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + '224761f783e2fb35d5556943e2fecf490fdc3fab',
|
|
137
|
+
'src/third_party/libjpeg_turbo':
|
|
138
|
+
Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'e14cbfaa85529d47f9f55b0f104a579c1061f9ad',
|
|
139
|
+
'src/third_party/nasm':
|
|
140
|
+
Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + 'e2c93c34982b286b27ce8b56dd7159e0b90869a2',
|
|
141
|
+
'src/tools':
|
|
142
|
+
Var('chromium_git') + '/chromium/src/tools' + '@' + '6c975b3dc5452046f61bf08e9f442619deae31ef',
|
|
143
|
+
|
|
144
|
+
# libyuv-only dependencies (not present in Chromium).
|
|
145
|
+
'src/third_party/gtest-parallel':
|
|
146
|
+
Var('chromium_git') + '/external/webrtc/deps/third_party/gtest-parallel' + '@' + '1dad0e9f6d82ff994130b529d7d814b40eb32b0e',
|
|
147
|
+
|
|
148
|
+
'src/third_party/lss': {
|
|
149
|
+
'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + '29164a80da4d41134950d76d55199ea33fbb9613',
|
|
150
|
+
'condition': 'checkout_android or checkout_linux',
|
|
151
|
+
},
|
|
152
|
+
|
|
153
|
+
'src/third_party/re2/src':
|
|
154
|
+
Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '61c4644171ee6b480540bf9e569cba06d9090b4b',
|
|
155
|
+
|
|
156
|
+
# Android deps:
|
|
157
|
+
'src/third_party/kotlin_stdlib/cipd': {
|
|
158
|
+
'packages': [
|
|
159
|
+
{
|
|
160
|
+
'package': 'chromium/third_party/kotlin_stdlib',
|
|
161
|
+
'version': 'fb5owI7Lkc_2iMOvOSTFR5l6KH9Ufv9VQ2quZCyG3eQC',
|
|
162
|
+
},
|
|
163
|
+
],
|
|
164
|
+
'condition': 'checkout_android',
|
|
165
|
+
'dep_type': 'cipd',
|
|
166
|
+
},
|
|
167
|
+
|
|
168
|
+
'src/third_party/kotlinc/current': {
|
|
169
|
+
'packages': [
|
|
170
|
+
{
|
|
171
|
+
'package': 'chromium/third_party/kotlinc',
|
|
172
|
+
'version': '_goUeuVtOV_2DBIbshAqBuLckbAOCDbHx3UfMYwHK2cC',
|
|
173
|
+
},
|
|
174
|
+
],
|
|
175
|
+
'condition': 'checkout_android',
|
|
176
|
+
'dep_type': 'cipd',
|
|
177
|
+
},
|
|
178
|
+
|
|
179
|
+
'src/third_party/android_toolchain/ndk': {
|
|
180
|
+
'packages': [
|
|
181
|
+
{
|
|
182
|
+
'package': 'chromium/third_party/android_toolchain/android_toolchain',
|
|
183
|
+
'version': 'KXOia11cm9lVdUdPlbGLu8sCz6Y4ey_HV2s8_8qeqhgC',
|
|
184
|
+
},
|
|
185
|
+
],
|
|
186
|
+
'condition': 'checkout_android',
|
|
187
|
+
'dep_type': 'cipd',
|
|
188
|
+
},
|
|
189
|
+
|
|
190
|
+
'src/third_party/androidx/cipd': {
|
|
191
|
+
'packages': [
|
|
192
|
+
{
|
|
193
|
+
'package': 'chromium/third_party/androidx',
|
|
194
|
+
'version': 'KoJF8n5Z68D_pjbJf-EUw4bnZ5FTSOFKGsfnzTWt6pwC',
|
|
195
|
+
},
|
|
196
|
+
],
|
|
197
|
+
'condition': 'checkout_android and non_git_source',
|
|
198
|
+
'dep_type': 'cipd',
|
|
199
|
+
},
|
|
200
|
+
|
|
201
|
+
'src/third_party/android_support_test_runner': {
|
|
202
|
+
'packages': [
|
|
203
|
+
{
|
|
204
|
+
'package': 'chromium/third_party/android_support_test_runner',
|
|
205
|
+
'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141',
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
'condition': 'checkout_android',
|
|
209
|
+
'dep_type': 'cipd',
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
'src/third_party/android_sdk/public': {
|
|
213
|
+
'packages': [
|
|
214
|
+
{
|
|
215
|
+
'package': 'chromium/third_party/android_sdk/public/build-tools/36.0.0',
|
|
216
|
+
'version': Var('android_sdk_build-tools_version'),
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
'package': 'chromium/third_party/android_sdk/public/emulator',
|
|
220
|
+
'version': Var('android_sdk_emulator_version'),
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
'package': 'chromium/third_party/android_sdk/public/platform-tools',
|
|
224
|
+
'version': Var('android_sdk_platform-tools_version'),
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
'package': 'chromium/third_party/android_sdk/public/platforms/android-36',
|
|
228
|
+
'version': Var('android_sdk_platforms_version'),
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
'package': 'chromium/third_party/android_sdk/public/cmdline-tools',
|
|
232
|
+
'version': 'gekOVsZjseS1w9BXAT3FsoW__ByGDJYS9DgqesiwKYoC',
|
|
233
|
+
},
|
|
234
|
+
],
|
|
235
|
+
'condition': 'checkout_android and non_git_source',
|
|
236
|
+
'dep_type': 'cipd',
|
|
237
|
+
},
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
'src/third_party/android_build_tools/aapt2/cipd': {
|
|
241
|
+
'packages': [
|
|
242
|
+
{
|
|
243
|
+
'package': 'chromium/third_party/android_build_tools/aapt2',
|
|
244
|
+
'version': 'XqcH9BN43Trcigbh3gSdKc-5OAI-r7MV7wIs5fRXxFMC',
|
|
245
|
+
},
|
|
246
|
+
],
|
|
247
|
+
'condition': 'checkout_android',
|
|
248
|
+
'dep_type': 'cipd',
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
'src/third_party/ced/src': {
|
|
252
|
+
'url': Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5',
|
|
253
|
+
'condition': 'checkout_android',
|
|
254
|
+
},
|
|
255
|
+
'src/third_party/errorprone/lib': {
|
|
256
|
+
'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7',
|
|
257
|
+
'condition': 'checkout_android',
|
|
258
|
+
},
|
|
259
|
+
'src/third_party/findbugs': {
|
|
260
|
+
'url': Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '4275d9ac8610db6b1bc9a5e887f97e41b33fac67',
|
|
261
|
+
'condition': 'checkout_android',
|
|
262
|
+
},
|
|
263
|
+
'src/third_party/gson': {
|
|
264
|
+
'packages': [
|
|
265
|
+
{
|
|
266
|
+
'package': 'chromium/third_party/gson',
|
|
267
|
+
'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca',
|
|
268
|
+
},
|
|
269
|
+
],
|
|
270
|
+
'condition': 'checkout_android',
|
|
271
|
+
'dep_type': 'cipd',
|
|
272
|
+
},
|
|
273
|
+
|
|
274
|
+
'src/third_party/hamcrest/cipd': {
|
|
275
|
+
'packages': [
|
|
276
|
+
{
|
|
277
|
+
'package': 'chromium/third_party/hamcrest',
|
|
278
|
+
'version': 'dBioOAmFJjqAr_DY7dipbXdVfAxUQwjOBNibMPtX8lQC',
|
|
279
|
+
},
|
|
280
|
+
],
|
|
281
|
+
'condition': 'checkout_android',
|
|
282
|
+
'dep_type': 'cipd',
|
|
283
|
+
},
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
'src/third_party/icu': {
|
|
287
|
+
'url': Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'ff35c4f9df23800935ff9f34203152c6b3c7881e',
|
|
288
|
+
},
|
|
289
|
+
|
|
290
|
+
'src/third_party/icu4j/cipd': {
|
|
291
|
+
'packages': [
|
|
292
|
+
{
|
|
293
|
+
'package': 'chromium/third_party/icu4j',
|
|
294
|
+
'version': '8dV7WRVX0tTaNNqkLEnCA_dMofr2MJXFK400E7gOFygC',
|
|
295
|
+
},
|
|
296
|
+
],
|
|
297
|
+
'condition': 'checkout_android',
|
|
298
|
+
'dep_type': 'cipd',
|
|
299
|
+
},
|
|
300
|
+
|
|
301
|
+
'src/third_party/intellij': {
|
|
302
|
+
'packages': [
|
|
303
|
+
{
|
|
304
|
+
'package': 'chromium/third_party/intellij',
|
|
305
|
+
'version': '77c2721b024b36ee073402c08e6d8428c0295336',
|
|
306
|
+
},
|
|
307
|
+
],
|
|
308
|
+
'condition': 'checkout_android',
|
|
309
|
+
'dep_type': 'cipd',
|
|
310
|
+
},
|
|
311
|
+
'src/third_party/jdk/current': {
|
|
312
|
+
'packages': [
|
|
313
|
+
{
|
|
314
|
+
'package': 'chromium/third_party/jdk/linux-amd64',
|
|
315
|
+
'version': '2iiuF-nKDH3moTImx2op4WTRetbfhzKoZhH7Xo44zGsC',
|
|
316
|
+
},
|
|
317
|
+
],
|
|
318
|
+
# Needed on Linux for use on chromium_presubmit (for checkstyle).
|
|
319
|
+
'condition': '(checkout_android or checkout_linux) and non_git_source',
|
|
320
|
+
'dep_type': 'cipd',
|
|
321
|
+
},
|
|
322
|
+
'src/third_party/jsr-305/src': {
|
|
323
|
+
'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
|
|
324
|
+
'condition': 'checkout_android',
|
|
325
|
+
},
|
|
326
|
+
'src/third_party/junit/src': {
|
|
327
|
+
'url': Var('chromium_git') + '/external/junit.git' + '@' + '0eb5ce72848d730da5bd6d42902fdd6a8a42055d',
|
|
328
|
+
'condition': 'checkout_android',
|
|
329
|
+
},
|
|
330
|
+
'src/third_party/libunwindstack': {
|
|
331
|
+
'url': Var('chromium_git') + '/chromium/src/third_party/libunwindstack.git' + '@' + '0928ad0d25e4af07c8be5ab06d0ca584f9f4ceb5',
|
|
332
|
+
'condition': 'checkout_android',
|
|
333
|
+
},
|
|
334
|
+
'src/third_party/ninja': {
|
|
335
|
+
'packages': [
|
|
336
|
+
{
|
|
337
|
+
'package': 'infra/3pp/tools/ninja/${{platform}}',
|
|
338
|
+
'version': Var('ninja_version'),
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
'dep_type': 'cipd',
|
|
342
|
+
},
|
|
343
|
+
'src/third_party/siso/cipd': {
|
|
344
|
+
'packages': [
|
|
345
|
+
{
|
|
346
|
+
'package': 'build/siso/${{platform}}',
|
|
347
|
+
'version': Var('siso_version'),
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
'dep_type': 'cipd',
|
|
351
|
+
},
|
|
352
|
+
'src/third_party/mockito/src': {
|
|
353
|
+
'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '7c3641bcef717ffa7d765f2c86b847d0aab1aac9',
|
|
354
|
+
'condition': 'checkout_android',
|
|
355
|
+
},
|
|
356
|
+
'src/third_party/ow2_asm': {
|
|
357
|
+
'packages': [
|
|
358
|
+
{
|
|
359
|
+
'package': 'chromium/third_party/ow2_asm',
|
|
360
|
+
'version': 'NNAhdJzMdnutUVqfSJm5v0tVazA9l3Dd6CRwH6N4Q5kC',
|
|
361
|
+
},
|
|
362
|
+
],
|
|
363
|
+
'condition': 'checkout_android',
|
|
364
|
+
'dep_type': 'cipd',
|
|
365
|
+
},
|
|
366
|
+
|
|
367
|
+
'src/third_party/r8/cipd': {
|
|
368
|
+
'packages': [
|
|
369
|
+
{
|
|
370
|
+
'package': 'chromium/third_party/r8',
|
|
371
|
+
'version': 'AYeAI5FH_WyqBwnhCmq8W1k-pGRyIkxmRN7PbMErE7EC',
|
|
372
|
+
},
|
|
373
|
+
],
|
|
374
|
+
'condition': 'checkout_android',
|
|
375
|
+
'dep_type': 'cipd',
|
|
376
|
+
},
|
|
377
|
+
# This duplication is intentional, so we avoid updating the r8.jar used by
|
|
378
|
+
# dexing unless necessary, since each update invalidates all incremental
|
|
379
|
+
# dexing and unnecessarily slows down all bots.
|
|
380
|
+
'src/third_party/r8/d8/cipd': {
|
|
381
|
+
'packages': [
|
|
382
|
+
{
|
|
383
|
+
'package': 'chromium/third_party/r8',
|
|
384
|
+
'version': '2aBDG942g42qUBPPInGETRHusdxru1U3anwJI_QX5wIC',
|
|
385
|
+
},
|
|
386
|
+
],
|
|
387
|
+
'condition': 'checkout_android',
|
|
388
|
+
'dep_type': 'cipd',
|
|
389
|
+
},
|
|
390
|
+
'src/third_party/proguard': {
|
|
391
|
+
'packages': [
|
|
392
|
+
{
|
|
393
|
+
'package': 'chromium/third_party/proguard',
|
|
394
|
+
'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC',
|
|
395
|
+
},
|
|
396
|
+
],
|
|
397
|
+
'condition': 'checkout_android',
|
|
398
|
+
'dep_type': 'cipd',
|
|
399
|
+
},
|
|
400
|
+
'src/third_party/requests/src': {
|
|
401
|
+
'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'c7e0fc087ceeadb8b4c84a0953a422c474093d6d',
|
|
402
|
+
'condition': 'checkout_android',
|
|
403
|
+
},
|
|
404
|
+
|
|
405
|
+
'src/third_party/robolectric/cipd': {
|
|
406
|
+
'packages': [
|
|
407
|
+
{
|
|
408
|
+
'package': 'chromium/third_party/robolectric',
|
|
409
|
+
'version': 'dr-aJxRAPYDTBJXnjfht-bdxyywD6BP1lrcjZZPnRG0C',
|
|
410
|
+
},
|
|
411
|
+
],
|
|
412
|
+
'condition': 'checkout_android',
|
|
413
|
+
'dep_type': 'cipd',
|
|
414
|
+
},
|
|
415
|
+
|
|
416
|
+
'src/third_party/sqlite4java/cipd': {
|
|
417
|
+
'packages': [
|
|
418
|
+
{
|
|
419
|
+
'package': 'chromium/third_party/sqlite4java',
|
|
420
|
+
'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC',
|
|
421
|
+
},
|
|
422
|
+
],
|
|
423
|
+
'condition': 'checkout_android',
|
|
424
|
+
'dep_type': 'cipd',
|
|
425
|
+
},
|
|
426
|
+
'src/third_party/turbine/cipd': {
|
|
427
|
+
'packages': [
|
|
428
|
+
{
|
|
429
|
+
'package': 'chromium/third_party/turbine',
|
|
430
|
+
'version': 'EHj3lVL72PrpZUDnsWnaS5rdJuF5o1QYrJ7CUhO3MIEC',
|
|
431
|
+
},
|
|
432
|
+
],
|
|
433
|
+
'condition': 'checkout_android',
|
|
434
|
+
'dep_type': 'cipd',
|
|
435
|
+
},
|
|
436
|
+
'src/third_party/ub-uiautomator/lib': {
|
|
437
|
+
'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
|
|
438
|
+
'condition': 'checkout_android',
|
|
439
|
+
},
|
|
440
|
+
|
|
441
|
+
# iOS deps:
|
|
442
|
+
'src/ios': {
|
|
443
|
+
'url': Var('chromium_git') + '/chromium/src/ios' + '@' + '82e655421ce38fb3cb25f19c67572c0907fd722f',
|
|
444
|
+
'condition': 'checkout_ios'
|
|
445
|
+
},
|
|
446
|
+
|
|
447
|
+
'src/third_party/llvm-build/Release+Asserts': {
|
|
448
|
+
'dep_type': 'gcs',
|
|
449
|
+
'bucket': 'chromium-browser-clang',
|
|
450
|
+
'objects': [
|
|
451
|
+
{
|
|
452
|
+
# The Android libclang_rt.builtins libraries are currently only included in the Linux clang package.
|
|
453
|
+
'object_name': 'Linux_x64/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
454
|
+
'sha256sum': 'f6a487ffd0e56ba7a39b063d85d1f8ff7846514f50635785730cffb7368872ce',
|
|
455
|
+
'size_bytes': 55669844,
|
|
456
|
+
'generation': 1759771493989631,
|
|
457
|
+
'condition': 'host_os == "linux" or checkout_android',
|
|
458
|
+
},
|
|
459
|
+
{
|
|
460
|
+
'object_name': 'Linux_x64/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
461
|
+
'sha256sum': 'fd644634db56977b072d951f26571ac41c9c298bf5989e99efeb150ee8427364',
|
|
462
|
+
'size_bytes': 5666140,
|
|
463
|
+
'generation': 1759771494159187,
|
|
464
|
+
'condition': '((checkout_linux or checkout_mac or checkout_android) and host_os == "linux")',
|
|
465
|
+
},
|
|
466
|
+
{
|
|
467
|
+
'object_name': 'Mac/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
468
|
+
'sha256sum': '44811b6ed6868142c088807f6bcc0d08811a7b11d3f2bc2124c45868037e8cc3',
|
|
469
|
+
'size_bytes': 53583464,
|
|
470
|
+
'generation': 1759771495565305,
|
|
471
|
+
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
472
|
+
},
|
|
473
|
+
{
|
|
474
|
+
'object_name': 'Mac/clang-mac-runtime-library-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
475
|
+
'sha256sum': '8a2e16410bede5d52c77a012f182dde2350b05e647f7c1acaf7823ce816b4422',
|
|
476
|
+
'size_bytes': 1005144,
|
|
477
|
+
'generation': 1759771503758969,
|
|
478
|
+
'condition': 'checkout_mac and not host_os == "mac"',
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
'object_name': 'Mac/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
482
|
+
'sha256sum': 'a10d075e19e7b614ffd8c5a65f04fbd45011ec74c735dda89f0b3780ab397329',
|
|
483
|
+
'size_bytes': 5567160,
|
|
484
|
+
'generation': 1759771495741126,
|
|
485
|
+
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
'object_name': 'Mac_arm64/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
489
|
+
'sha256sum': 'c97e4f62cdd77edf725ccbf4cd63b589302605bf643c871f83214f39e629b2ea',
|
|
490
|
+
'size_bytes': 44593804,
|
|
491
|
+
'generation': 1759771504972271,
|
|
492
|
+
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
'object_name': 'Mac_arm64/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
496
|
+
'sha256sum': '7aa959752d6beafc74129e4822912021f855584e55a55600044f1d42b889f8b0',
|
|
497
|
+
'size_bytes': 5292960,
|
|
498
|
+
'generation': 1759771505201957,
|
|
499
|
+
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
500
|
+
},
|
|
501
|
+
{
|
|
502
|
+
'object_name': 'Win/clang-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
503
|
+
'sha256sum': 'fc756186dea61e700bd0f885b585050d9356bbd7f942dafae25d38eef4671adf',
|
|
504
|
+
'size_bytes': 47657436,
|
|
505
|
+
'generation': 1759771514781908,
|
|
506
|
+
'condition': 'host_os == "win"',
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
'object_name': 'Win/clang-win-runtime-library-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
510
|
+
'sha256sum': '0a426702c9e0f92ea27f9611a1665cc5df9a58820360d3fa6a4026b9a0e5120f',
|
|
511
|
+
'size_bytes': 2501292,
|
|
512
|
+
'generation': 1759771523074183,
|
|
513
|
+
'condition': 'checkout_win and not host_os == "win"',
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
'object_name': 'Win/llvmobjdump-llvmorg-22-init-8940-g4d4cb757-84.tar.xz',
|
|
517
|
+
'sha256sum': '94c068f109e220e028a38f5beced7d6acd67725fc0b1da9fa8ed1b959f12d799',
|
|
518
|
+
'size_bytes': 5673824,
|
|
519
|
+
'generation': 1759771514962844,
|
|
520
|
+
'condition': '(checkout_linux or checkout_mac or checkout_android) and host_os == "win"',
|
|
521
|
+
},
|
|
522
|
+
]
|
|
523
|
+
},
|
|
524
|
+
|
|
525
|
+
# Everything coming after this is automatically updated by the auto-roller.
|
|
526
|
+
# === ANDROID_DEPS Generated Code Start ===
|
|
527
|
+
# Generated by //third_party/android_deps/fetch_all.py
|
|
528
|
+
'src/third_party/android_deps/cipd/libs/com_android_support_support_annotations': {
|
|
529
|
+
'packages': [
|
|
530
|
+
{
|
|
531
|
+
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations',
|
|
532
|
+
'version': 'version:2@28.0.0.cr2',
|
|
533
|
+
},
|
|
534
|
+
],
|
|
535
|
+
'condition': 'checkout_android and non_git_source',
|
|
536
|
+
'dep_type': 'cipd',
|
|
537
|
+
},
|
|
538
|
+
|
|
539
|
+
'src/third_party/android_deps/cipd/libs/com_android_tools_common': {
|
|
540
|
+
'packages': [
|
|
541
|
+
{
|
|
542
|
+
'package': 'chromium/third_party/android_deps/libs/com_android_tools_common',
|
|
543
|
+
'version': 'version:2@30.2.0-beta01.cr2',
|
|
544
|
+
},
|
|
545
|
+
],
|
|
546
|
+
'condition': 'checkout_android and non_git_source',
|
|
547
|
+
'dep_type': 'cipd',
|
|
548
|
+
},
|
|
549
|
+
|
|
550
|
+
'src/third_party/android_deps/cipd/libs/com_android_tools_layoutlib_layoutlib_api': {
|
|
551
|
+
'packages': [
|
|
552
|
+
{
|
|
553
|
+
'package': 'chromium/third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api',
|
|
554
|
+
'version': 'version:2@30.2.0-beta01.cr2',
|
|
555
|
+
},
|
|
556
|
+
],
|
|
557
|
+
'condition': 'checkout_android and non_git_source',
|
|
558
|
+
'dep_type': 'cipd',
|
|
559
|
+
},
|
|
560
|
+
|
|
561
|
+
'src/third_party/android_deps/cipd/libs/com_android_tools_sdk_common': {
|
|
562
|
+
'packages': [
|
|
563
|
+
{
|
|
564
|
+
'package': 'chromium/third_party/android_deps/libs/com_android_tools_sdk_common',
|
|
565
|
+
'version': 'version:2@30.2.0-beta01.cr2',
|
|
566
|
+
},
|
|
567
|
+
],
|
|
568
|
+
'condition': 'checkout_android and non_git_source',
|
|
569
|
+
'dep_type': 'cipd',
|
|
570
|
+
},
|
|
571
|
+
|
|
572
|
+
'src/third_party/android_deps/cipd/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework': {
|
|
573
|
+
'packages': [
|
|
574
|
+
{
|
|
575
|
+
'package': 'chromium/third_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework',
|
|
576
|
+
'version': 'version:2@4.0.0.cr2',
|
|
577
|
+
},
|
|
578
|
+
],
|
|
579
|
+
'condition': 'checkout_android and non_git_source',
|
|
580
|
+
'dep_type': 'cipd',
|
|
581
|
+
},
|
|
582
|
+
|
|
583
|
+
'src/third_party/android_deps/cipd/libs/com_googlecode_java_diff_utils_diffutils': {
|
|
584
|
+
'packages': [
|
|
585
|
+
{
|
|
586
|
+
'package': 'chromium/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils',
|
|
587
|
+
'version': 'version:2@1.3.0.cr2',
|
|
588
|
+
},
|
|
589
|
+
],
|
|
590
|
+
'condition': 'checkout_android and non_git_source',
|
|
591
|
+
'dep_type': 'cipd',
|
|
592
|
+
},
|
|
593
|
+
|
|
594
|
+
'src/third_party/android_deps/cipd/libs/com_squareup_javapoet': {
|
|
595
|
+
'packages': [
|
|
596
|
+
{
|
|
597
|
+
'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet',
|
|
598
|
+
'version': 'version:2@1.13.0.cr2',
|
|
599
|
+
},
|
|
600
|
+
],
|
|
601
|
+
'condition': 'checkout_android and non_git_source',
|
|
602
|
+
'dep_type': 'cipd',
|
|
603
|
+
},
|
|
604
|
+
|
|
605
|
+
'src/third_party/android_deps/cipd/libs/net_bytebuddy_byte_buddy': {
|
|
606
|
+
'packages': [
|
|
607
|
+
{
|
|
608
|
+
'package': 'chromium/third_party/android_deps/libs/net_bytebuddy_byte_buddy',
|
|
609
|
+
'version': 'version:2@1.17.6.cr2',
|
|
610
|
+
},
|
|
611
|
+
],
|
|
612
|
+
'condition': 'checkout_android and non_git_source',
|
|
613
|
+
'dep_type': 'cipd',
|
|
614
|
+
},
|
|
615
|
+
|
|
616
|
+
'src/third_party/android_deps/cipd/libs/net_bytebuddy_byte_buddy_agent': {
|
|
617
|
+
'packages': [
|
|
618
|
+
{
|
|
619
|
+
'package': 'chromium/third_party/android_deps/libs/net_bytebuddy_byte_buddy_agent',
|
|
620
|
+
'version': 'version:2@1.17.6.cr2',
|
|
621
|
+
},
|
|
622
|
+
],
|
|
623
|
+
'condition': 'checkout_android and non_git_source',
|
|
624
|
+
'dep_type': 'cipd',
|
|
625
|
+
},
|
|
626
|
+
|
|
627
|
+
'src/third_party/android_deps/cipd/libs/org_ccil_cowan_tagsoup_tagsoup': {
|
|
628
|
+
'packages': [
|
|
629
|
+
{
|
|
630
|
+
'package': 'chromium/third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup',
|
|
631
|
+
'version': 'version:2@1.2.1.cr2',
|
|
632
|
+
},
|
|
633
|
+
],
|
|
634
|
+
'condition': 'checkout_android and non_git_source',
|
|
635
|
+
'dep_type': 'cipd',
|
|
636
|
+
},
|
|
637
|
+
|
|
638
|
+
'src/third_party/android_deps/cipd/libs/org_checkerframework_checker_compat_qual': {
|
|
639
|
+
'packages': [
|
|
640
|
+
{
|
|
641
|
+
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual',
|
|
642
|
+
'version': 'version:2@2.5.5.cr2',
|
|
643
|
+
},
|
|
644
|
+
],
|
|
645
|
+
'condition': 'checkout_android and non_git_source',
|
|
646
|
+
'dep_type': 'cipd',
|
|
647
|
+
},
|
|
648
|
+
|
|
649
|
+
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlin_kotlin_android_extensions_runtime': {
|
|
650
|
+
'packages': [
|
|
651
|
+
{
|
|
652
|
+
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_android_extensions_runtime',
|
|
653
|
+
'version': 'version:2@1.9.22.cr2',
|
|
654
|
+
},
|
|
655
|
+
],
|
|
656
|
+
'condition': 'checkout_android and non_git_source',
|
|
657
|
+
'dep_type': 'cipd',
|
|
658
|
+
},
|
|
659
|
+
|
|
660
|
+
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlin_kotlin_parcelize_runtime': {
|
|
661
|
+
'packages': [
|
|
662
|
+
{
|
|
663
|
+
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_parcelize_runtime',
|
|
664
|
+
'version': 'version:2@1.9.22.cr2',
|
|
665
|
+
},
|
|
666
|
+
],
|
|
667
|
+
'condition': 'checkout_android and non_git_source',
|
|
668
|
+
'dep_type': 'cipd',
|
|
669
|
+
},
|
|
670
|
+
|
|
671
|
+
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlinx_atomicfu_jvm': {
|
|
672
|
+
'packages': [
|
|
673
|
+
{
|
|
674
|
+
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_atomicfu_jvm',
|
|
675
|
+
'version': 'version:2@0.23.2.cr2',
|
|
676
|
+
},
|
|
677
|
+
],
|
|
678
|
+
'condition': 'checkout_android and non_git_source',
|
|
679
|
+
'dep_type': 'cipd',
|
|
680
|
+
},
|
|
681
|
+
|
|
682
|
+
'src/third_party/android_deps/cipd/libs/org_jetbrains_kotlinx_kotlinx_coroutines_guava': {
|
|
683
|
+
'packages': [
|
|
684
|
+
{
|
|
685
|
+
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_guava',
|
|
686
|
+
'version': 'version:2@1.8.1.cr2',
|
|
687
|
+
},
|
|
688
|
+
],
|
|
689
|
+
'condition': 'checkout_android and non_git_source',
|
|
690
|
+
'dep_type': 'cipd',
|
|
691
|
+
},
|
|
692
|
+
|
|
693
|
+
'src/third_party/android_deps/cipd/libs/org_jsoup_jsoup': {
|
|
694
|
+
'packages': [
|
|
695
|
+
{
|
|
696
|
+
'package': 'chromium/third_party/android_deps/libs/org_jsoup_jsoup',
|
|
697
|
+
'version': 'version:2@1.15.1.cr2',
|
|
698
|
+
},
|
|
699
|
+
],
|
|
700
|
+
'condition': 'checkout_android and non_git_source',
|
|
701
|
+
'dep_type': 'cipd',
|
|
702
|
+
},
|
|
703
|
+
|
|
704
|
+
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_android': {
|
|
705
|
+
'packages': [
|
|
706
|
+
{
|
|
707
|
+
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_android',
|
|
708
|
+
'version': 'version:2@5.19.0.cr2',
|
|
709
|
+
},
|
|
710
|
+
],
|
|
711
|
+
'condition': 'checkout_android and non_git_source',
|
|
712
|
+
'dep_type': 'cipd',
|
|
713
|
+
},
|
|
714
|
+
|
|
715
|
+
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_core': {
|
|
716
|
+
'packages': [
|
|
717
|
+
{
|
|
718
|
+
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_core',
|
|
719
|
+
'version': 'version:2@5.19.0.cr2',
|
|
720
|
+
},
|
|
721
|
+
],
|
|
722
|
+
'condition': 'checkout_android and non_git_source',
|
|
723
|
+
'dep_type': 'cipd',
|
|
724
|
+
},
|
|
725
|
+
|
|
726
|
+
'src/third_party/android_deps/cipd/libs/org_mockito_mockito_subclass': {
|
|
727
|
+
'packages': [
|
|
728
|
+
{
|
|
729
|
+
'package': 'chromium/third_party/android_deps/libs/org_mockito_mockito_subclass',
|
|
730
|
+
'version': 'version:2@5.19.0.cr2',
|
|
731
|
+
},
|
|
732
|
+
],
|
|
733
|
+
'condition': 'checkout_android and non_git_source',
|
|
734
|
+
'dep_type': 'cipd',
|
|
735
|
+
},
|
|
736
|
+
|
|
737
|
+
'src/third_party/android_deps/cipd/libs/org_objenesis_objenesis': {
|
|
738
|
+
'packages': [
|
|
739
|
+
{
|
|
740
|
+
'package': 'chromium/third_party/android_deps/libs/org_objenesis_objenesis',
|
|
741
|
+
'version': 'version:2@3.3.cr2',
|
|
742
|
+
},
|
|
743
|
+
],
|
|
744
|
+
'condition': 'checkout_android and non_git_source',
|
|
745
|
+
'dep_type': 'cipd',
|
|
746
|
+
},
|
|
747
|
+
|
|
748
|
+
# === ANDROID_DEPS Generated Code End ===
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
hooks = [
|
|
752
|
+
{
|
|
753
|
+
# This clobbers when necessary (based on get_landmines.py). It should be
|
|
754
|
+
# an early hook but it will need to be run after syncing Chromium and
|
|
755
|
+
# setting up the links, so the script actually exists.
|
|
756
|
+
'name': 'landmines',
|
|
757
|
+
'pattern': '.',
|
|
758
|
+
'action': [
|
|
759
|
+
'python3',
|
|
760
|
+
'src/build/landmines.py',
|
|
761
|
+
'--landmine-scripts',
|
|
762
|
+
'src/tools_libyuv/get_landmines.py',
|
|
763
|
+
'--src-dir',
|
|
764
|
+
'src',
|
|
765
|
+
],
|
|
766
|
+
},
|
|
767
|
+
# Downloads the current stable linux sysroot to build/linux/ if needed.
|
|
768
|
+
{
|
|
769
|
+
'name': 'sysroot_arm',
|
|
770
|
+
'pattern': '.',
|
|
771
|
+
'condition': 'checkout_linux and checkout_arm',
|
|
772
|
+
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
773
|
+
'--arch=arm'],
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
'name': 'sysroot_arm64',
|
|
777
|
+
'pattern': '.',
|
|
778
|
+
'condition': 'checkout_linux and checkout_arm64',
|
|
779
|
+
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
780
|
+
'--arch=arm64'],
|
|
781
|
+
},
|
|
782
|
+
{
|
|
783
|
+
'name': 'sysroot_x86',
|
|
784
|
+
'pattern': '.',
|
|
785
|
+
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
|
786
|
+
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
787
|
+
'--arch=x86'],
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
'name': 'sysroot_x64',
|
|
791
|
+
'pattern': '.',
|
|
792
|
+
'condition': 'checkout_linux and checkout_x64',
|
|
793
|
+
'action': ['python3', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
794
|
+
'--arch=x64'],
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
# Update the Windows toolchain if necessary.
|
|
798
|
+
'name': 'win_toolchain',
|
|
799
|
+
'pattern': '.',
|
|
800
|
+
'action': ['python3', 'src/build/vs_toolchain.py', 'update'],
|
|
801
|
+
},
|
|
802
|
+
{
|
|
803
|
+
# Update the Mac toolchain if necessary.
|
|
804
|
+
'name': 'mac_toolchain',
|
|
805
|
+
'pattern': '.',
|
|
806
|
+
'action': ['python3', 'src/build/mac_toolchain.py'],
|
|
807
|
+
'condition': 'checkout_mac',
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
'name': 'Download Fuchsia SDK from GCS',
|
|
811
|
+
'pattern': '.',
|
|
812
|
+
'condition': 'checkout_fuchsia',
|
|
813
|
+
'action': [
|
|
814
|
+
'python3',
|
|
815
|
+
'src/build/fuchsia/update_sdk.py',
|
|
816
|
+
'--cipd-prefix={fuchsia_sdk_cipd_prefix}',
|
|
817
|
+
'--version={fuchsia_version}',
|
|
818
|
+
],
|
|
819
|
+
},
|
|
820
|
+
{
|
|
821
|
+
'name': 'Download Fuchsia system images',
|
|
822
|
+
'pattern': '.',
|
|
823
|
+
'condition': 'checkout_fuchsia and checkout_fuchsia_product_bundles',
|
|
824
|
+
'action': [
|
|
825
|
+
'python3',
|
|
826
|
+
'src/build/fuchsia/update_product_bundles.py',
|
|
827
|
+
'{checkout_fuchsia_boot_images}',
|
|
828
|
+
],
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
# Update LASTCHANGE.
|
|
832
|
+
'name': 'lastchange',
|
|
833
|
+
'pattern': '.',
|
|
834
|
+
'action': ['python3', 'src/build/util/lastchange.py',
|
|
835
|
+
'-o', 'src/build/util/LASTCHANGE'],
|
|
836
|
+
},
|
|
837
|
+
# Pull luci-go binaries (isolate, swarming) using checked-in hashes.
|
|
838
|
+
{
|
|
839
|
+
'name': 'luci-go_win',
|
|
840
|
+
'pattern': '.',
|
|
841
|
+
'action': [ 'download_from_google_storage',
|
|
842
|
+
'--no_resume',
|
|
843
|
+
'--platform=win32',
|
|
844
|
+
'--bucket', 'chromium-luci',
|
|
845
|
+
'-d', 'src/tools/luci-go/win64',
|
|
846
|
+
],
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
'name': 'luci-go_mac',
|
|
850
|
+
'pattern': '.',
|
|
851
|
+
'action': [ 'download_from_google_storage',
|
|
852
|
+
'--no_resume',
|
|
853
|
+
'--platform=darwin',
|
|
854
|
+
'--bucket', 'chromium-luci',
|
|
855
|
+
'-d', 'src/tools/luci-go/mac64',
|
|
856
|
+
],
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
'name': 'luci-go_linux',
|
|
860
|
+
'pattern': '.',
|
|
861
|
+
'action': [ 'download_from_google_storage',
|
|
862
|
+
'--no_resume',
|
|
863
|
+
'--platform=linux*',
|
|
864
|
+
'--bucket', 'chromium-luci',
|
|
865
|
+
'-d', 'src/tools/luci-go/linux64',
|
|
866
|
+
],
|
|
867
|
+
},
|
|
868
|
+
{
|
|
869
|
+
'name': 'Generate component metadata for tests',
|
|
870
|
+
'pattern': '.',
|
|
871
|
+
'action': [
|
|
872
|
+
'vpython3',
|
|
873
|
+
'src/testing/generate_location_tags.py',
|
|
874
|
+
'--out',
|
|
875
|
+
'src/testing/location_tags.json',
|
|
876
|
+
],
|
|
877
|
+
},
|
|
878
|
+
# Download remote exec cfg files
|
|
879
|
+
{
|
|
880
|
+
'name': 'configure_reclient_cfgs',
|
|
881
|
+
'pattern': '.',
|
|
882
|
+
'condition': 'download_remoteexec_cfg',
|
|
883
|
+
'action': ['python3',
|
|
884
|
+
'src/buildtools/reclient_cfgs/configure_reclient_cfgs.py',
|
|
885
|
+
'--rbe_instance',
|
|
886
|
+
Var('rbe_instance'),
|
|
887
|
+
'--reproxy_cfg_template',
|
|
888
|
+
'reproxy.cfg.template',
|
|
889
|
+
'--rewrapper_cfg_project',
|
|
890
|
+
Var('rewrapper_cfg_project'),
|
|
891
|
+
'--quiet',
|
|
892
|
+
],
|
|
893
|
+
},
|
|
894
|
+
# Configure Siso for developer builds.
|
|
895
|
+
{
|
|
896
|
+
'name': 'configure_siso',
|
|
897
|
+
'pattern': '.',
|
|
898
|
+
'action': ['python3',
|
|
899
|
+
'src/build/config/siso/configure_siso.py',
|
|
900
|
+
'--rbe_instance',
|
|
901
|
+
Var('rbe_instance'),
|
|
902
|
+
],
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
'name': 'dsymutil_mac_arm64',
|
|
906
|
+
'pattern': '.',
|
|
907
|
+
'condition': 'host_os == "mac" and host_cpu == "arm64"',
|
|
908
|
+
'action': [ 'python3',
|
|
909
|
+
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
910
|
+
'--no_resume',
|
|
911
|
+
'--no_auth',
|
|
912
|
+
'--bucket', 'chromium-browser-clang',
|
|
913
|
+
'-s', 'src/tools/clang/dsymutil/bin/dsymutil.arm64.sha1',
|
|
914
|
+
'-o', 'src/tools/clang/dsymutil/bin/dsymutil',
|
|
915
|
+
],
|
|
916
|
+
},
|
|
917
|
+
{
|
|
918
|
+
'name': 'dsymutil_mac_x64',
|
|
919
|
+
'pattern': '.',
|
|
920
|
+
'condition': 'host_os == "mac" and host_cpu == "x64"',
|
|
921
|
+
'action': [ 'python3',
|
|
922
|
+
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
923
|
+
'--no_resume',
|
|
924
|
+
'--no_auth',
|
|
925
|
+
'--bucket', 'chromium-browser-clang',
|
|
926
|
+
'-s', 'src/tools/clang/dsymutil/bin/dsymutil.x64.sha1',
|
|
927
|
+
'-o', 'src/tools/clang/dsymutil/bin/dsymutil',
|
|
928
|
+
],
|
|
929
|
+
},
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
recursedeps = [
|
|
933
|
+
'src/buildtools',
|
|
934
|
+
'src/third_party/instrumented_libs',
|
|
935
|
+
]
|