blob: 5321f73f5e55effa8182c9583f2434e959c15fcf [file] [log] [blame]
# 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': '15778.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:ad7b787aa0ee53a81bc88fb4f7fee7a3ff1e8c29',
# 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,
# 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.157.0.d2566cec-gomaip',
# screen-ai CIPD packages
# TODO(b/281483558): Use a tag to download the latest version of screen-ai
# (e.g. 'version:121.3') and find a way to automate updating //DEPS with it.
'screen_ai_linux': 'version:125.1',
'screen_ai_macos_amd64': 'version:125.1',
'screen_ai_macos_arm64': 'version:125.1',
'screen_ai_windows_amd64': 'version:125.1',
'screen_ai_windows_386': 'version:125.1',
# siso CIPD package version.
'siso_version': 'git_revision:250f32bbb04e51117d17db783c9535dd956f7d44',
# download libaom test data
'download_libaom_testdata': False,
# download libvpx test data
'download_libvpx_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': '18839479d25e2ef4cc16bdf6de1c5af53c56b2df',
# 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': 'dda581d538cb6532cda841444e7b4ceacde01ec9',
# 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': '4a1440d89b9d1b437516974ff7d1007c14414164',
# 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': '1b71a29fea97c41c4839b0f8a4758ebbd97691c5',
# 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': '7216df70d3118d245601f3ae11cba932a54a33e6',
# 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': 'e59b248dc42c129303e24df2d63e5081c86749d7',
# 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': '11f334121fd0d13830fefdf08041183da2d30ef3',
# 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:23.20240815.4.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': 'ff233bdd4cac0a0bf6e5cd45bda3406814cb2796',
# 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': 'ad617ab7dd5f23a67fcff244b3c3263ffcc7e66d',
# 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': 'f92c96550ad763639158587974cf11067ace743d',
# 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': '1da053e87f0487382404656edca98b85fe51f2fd',
# 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': '98d1cbf9f94fe9b1204ffe0a33b62cd6315d429e',
# 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': 'b3b134d515b9d1c0d82ac46c858dccb5e3086f8c',
# 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': '753587e2753f3eec29d14a5343bbacf084fb6ede',
# 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': '32eb84a95951fa3a0148fb3e6a1a02f830ded136',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling domato
# and whatever else without interference from each other.
'domato_revision': '739329a915173ab001880ec313659c3125a1c8fe',
# 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': '599c9103ad611851ab2eee3804ee80c3d0acca11',
# 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': 'DxwAZ3hD551Neu6ycuW5CPnXFrdleRBd93oX1eB_m9YC',
# 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': 'WihaseZR6cojZbkzIqwGhpTp92ztaGfqq8njBU8eTXYC',
# 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': 'kIXA-9XuCfOESodXEdOBkW5f1ytrGWdbp3HFp1I8A_0C',
# 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': '5a0f5a4bebf3217f841a101e197dc16fc35707f8',
# 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': '564bc5f694609ce48e257d31ab8df309f4795a8e',
# 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': 'f8c0fe750d94b7db23d193c0b1f31858c2537620',
# 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': '624da0f593bb8d7e146b9f42b06d8e6c80d032a3',
# 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': 'c2177c3316a49505dcd592ba21073f7abc25cd37',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling crabbyavif
# and whatever else without interference from each other.
'crabbyavif_revision': '381f3ef583e6b0fe8190dd929e6424632c5460b6',
# 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': '8d8b58a3f517ef8d1794baa28ca6ae7d19f65514',
# 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': '8d67f28d0281ac4330f283495b7f48286654ad7d',
# 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': '25eec0ff0fbf72098c469bcea81eaa1250d255f6',
# 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': '4dde80f09460c29fcdad519385de2aa21ba3557c',
# 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': 'a834cb253992175f4a896c5fb1352ecd91abf11e',
# 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': '116c20dae60d84a77005697cf29f72783f81b0f9',
# 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': '3c0acd2d4e73dd911309d9e970ba09d58bf23a62',
# 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': '8295336dd70f1201d42c22ab5b0861de38cf8fbf',
# 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': '14d16cd143ad1993900c276e37592956702443a9',
# 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': '08537fdd2b0990270ea0214a61dfd318f293bc15',
# If you change this, also update the libc++ revision in
# //buildtools/deps_revisions.gni.
'libcxx_revision': '627bf9cce8998515159693e44bcb6e0d734fcb01',
# GN CIPD package version.
'gn_version': 'git_revision:d010e218ca7077928ad7c9e9cc02fe43b5a8a0ad',
# ninja CIPD package.
'ninja_package': 'infra/3pp/tools/ninja/',
# ninja CIPD package version.
# https://chrome-infra-packages.appspot.com/p/infra/3pp/tools/ninja
'ninja_version': 'version:2@1.12.1.chromium.4',
# 'magic' variable to tell depot_tools that git submodules should be accepted
# but parity with DEPS file is expected.
'SUBMODULE_MIGRATION': 'True',
# condition to allowlist deps to be synced in Cider. Allowlisting is needed
# because not all deps are compatible with Cider. Once we migrate everything
# to be compatible we can get rid of this allowlisting mecahnism and remove
# this condition. Tracking bug for removing this condition: b/349365433
'non_git_source': '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',
# TODO(337061377): Move into a separate allowed gcs bucket list.
'chromium-ads-detection',
'chromium-browser-clang',
'chromium-clang-format',
'chromium-nodejs',
'chrome-linux-sysroot',
'chromium-fonts',
'chromium-style-perftest',
'chromium-telemetry',
'chromium-webrtc-resources',
'perfetto',
]
deps = {
# NPM dependencies for JavaScript code coverage.
'src/third_party/js_code_coverage/node_modules': {
'dep_type': 'gcs',
'bucket': 'chromium-nodejs',
'objects': [
{
'object_name': 'js_code_coverage/90d7a8ecae092222e585481b64e9928bcf4a689e723a0af4b94922280cd55a48',
'sha256sum': '90d7a8ecae092222e585481b64e9928bcf4a689e723a0af4b94922280cd55a48',
'size_bytes': 1472459,
'generation': 1716929997740855
}
]
},
'src/build/linux/debian_bullseye_amd64-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and checkout_x64 and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714590045814759,
'object_name': 'dec7a3a0fc5b83b909cba1b6d119077e0429a138eadef6bf5a0f2e03b1904631',
'sha256sum': 'dec7a3a0fc5b83b909cba1b6d119077e0429a138eadef6bf5a0f2e03b1904631',
'size_bytes': 129948576,
},
],
},
'src/build/linux/debian_bullseye_arm64-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and checkout_arm64 and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714589974958986,
'object_name': '308e23faba3174bd01accfe358467b8a40fad4db4c49ef629da30219f65a275f',
'sha256sum': '308e23faba3174bd01accfe358467b8a40fad4db4c49ef629da30219f65a275f',
'size_bytes': 108470444,
},
],
},
'src/build/linux/debian_bullseye_armhf-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and checkout_arm and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714589870087834,
'object_name': 'fe81e7114b97440262bce004caf02c1514732e2fa7f99693b2836932ad1c4626',
'sha256sum': 'fe81e7114b97440262bce004caf02c1514732e2fa7f99693b2836932ad1c4626',
'size_bytes': 99265992,
},
],
},
'src/build/linux/debian_bullseye_i386-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and (checkout_x86 or checkout_x64) and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714589989387491,
'object_name': 'b53933120bb08ffc38140a817e3f0f99782254a6bf9622271574fa004e8783a4',
'sha256sum': 'b53933120bb08ffc38140a817e3f0f99782254a6bf9622271574fa004e8783a4',
'size_bytes': 122047968,
},
],
},
'src/build/linux/debian_bullseye_mips64el-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and checkout_mips64 and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714590006168779,
'object_name': '783cb79f26736c69e8125788d95ffb65a28172349009d75188838a004280a92b',
'sha256sum': '783cb79f26736c69e8125788d95ffb65a28172349009d75188838a004280a92b',
'size_bytes': 103362108,
},
],
},
'src/build/linux/debian_bullseye_mipsel-sysroot': {
'bucket': 'chrome-linux-sysroot',
'condition': 'checkout_linux and checkout_mips and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'generation': 1714589936675352,
'object_name': 'fcf8c3931476dd097c58f2f5d44621c7090b135e85ab56885aa4b44f4bd6cdb5',
'sha256sum': 'fcf8c3931476dd097c58f2f5d44621c7090b135e85ab56885aa4b44f4bd6cdb5',
'size_bytes': 96161964,
},
],
},
'src/buildtools/win-format': {
'bucket': 'chromium-clang-format',
'condition': 'host_os == "win" and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'object_name': '49458d4c1e884a38308f8dc6a2c7eb55fc478755',
'sha256sum': '2f964ea355762d28005568a1cf888114d13b18631c618543586fb40589a22224',
'size_bytes': 3214848,
'generation': 1699478813805380,
'output_file': 'clang-format.exe',
},
],
},
'src/buildtools/mac-format': {
'bucket': 'chromium-clang-format',
'condition': 'host_os == "mac" and host_cpu == "x64" and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'object_name': '0b4bd257a1f4cd27d27d6919b0f9e52ecdfa8f1e',
'sha256sum': '0f3c38a6af0a04fd4161f1948f02e83a8827727e77242d3b5b61ae4f009a270a',
'size_bytes': 2869976,
'generation': 1699478821342910,
'output_file': 'clang-format',
},
],
},
'src/buildtools/mac_arm64-format': {
'bucket': 'chromium-clang-format',
'condition': 'host_os == "mac" and host_cpu == "arm64" and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'object_name': '96c34e77259c4cc1fc7bdf067fc058bfd341ab85',
'sha256sum': '66c5243cd530702defcbe18dffdbed0da9a3d1474b158a949580f6d269fbac17',
'size_bytes': 2847744,
'generation': 1699478828600976,
'output_file': 'clang-format',
},
],
},
'src/buildtools/linux64-format': {
'bucket': 'chromium-clang-format',
'condition': 'host_os == "linux" and non_git_source',
'dep_type': 'gcs',
'objects': [
{
'object_name': 'b42097ca924d1f1736a5a7806068fed9d7345eb4',
'sha256sum': '82df59a7d4390892c3eeaf0c8bf626e2869f1138a6ad3eb90dd51da0011ba630',
'size_bytes': 3539912,
'generation': 1699478806427152,
'output_file': 'clang-format',
},
],
},
'src/third_party/data_sharing_sdk': {
'packages': [
{
'package': 'chrome_internal/third_party/google3/data_sharing_sdk',
'version': '4aIIq-rDZI5mGeROQ42Oekdt9QAD6UNWE0TYMy1qGLQC',
},
],
'condition': 'checkout_src_internal',
'dep_type': 'cipd',
},
# Pull down Node binaries for WebUI toolchain.
# The Linux binary is always downloaded regardless of host os and architecture
# since remote node actions run on Linux worker.
# See also //third_party/node/node.gni
'src/third_party/node/linux': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-nodejs',
'objects': [
{
'object_name': '20.11.0/f9a337cfa0e2b92d3e5c671c26b454bd8e99769e',
'sha256sum': '0ba9cc91698c1f833a1fdc1fe0cb392d825ad484c71b0d84388ac80bfd3d6079',
'size_bytes': 43716484,
'generation': 1711567575687220,
'output_file': 'node-linux-x64.tar.gz',
},
],
},
# The Mac x64/arm64 binaries are downloaded regardless of host architecture
# since it's possible to cross-compile for the other architecture. This can
# cause problems for tests that use node if the test device architecture does
# not match the architecture of the compile machine.
'src/third_party/node/mac': {
'dep_type': 'gcs',
'condition': 'host_os == "mac" and non_git_source',
'bucket': 'chromium-nodejs',
'objects': [
{
'object_name': '20.11.0/e3c0fd53caae857309815f3f8de7c2dce49d7bca',
'sha256sum': '20affacca2480c368b75a1d91ec1a2720604b325207ef0cf39cfef3c235dad19',
'size_bytes': 40649378,
'generation': 1711567481181885,
'output_file': 'node-darwin-x64.tar.gz',
},
],
},
'src/third_party/node/mac_arm64': {
'dep_type': 'gcs',
'condition': 'host_os == "mac" and non_git_source',
'bucket': 'chromium-nodejs',
'objects': [
{
'object_name': '20.11.0/5b5681e12a21cda986410f69e03e6220a21dd4d2',
'sha256sum': 'cecb99fbb369a9090dddc27e228b66335cd72555b44fa8839ef78e56c51682c5',
'size_bytes': 38989321,
'generation': 1711567557161126,
'output_file': 'node-darwin-arm64.tar.gz',
},
],
},
'src/third_party/node/win': {
'dep_type': 'gcs',
'condition': 'host_os == "win" and non_git_source',
'bucket': 'chromium-nodejs',
'objects': [
{
'object_name': '20.11.0/2cb36010af52bc5e2a2d1e3675c10361c80d8f8d',
'sha256sum': '5da5e201155bb3ea99134b404180adebcfa696b0dbc09571d01a09ca5489f53e',
'size_bytes': 70017688,
'generation': 1705443750949255,
'output_file': 'node.exe',
},
],
},
# Pull down NPM dependencies for WebUI toolchain.
'src/third_party/node/node_modules': {
'bucket': 'chromium-nodejs',
'dep_type': 'gcs',
'condition': 'non_git_source',
'objects': [
{
'object_name': 'b0e3bb6a66b904836731f881ef00b5cd69d92dea',
'sha256sum': '4fa62256b582cc15adde3f09bf98616c485ef0bd5fbc8394bd07409b79c2a7f4',
'size_bytes': 8278045,
'generation': 1724092039630288,
'output_file': 'node_modules.tar.gz',
},
],
},
'src/third_party/llvm-build/Release+Asserts': {
'dep_type': 'gcs',
'bucket': 'chromium-browser-clang',
'condition': 'not llvm_force_head_revision',
'objects': [
{
'object_name': 'Linux_x64/clang-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '32ac9d9864a6bd99242f1a97778b3a074ac1151ce3eca369903f2ef5337c787a',
'size_bytes': 52250752,
'generation': 1723267014378582,
'condition': 'host_os == "linux" and non_git_source',
},
{
'object_name': 'Linux_x64/clang-tidy-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '5fd3fb73ceef73593fa09f8228283aec9f7798b648bf450e87f071a097be213b',
'size_bytes': 13217676,
'generation': 1723267014627839,
'condition': 'host_os == "linux" and checkout_clang_tidy and non_git_source',
},
{
'object_name': 'Linux_x64/clangd-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '6e1fe97f8b7131591233d8a2df1ff289ffb878c3fc6834c978a86273f7c00b6b',
'size_bytes': 26125984,
'generation': 1723267014767012,
'condition': 'host_os == "linux" and checkout_clangd and non_git_source',
},
{
'object_name': 'Linux_x64/llvm-code-coverage-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'ef317481472926d3e2a82e2d2a02cde78685002b4c9923df476108906022d792',
'size_bytes': 2374748,
'generation': 1723267015213805,
'condition': 'host_os == "linux" and checkout_clang_coverage_tools and non_git_source',
},
{
'object_name': 'Linux_x64/llvmobjdump-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '02be68f7c7c7bf679e1abff2745306b8385275017c89b2b13f638a941785f8c5',
'size_bytes': 5386480,
'generation': 1723267014930087,
'condition': '(checkout_linux or checkout_mac or checkout_android and host_os != "mac") and non_git_source',
},
{
'object_name': 'Mac/clang-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '5df8a609a7d2511343fbc20af1de3ed1682c3703fc074f21af1bf8bc2f58e491',
'size_bytes': 47200408,
'generation': 1723267016534642,
'condition': 'host_os == "mac" and host_cpu == "x64"',
},
{
'object_name': 'Mac/clang-mac-runtime-library-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'ffc72ff3fca85f31340c164aab480bd2babfaa6219ff12e93b81f0056309da55',
'size_bytes': 869616,
'generation': 1723267034708598,
'condition': 'checkout_mac and not host_os == "mac"',
},
{
'object_name': 'Mac/clang-tidy-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'd02b9a39491d2ff3a291778de87b2a72f5885d01a8093518cb5612b97353ac2a',
'size_bytes': 12805336,
'generation': 1723267016822831,
'condition': 'host_os == "mac" and host_cpu == "x64" and checkout_clang_tidy',
},
{
'object_name': 'Mac/clangd-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'ce09141be75350f0f932fcda14d8b906d2869674d79ef5a10a3e60a9a8d3ccee',
'size_bytes': 26372428,
'generation': 1723267016957114,
'condition': 'host_os == "mac" and host_cpu == "x64" and checkout_clangd',
},
{
'object_name': 'Mac/llvm-code-coverage-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'c0ac62ff01f1ce6e5d30134cb0f83fd8eabf858dfb33d07209a6b40d8f1ae789',
'size_bytes': 2248664,
'generation': 1723267017743181,
'condition': 'host_os == "mac" and host_cpu == "x64" and checkout_clang_coverage_tools',
},
{
'object_name': 'Mac_arm64/clang-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'f4a384ecdaa051ba4786c9e6c46f9101a751b1a5c5ad4bf0d217c4ba71e0ff30',
'size_bytes': 42737720,
'generation': 1723267036349494,
'condition': 'host_os == "mac" and host_cpu == "arm64"',
},
{
'object_name': 'Mac_arm64/clang-tidy-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '2769378fd2891af945f8d29b5eaf05b4ab0450b2d086539df1c78c684e64be14',
'size_bytes': 11740656,
'generation': 1723267036269250,
'condition': 'host_os == "mac" and host_cpu == "arm64" and checkout_clang_tidy',
},
{
'object_name': 'Mac_arm64/clangd-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'a35dfb99903a487e06d685712e461125978c76ba8eaa99e9f5742e63d3e67444',
'size_bytes': 23470088,
'generation': 1723267036383208,
'condition': 'host_os == "mac" and host_cpu == "arm64" and checkout_clangd',
},
{
'object_name': 'Mac_arm64/llvm-code-coverage-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '574a0d7c560aae964d8bdcd85f0145077b1324e79eee4a3dd1636ab7aefc59e5',
'size_bytes': 2010540,
'generation': 1723267036758678,
'condition': 'host_os == "mac" and host_cpu == "arm64" and checkout_clang_coverage_tools',
},
{
'object_name': 'Win/clang-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'e255af29c29a741cf39c3000b612466ff805a99766d26ac86ec2afcb4ca0c922',
'size_bytes': 44019080,
'generation': 1723267056892790,
'condition': 'host_os == "win"',
},
{
'object_name': 'Win/clang-tidy-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'a86aa579fc90a053b94874a8c79daeb7f3bbd77107fb460c6d0a7959cefb7e61',
'size_bytes': 13055812,
'generation': 1723267057185720,
'condition': 'host_os == "win" and checkout_clang_tidy',
},
{
'object_name': 'Win/clang-win-runtime-library-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '6d89f358769ef50d008194e0ab9e8d4d80b8d6ffc0095ed44aef925d900aa743',
'size_bytes': 2873772,
'generation': 1723267074433695,
'condition': 'checkout_win and not host_os == "win"',
},
{
'object_name': 'Win/clangd-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'e2b69a726f794005a333ae66a0ef5c0258872a19bc4506eff23f23fdee75ba5c',
'size_bytes': 25053884,
'generation': 1723267057351794,
'condition': 'host_os == "win" and checkout_clangd',
},
{
'object_name': 'Win/llvm-code-coverage-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': 'e68e7c7ecbc7b2fc4f7ec3e97565a7f12bab1d195d22bc76959f3a88b1462ac1',
'size_bytes': 2376020,
'generation': 1723267057803475,
'condition': 'host_os == "win" and checkout_clang_coverage_tools',
},
{
'object_name': 'Win/llvmobjdump-llvmorg-20-init-1009-g7088a5ed-10.tar.xz',
'sha256sum': '801714415847b8efea7252b1072b8647f92ba0e946480b3db9b156900e42ab55',
'size_bytes': 5392812,
'generation': 1723267057506056,
'condition': 'checkout_linux or checkout_mac or checkout_android and host_os == "win"',
},
]
},
# Update prebuilt Rust toolchain.
'src/third_party/rust-toolchain': {
'dep_type': 'gcs',
'bucket': 'chromium-browser-clang',
'objects': [
{
'object_name': 'Linux_x64/rust-toolchain-595316b4006932405a63862d8fe65f71a6356293-5-llvmorg-20-init-1009-g7088a5ed.tar.xz',
'sha256sum': 'b1630f6ac2b100205e1d4076b6f11e50f30fd6f0868d39c6ffa379fd46ccf0c3',
'size_bytes': 152042272,
'generation': 1723704715504105,
'condition': 'host_os == "linux" and non_git_source',
},
{
'object_name': 'Mac/rust-toolchain-595316b4006932405a63862d8fe65f71a6356293-5-llvmorg-20-init-1009-g7088a5ed.tar.xz',
'sha256sum': '18a6ecce908a6d29803e81237b141c9fd4285a2d4ee0320ccdcef828678ef1aa',
'size_bytes': 144417312,
'generation': 1723704716865537,
'condition': 'host_os == "mac" and host_cpu == "x64"',
},
{
'object_name': 'Mac_arm64/rust-toolchain-595316b4006932405a63862d8fe65f71a6356293-5-llvmorg-20-init-1009-g7088a5ed.tar.xz',
'sha256sum': '65c70a177484cdddd3729c22c10f47f2393d606536723e43cb9cdbac8747d305',
'size_bytes': 135559128,
'generation': 1723704718243651,
'condition': 'host_os == "mac" and host_cpu == "arm64"',
},
{
'object_name': 'Win/rust-toolchain-595316b4006932405a63862d8fe65f71a6356293-5-llvmorg-20-init-1009-g7088a5ed.tar.xz',
'sha256sum': '8253b545b6bebf9599fd0a53776f5f0eba05d2cb4d3dc1b1c553b842c30fc3e9',
'size_bytes': 208929904,
'generation': 1723704719593867,
'condition': 'host_os == "win"',
},
],
},
'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" and non_git_source',
},
'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'),
}
],
'condition': 'non_git_source',
'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:2@httpd2.4.38.php7.3.31.chromium.3',
},
],
'dep_type': 'cipd',
'condition': 'checkout_mac or checkout_ios',
},
'src/third_party/apache-mac-arm64': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/mac-arm64',
'version': 'version:2@httpd2.4.38.php7.3.31.chromium.3',
},
],
'dep_type': 'cipd',
'condition': 'checkout_mac or checkout_ios',
},
'src/third_party/apache-linux': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/linux-amd64',
'version': 'version:2@httpd2.4.38.php7.3.31.chromium.3',
},
],
'dep_type': 'cipd',
'condition': '(host_os == "linux") and non_git_source',
},
'src/third_party/apache-windows-arm64': {
'packages': [
{
'package': 'infra/3pp/tools/httpd-php/windows-arm64',
'version': 'version:2@httpd2.4.55-php8.2.5.chromium.6.chromium.5',
}
],
'dep_type': 'cipd',
'condition': 'checkout_win'
},
'src/third_party/aosp_dalvik/cipd': {
'packages': [
{
'package': 'chromium/third_party/aosp_dalvik/linux-amd64',
'version': 'version:2@13.0.0_r24.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/cronet_android_mainline_clang/linux-amd64': {
'packages': [
{
'package': 'chromium/third_party/cronet_android_mainline_clang/linux-amd64',
'version': 'YBJ6tRxent4zFvyGNyAxWQ160dRHZ6vj7in9Al3VeGAC',
},
],
'condition': 'checkout_android and host_os == "linux"',
'dep_type': 'cipd',
},
'src/android_webview/tools/cts_archive/cipd': {
'packages': [
{
'package': 'chromium/android_webview/tools/cts_archive',
'version': 'UYQZhJpB3MWpJIAcesI-M1bqRoTghiKCYr_SD9tPDewC',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/chrome/browser/resources/preinstalled_web_apps/internal': {
'url': Var('chrome_git') + '/chrome/components/default_apps.git' + '@' + '62adcf4936491ee7281185da1b2598149320c4e3',
'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/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_linux and non_git_source',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_linux64',
'version': 'JprQGBegsBtPiDQj3wsJwiFtJn222Du_mqAd9ezYu3QC',
},
],
},
'src/third_party/updater/chrome_mac_universal/cipd': {
'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/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_mac_universal_prod',
# 129.0.6651.0
'version': 'IrAigaqukp1GbaksroZcR3Jo0oOYKg9kzatjzNNbXKQC',
},
],
},
'src/third_party/updater/chrome_win_arm64/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chrome_win_arm64',
'version': 'lVDOE8L-CQNHAhRQpy3gM0lNESM1J_U7BSo9bA5pynkC',
},
],
},
'src/third_party/updater/chrome_win_x86/cipd': {
'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/cipd': {
'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/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_linux and non_git_source',
'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/cipd': {
'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/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_mac',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_mac_arm64',
'version': 'Va20qxSst3lq4WfEZlWiwzXCpSo5XbhhuqJXyqzvhF8C',
},
],
},
'src/third_party/updater/chromium_win_arm64/cipd': {
'dep_type': 'cipd',
'condition': 'checkout_win',
'packages': [
{
'package': 'chromium/third_party/updater/chromium_win_arm64',
'version': 'qm05-lSjvBHQOtnBXxv3SB4y-hxAOOURxyr8CXPvcfAC',
},
],
},
'src/third_party/updater/chromium_win_x86/cipd': {
'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/cipd': {
'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' + '@' + 'a24fec9095b55cc04a1286d3cdc35ca332dba205',
'condition': 'checkout_chromium_autofill_test_dependencies',
},
'src/chrome/test/data/password/captured_sites/artifacts': {
'url': Var('chrome_git') + '/chrome/test/captured_sites/password.git' + '@' + '89486886cbaf6319774585998566766a803037eb',
'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' + '@' +
'fae597f6035cb5fc3544b61e3674bf3712e3d5df',
'condition': 'checkout_android and checkout_src_internal',
},
'src/docs/website': {
'url': Var('chromium_git') + '/website.git' + '@' + 'eb6f57b565026125da5c7d5d36726108d602a29b',
},
'src/ios/third_party/earl_grey2/src': {
'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '8504ed1f0137efe021f1dab0ae8197bad54dbdbf',
'condition': 'checkout_ios',
},
'src/ios/third_party/edo/src': {
'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + 'afdcbb02534ac7aeef1ecf793ebf84f699f8299f',
'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' + '@' + 'eb2c2f842eeb8bd33fc3ede3ea6f6474ff2f6123',
'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/testing/libfuzzer/fuzzers/wasm_corpus':
Var('chromium_git') + '/v8/fuzzer_wasm_corpus.git' + '@' + 'f650ff816f2ef227f61ea2e9f222aa69708ab367',
'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'),
},
],
'condition': 'non_git_source',
'dep_type': 'cipd',
},
'src/third_party/accessibility_test_framework/src': {
'url': Var('chromium_git') + '/external/github.com/google/Accessibility-Test-Framework-for-Android.git' + '@' + '4a764c690353ea136c82f1a696a70bf38d1ef5fe',
},
'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': 'Idl-vYnWGnM8K3XJhM3h6zjYVDXlnljVz3FE00V9IM8C',
},
],
'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': 'JtKBKwZ4O-6avfvuQNOAMYqUwQAMGX10y-GrIlJPo_wC',
},
],
'condition': 'checkout_android_native_support',
'dep_type': 'cipd',
},
'src/third_party/androidx/cipd': {
'packages': [
{
'package': 'chromium/third_party/androidx',
'version': 'Z_UgTJ-Dab8RX1j4X93NJFRnpoZTUU584RrrSV0zjU8C',
},
],
'condition': 'checkout_android and non_git_source',
'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/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_system_sdk/public',
'version': 'XzzECzCzGLrccJS1U-HdmM5VMh9BotgQ_mWhFQ464PwC',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/aapt2': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/aapt2',
'version': 'cfGQ9GV4juNnGZIPzTmaL3ehiZM1hs6UsB5HUA8fT6oC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/apkanalyzer/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/apkanalyzer',
'version': 'O8Lyta0y6jpvFD1rbPp7trvcM2rdny3ngyhyeYAWXK4C',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/bundletool/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/bundletool',
'version': 'sZ24OFOduSafn8fvR3ajsGS6KP_oS_Tq0Cw3SA8XiD0C',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/error_prone/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/error_prone',
'version': 'YqeN_FF5AQD-nio02hA2KgnBCJfq7qvNBckmETpkmVUC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/error_prone_javac/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/error_prone_javac',
'version': '7EcHxlEXEaLRWEyHIAxf0ouPjkmN1Od6jkutuo0sfBIC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/lint/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/lint',
'version': 'MykJKlnPCySreZNaZ8U98JUYYanLiIOaBxpSNKqQodkC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_build_tools/manifest_merger/cipd': {
'packages': [
{
'package': 'chromium/third_party/android_build_tools/manifest_merger',
'version': '70I-qA6r12xulCU-J0jGGcYtD9ywe1G8qPVH6o4MSBQC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_sdk/public': {
'packages': [
{
'package': 'chromium/third_party/android_sdk/public/build-tools/35.0.0',
'version': Var('android_sdk_build-tools_version'),
},
{
'package': 'chromium/third_party/android_sdk/public/emulator',
'version': Var('android_sdk_emulator_version'),
},
{
'package': 'chromium/third_party/android_sdk/public/platform-tools',
'version': Var('android_sdk_platform-tools_version'),
},
{
'package': 'chromium/third_party/android_sdk/public/platforms/android-35',
'version': Var('android_sdk_platforms_version'),
},
{
'package': 'chromium/third_party/android_sdk/public/cmdline-tools',
'version': 'fv6JzkTqfxfIbmsRC8u1b2y0EQO7yQDMDzY3-g0NVu4C',
},
],
'condition': 'checkout_android_native_support',
'dep_type': 'cipd',
},
'src/third_party/angle':
Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
'src/third_party/anonymous_tokens/src':
Var('chromium_git') + '/external/github.com/google/anonymous-tokens.git' + '@' + '6ea6ec78f9e4998d0a7a5677b2aec08f0ac858f8',
'src/third_party/blink/renderer/core/css/perftest_data': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-style-perftest',
'objects': [
{
'object_name': 'e9ce994346c62f8c9fd6d0cecb2b2b0b93b4c2d8',
'sha256sum': '519019df16c628c6c0893df18928faeaa3150a9d8f26a787a16ce7c6b2cec2ad',
'size_bytes': 601672,
'generation': 1664794185950162,
'output_file': 'ecommerce.json',
},
{
'object_name': '756068da5e551516b23b0ba133e55c144f623d38',
'sha256sum': '84ef87a8163335a95111d9709306596f96742539da0b34fbe7397f799946a168',
'size_bytes': 2156935,
'generation': 1664794188995509,
'output_file': 'encyclopedia.json',
},
{
'object_name': '314e4e0d5e89ea9e9e9a234c617b4413adf48aa9',
'sha256sum': 'a721ada40011a286631baae6d76878f2023ff000151792228c83b1958ea8a197',
'size_bytes': 608840,
'generation': 1664794191929032,
'output_file': 'extension.json',
},
{
'object_name': '3a19b42a7c46257b716d55d6733f070c87180b1e',
'sha256sum': 'f203ff9e8c8a6a3b714f0a26db38cc940544a907435c62c79b21f4bd3f8bee8e',
'size_bytes': 1750837,
'generation': 1664794194891567,
'output_file': 'news.json',
},
{
'object_name': 'fdc43ee18cbd65487249441849f58aa13484aaef',
'sha256sum': '0e92de92f49abc9a521f7175106c80744196f8cefc0263bc0f4a6b4f724a7d10',
'size_bytes': 1310798,
'generation': 1664794197855470,
'output_file': 'search.json',
},
{
'object_name': '7fc9338af75b7d9d185c91ddf262a356def5623d',
'sha256sum': '34e92acae8aade2a186abe79ed1f379c266f04f72f1eb54bd3a912e889bc5cc0',
'size_bytes': 2280846,
'generation': 1664794200867034,
'output_file': 'social1.json',
},
{
'object_name': 'c2d7e9ce67522dad138c7feb0a6911b828bfb130',
'sha256sum': '95c6b148577b891310c024b2daa5d68faf644a37707ac0cb21501eefe8a399a3',
'size_bytes': 411708,
'generation': 1664794203829582,
'output_file': 'social2.json',
},
{
'object_name': '031d5599c8a21118754e30dbea141be66104f556',
'sha256sum': '8e7b765d72bb8e7742f5bf955f4bf64d5469f61197dad8b632304095a52322d7',
'size_bytes': 3203922,
'generation': 1664794206824773,
'output_file': 'sports.json',
},
{
'object_name': '8aac3db2a8c9e44babec81e539a3d60aeab4985c',
'sha256sum': '6aeb0036dfafaf5e905abdb0ffe515a3952ffe35a7c59afb0fc8b233b27c6ce4',
'size_bytes': 5902660,
'generation': 1664794209886788,
'output_file': 'video.json',
},
],
},
'src/third_party/content_analysis_sdk/src':
Var('chromium_git') + '/external/github.com/chromium/content_analysis_sdk.git' + '@' + '9a408736204513e0e95dd2ab3c08de0d95963efc',
'src/third_party/dav1d/libdav1d':
Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '5ef6b241f05a2b9058b58136da4b25842aefba96',
'src/third_party/dawn':
Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'),
'src/third_party/highway/src':
Var('chromium_git') + '/external/github.com/google/highway.git' + '@' + Var('highway_revision'),
'src/third_party/apache-portable-runtime/src': {
'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6',
'condition': 'checkout_android',
},
'src/third_party/barhopper': {
'url': Var('chrome_git') + '/chrome/deps/barhopper.git' + '@' + '865bd06ef4a839b0a15d17e38e25f8911e4cdf9f',
'condition': 'checkout_src_internal and checkout_chromeos',
},
'src/third_party/google_benchmark/src':
Var('chromium_git') + '/external/github.com/google/benchmark.git' + '@' + '344117638c8ff7e239044fd0fa7085839fc03021',
# Download test data for Maps telemetry_gpu_integration_test.
'src/tools/perf/page_sets/maps_perf_test/dataset': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-telemetry',
'objects': [
{
'object_name': 'e6bf26977c2fd80c18789d1f279d474096a7b0d1',
'sha256sum': 'f5f7fe360ad2b9c3d9dda2612f17336c0541bac15b4e4992f2c167e059a190fa',
'size_bytes': 3285237,
'generation': 1513305740113238,
'output_file': 'load_dataset',
},
],
},
'src/third_party/boringssl/src':
Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
'src/third_party/breakpad/breakpad':
Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '1420017c7f9fb910a9ae878d7bf5a6423fba3c59',
'src/third_party/cast_core/public/src':
Var('chromium_git') + '/cast_core/public' + '@' + '71f51fd6fa45fac73848f65421081edd723297cd',
'src/third_party/catapult':
Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
'src/third_party/ced/src':
Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5',
'src/third_party/checkstyle/cipd': {
'packages': [
{
'package': 'chromium/third_party/checkstyle',
'version': 'vnbLn0H_kr5nVeziAzIlGqjH1LhxEslL7O0w-UKTHh4C',
},
],
# Needed on Linux for use on chromium_presubmit.
'condition': '(checkout_android or checkout_linux) and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/chromium-variations':
Var('chromium_git') + '/chromium-variations.git' + '@' + Var('chromium_variations_revision'),
# Dependency for ChromeVox.
'src/third_party/chromevox/third_party/sre/src': {
'url': Var('chromium_git') + '/external/github.com/zorkow/speech-rule-engine.git' + '@' + '5a56d4d33d67dc7c692da032d2ebbdefd7de780e',
'condition': 'checkout_chromeos',
},
# Tools used when building Chrome for Chrome OS. This affects both the Simple
# Chrome workflow, as well as the chromeos-chrome ebuild.
'src/third_party/chromite': {
'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '4f24dfefcef2eb2ea7d77c38c9887469e36508ce',
'condition': 'checkout_chromeos',
},
'src/third_party/cld_3/src':
Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'b48dc46512566f5a2d41118c8c1116c4f96dc661',
'src/third_party/colorama/src':
Var('chromium_git') + '/external/colorama.git' + '@' + '3de9f013df4b470069d03d250224062e8cf15c49',
'src/third_party/cpu_features/src':
Var('chromium_git') + '/external/github.com/google/cpu_features.git' + '@' + '936b9ab5515dead115606559502e3864958f7f6e',
'src/third_party/cpuinfo/src':
Var('chromium_git') + '/external/github.com/pytorch/cpuinfo.git' + '@' + 'ca678952a9a8eaa6de112d154e8e104b22f9ab3f',
'src/third_party/crc32c/src':
Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + 'fa5ade41ee480003d9c5af6f43567ba22e4e17e6',
# For Linux and Chromium OS.
'src/third_party/cros_system_api': {
'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + '0d81049b68d1df554abcc80f9c273c07d0f761b5',
'condition': 'checkout_linux or checkout_chromeos',
},
'src/third_party/crossbench':
Var('chromium_git') + '/crossbench.git' + '@' + Var('crossbench_revision'),
'src/third_party/crubit/src': {
'url': Var('chromium_git') + '/external/github.com/google/crubit.git' + '@' + Var('crubit_revision'),
'condition': 'checkout_crubit',
},
'src/third_party/depot_tools':
Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '04a2e71a925ee4df863d6973df488dac0e087505',
'src/third_party/devtools-frontend/src':
Var('chromium_git') + '/devtools/devtools-frontend' + '@' + Var('devtools_frontend_revision'),
'src/third_party/devtools-frontend-internal': {
'url': Var('chrome_git') + '/devtools/devtools-internal.git' + '@' + 'a3565b58b95bfaf294073ea3dd46e6bba2ac74f3',
'condition': 'checkout_src_internal',
},
'src/third_party/dom_distiller_js/dist':
Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '199de96b345ada7c6e7e6ba3d2fa7a6911b8767d',
'src/third_party/eigen3/src':
Var('chromium_git') + '/external/gitlab.com/libeigen/eigen.git' + '@' + '33d0937c6bdf5ec999939fb17f2a553183d14a74',
'src/third_party/emoji-metadata/src': {
'url': Var('chromium_git') + '/external/github.com/googlefonts/emoji-metadata' + '@' + '045f146fca682a836e01cd265171312bfb300e06',
'condition': 'checkout_chromeos',
},
'src/third_party/espresso': {
'packages': [
{
'package': 'chromium/third_party/espresso',
'version': '5LoBT0j383h_4dXbnap7gnNQMtMjpbMJD1JaGIYNj-IC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/farmhash/src':
Var('chromium_git') + '/external/github.com/google/farmhash.git' + '@' + '816a4ae622e964763ca0862d9dbd19324a1eaf45',
'src/third_party/fast_float/src':
Var('chromium_git') + '/external/github.com/fastfloat/fast_float.git' + '@' + '3e57d8dcfb0a04b5a8a26b486b54490a2e9b310f',
'src/third_party/ffmpeg':
Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + Var('ffmpeg_revision'),
'src/third_party/flac':
Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '689da3a7ed50af7448c3f1961d1791c7c1d9c85c',
'src/third_party/flatbuffers/src':
Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + 'fb9afbafc7dfe226b9db54d4923bfb8839635274',
# Used for embedded builds. CrOS & Linux use the system version.
'src/third_party/fontconfig/src': {
'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + '14d466b30a8ab4a9d789977ed94f2c30e7209267',
'condition': 'checkout_linux',
},
'src/third_party/fp16/src':
Var('chromium_git') + '/external/github.com/Maratyszcza/FP16.git' + '@' + '0a92994d729ff76a58f692d3028ca1b64b145d91',
'src/third_party/gemmlowp/src':
Var('chromium_git') + '/external/github.com/google/gemmlowp.git' + '@' + '13d57703abca3005d97b19df1f2db731607a7dc2',
'src/third_party/grpc/src': {
'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '822dab21d9995c5cf942476b35ca12a1aa9d2737',
},
'src/third_party/freetype/src':
Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'),
'src/third_party/freetype-testing/src':
Var('chromium_git') + '/external/github.com/freetype/freetype2-testing.git' + '@' + Var('freetype_testing_revision'),
'src/third_party/fxdiv/src':
Var('chromium_git') + '/external/github.com/Maratyszcza/FXdiv.git' + '@' + '63058eff77e11aa15bf531df5dd34395ec3017c8',
'src/third_party/harfbuzz-ng/src':
Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'),
'src/third_party/instrumented_libs': {
'url': Var('chromium_git') + '/chromium/third_party/instrumented_libraries.git' + '@' + 'bb6dbcf2df7a9beb34c3773ef4df161800e3aed9',
'condition': 'checkout_instrumented_libraries',
},
'src/third_party/jszip/src': {
'url': Var('chromium_git') + '/external/github.com/Stuk/jszip.git' + '@' + '2ceb998e29d4171b4f3f2ecab1a2195c696543c0',
'condition': 'checkout_ios',
},
'src/third_party/emoji-segmenter/src':
Var('chromium_git') + '/external/github.com/google/emoji-segmenter.git' + '@' + Var('emoji_segmenter_revision'),
'src/third_party/ots/src':
Var('chromium_git') + '/external/github.com/khaledhosny/ots.git' + '@' + Var('ots_revision'),
'src/third_party/libgav1/src':
Var('chromium_git') + '/codecs/libgav1.git' + '@' + 'a2f139e9123bdb5edf7707ac6f1b73b3aa5038dd',
'src/third_party/google_toolbox_for_mac/src': {
'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'),
'condition': 'checkout_ios or checkout_mac',
},
'src/third_party/google-truth/src': {
'url': Var('chromium_git') + '/external/github.com/google/truth.git' + '@' + '33387149b465f82712a817e6744847fe136949b3',
'condition': 'checkout_android',
},
'src/third_party/googletest/src':
Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'),
'src/third_party/gperf': {
'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1',
'condition': 'checkout_win',
},
'src/third_party/cardboard/src' : {
'url': Var('chromium_git') + '/external/github.com/googlevr/cardboard/' + '@' + '596352df971aacede278a50f55ff1fecc4e81afc',
'condition': 'checkout_android',
},
'src/third_party/arcore-android-sdk/src': {
'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '80036a515b38deca1ad080b7c436856b454358f5',
'condition': 'checkout_android',
},
'src/third_party/arcore-android-sdk-client/cipd': {
'packages': [
{
'package': 'chromium/third_party/arcore-android-sdk-client',
'version': 'gHDxvBRNpM868XTWU9SdfMqtVYTFSvK2tLRAKq4V37wC',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
# Exists for rolling the Fuchsia SDK. Check out of the SDK should always
# rely on the hook running |update_sdk.py| script below.
'src/third_party/fuchsia-sdk/sdk': {
'packages': [
{
'package': Var('fuchsia_sdk_cipd_prefix') + '${{platform}}',
'version': Var('fuchsia_version'),
},
],
'condition': 'checkout_fuchsia_no_hooks',
'dep_type': 'cipd',
},
'src/third_party/google-java-format/cipd': {
'packages': [
{
'package': 'chromium/third_party/google-java-format',
'version': 'AQn4F5NfPAs_GKX-z3OW_Q7-yJ9N6tPrDnmnDScjkTEC',
},
],
# Needed on Linux for use on chromium_presubmit.
'condition': '(checkout_android or checkout_linux) and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/hamcrest': {
'packages': [
{
'package': 'chromium/third_party/hamcrest',
'version': '37eccfc658fe79695d6abb6dd497463c4372032f',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/hunspell_dictionaries':
Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '41cdffd71c9948f63c7ad36e1fb0ff519aa7a37e',
'src/third_party/icu':
Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9408c6fd4a39e6fef0e1c4077602e1c83b15f3fb',
'src/third_party/icu4j': {
'packages': [
{
'package': 'chromium/third_party/icu4j',
'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/jacoco': {
'packages': [
{
'package': 'chromium/third_party/jacoco',
'version': 'DWx1sUw2_F3SN9e21bI3W5vGT08eR3HQpXLZy6f-AnwC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/javalang/src': {
'url': Var('chromium_git') + '/external/github.com/c2nes/javalang.git' + '@' + '0664afb7f4d40254312693f2e833c1ed4ac551c7',
'condition': 'checkout_android',
},
'src/third_party/jdk/current': {
'packages': [
{
'package': 'chromium/third_party/jdk',
'version': 'sewpT0JmZAgFX_ZzmWhbYPmcPGeDa9os_4Q74ZFbo5sC',
},
],
# Needed on Linux for use on chromium_presubmit (for checkstyle).
'condition': '(checkout_android or checkout_linux) and non_git_source',
'dep_type': 'cipd',
},
# Deprecated - only use for tools which are broken our real JDK.
'src/third_party/jdk11': {
'packages': [
{
'package': 'chromium/third_party/jdk',
# Do not update this hash - any newer hash will point to JDK17+.
'version': 'egbcSHbmF1XZQbKxp_PQiGLFWlQK65krTGqQE-Bj4j8C',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/jsoncpp/source':
Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git'
+ '@' + '42e892d96e47b1f6e29844cc705e148ec4856448', # release 1.9.4
'src/third_party/junit/src': {
'url': Var('chromium_git') + '/external/junit.git' + '@' + '0eb5ce72848d730da5bd6d42902fdd6a8a42055d',
'condition': 'checkout_android',
},
'src/third_party/kotlin_stdlib': {
'packages': [
{
'package': 'chromium/third_party/kotlin_stdlib',
'version': 'uIDeh6tR1JKzni6A2gGQznLnU9y1a7dsDEZAA6PTph8C',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/kotlinc/current': {
'packages': [
{
'package': 'chromium/third_party/kotlinc',
'version': 'WZnvRnrRxAH_l-qK9RKczWmyPdblSiz87bSG3naRB9QC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/leveldatabase/src':
Var('chromium_git') + '/external/leveldb.git' + '@' + 'eb31d19999fdf2018df4ae815a0fe130dd407532',
'src/third_party/libFuzzer/src':
Var('chromium_git') + '/external/github.com/llvm/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'),
'src/third_party/fuzztest/src':
Var('chromium_git') + '/external/github.com/google/fuzztest.git' + '@' + Var('fuzztest_revision'),
'src/third_party/domato/src':
Var('chromium_git') + '/external/github.com/googleprojectzero/domato.git' + '@' + Var('domato_revision'),
'src/third_party/libaddressinput/src':
Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'e8712e415627f22d0b00ebee8db99547077f39bd',
'src/third_party/libaom/source/libaom':
Var('aomedia_git') + '/aom.git' + '@' + '68bc71348beb562d1a83b18d36ae875bc45a585e',
'src/third_party/libavif/src':
Var('chromium_git') + '/external/github.com/AOMediaCodec/libavif.git' + '@' + Var('libavif_revision'),
'src/third_party/crabbyavif/src':
Var('chromium_git') + '/external/github.com/webmproject/CrabbyAvif.git' + '@' + Var('crabbyavif_revision'),
'src/third_party/libavifinfo/src':
Var('aomedia_git') + '/libavifinfo.git' + '@' + Var('libavifinfo_revision'),
'src/third_party/nearby/src':
Var('chromium_git') + '/external/github.com/google/nearby-connections.git' + '@' + Var('nearby_revision'),
'src/third_party/beto-core/src':
Var('betocore_git') + '/beto-core.git' + '@' + Var('betocore_revision'),
'src/third_party/securemessage/src':
Var('chromium_git') + '/external/github.com/google/securemessage.git' + '@' + Var('securemessage_revision'),
'src/third_party/speedometer/v3.0':
Var('chromium_git') + '/external/github.com/WebKit/Speedometer.git' + '@' + Var('speedometer_3.0_revision'),
'src/third_party/ukey2/src':
Var('chromium_git') + '/external/github.com/google/ukey2.git' + '@' + Var('ukey2_revision'),
'src/third_party/cros-components/src':
Var('chromium_git') + '/external/google3/cros_components.git' + '@' + Var('cros_components_revision'),
# Userspace interface to kernel DRM services.
'src/third_party/libdrm/src': {
'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + 'ad78bb591d02162d3b90890aa4d0a238b2a37cde',
'condition': 'checkout_linux',
},
'src/third_party/expat/src':
Var('chromium_git') + '/external/github.com/libexpat/libexpat.git' + '@' + Var('libexpat_revision'),
# The library for IPP protocol (Chrome OS).
'src/third_party/libipp/libipp': {
'url': Var('chromium_git') + '/chromiumos/platform2/libipp.git' + '@' + '2209bb84a8e122dab7c02fe66cc61a7b42873d7f',
'condition': 'checkout_linux',
},
'src/third_party/libjpeg_turbo':
Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'ccfbe1c82a3b6dbe8647ceb36a3f9ee711fba3cf',
'src/third_party/liblouis/src': {
'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '9700847afb92cb35969bdfcbbfbbb74b9c7b3376',
'condition': 'checkout_linux',
},
'src/third_party/libphonenumber/dist':
Var('chromium_git') + '/external/libphonenumber.git' + '@' + '140dfeb81b753388e8a672900fb7a971e9a0d362',
'src/third_party/libprotobuf-mutator/src':
Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'),
'src/third_party/libsrtp':
Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '7a7e64c8b5a632f55929cb3bb7d3e6fb48c3205a',
# Android Explicit Synchronization.
'src/third_party/libsync/src': {
'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6',
'condition': 'checkout_linux',
},
'src/third_party/libunwindstack': {
'url': Var('chromium_git') + '/chromium/src/third_party/libunwindstack.git' + '@' + 'a3bb4cd02e0e984a235069f812cbef2b37c389e5',
'condition': 'checkout_android',
},
'src/third_party/libvpx/source/libvpx':
Var('chromium_git') + '/webm/libvpx.git' + '@' + '428f3104fa7259a369e88df30f8b02644c8c1e24',
'src/third_party/libwebm/source':
Var('chromium_git') + '/webm/libwebm.git' + '@' + '26d9f667170dc75e8d759a997bb61c64dec42dda',
'src/third_party/libwebp/src':
Var('chromium_git') + '/webm/libwebp.git' + '@' + '845d5476a866141ba35ac133f856fa62f0b7445f',
'src/third_party/libyuv':
Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '679e851f653866a49e21f69fe8380bd20123f0ee',
'src/third_party/lighttpd': {
'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'),
'condition': 'checkout_mac or checkout_win',
},
'src/third_party/lss': {
'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'),
'condition': 'checkout_android or checkout_linux',
},
'src/third_party/lzma_sdk/bin/host_platform': {
'packages': [
{
'package': 'infra/3pp/tools/7z/${{platform}}',
'version': 'version:2@22.01',
},
],
'condition': 'checkout_win',
'dep_type': 'cipd',
},
'src/third_party/lzma_sdk/bin/win64': {
'packages': [
{
'package': 'infra/3pp/tools/7z/windows-amd64',
'version': 'version:2@22.01',
},
],
'condition': 'checkout_win',
'dep_type': 'cipd',
},
'src/third_party/material_color_utilities/src': {
'url': Var('chromium_git') + '/external/github.com/material-foundation/material-color-utilities.git' + '@' + '13434b50dcb64a482cc91191f8cf6151d90f5465',
},
'src/third_party/material_design_icons/src': {
'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' +
'5ab428852e35dc177a8c37a2df9dc9ccf768c65a',
'condition': 'checkout_ios',
},
'src/third_party/microsoft_dxheaders/src': {
'url': Var('chromium_git') + '/external/github.com/microsoft/DirectX-Headers.git' + '@' + '9be295b3b81ce1d0ff2b44f18d0eb86ea54c5122',
'condition': 'checkout_win',
},
'src/third_party/mig/bin': {
'packages': [
{
'package': 'chromium/third_party/mig/${{platform}}',
'version': '4wxov_ILjFdgBumBqgUgOgIcr4kcMh7i4b4oJi_cLjcC',
},
],
'condition': 'host_os == "linux" and checkout_mac',
'dep_type': 'cipd',
},
# Graphics buffer allocator for Chrome OS.
'src/third_party/minigbm/src': {
'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '3018207f4d89395cc271278fb9a6558b660885f5',
'condition': 'checkout_linux',
},
'src/third_party/nasm': {
'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' +
'f477acb1049f5e043904b87b825c5915084a9a29'
},
'src/third_party/neon_2_sse/src':
Var('chromium_git') + '/external/github.com/intel/ARM_NEON_2_x86_SSE.git' + '@' + 'a15b489e1222b2087007546b4912e21293ea86ff',
'src/third_party/netty-tcnative/src': {
'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '035726f76293d142ec3c4464be0703605feb4d02',
'condition': 'checkout_android',
},
'src/third_party/netty4/src': {
'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120',
'condition': 'checkout_android',
},
'src/third_party/ninja': {
'packages': [
{
'package': Var('ninja_package') + '${{platform}}',
'version': Var('ninja_version'),
}
],
'condition': 'non_git_source',
'dep_type': 'cipd',
},
'src/third_party/siso/cipd': {
'packages': [
{
'package': 'infra/build/siso/${{platform}}',
'version': Var('siso_version'),
}
],
'condition': 'non_git_source',
'dep_type': 'cipd',
},
'src/third_party/openh264/src':
Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '478e5ab3eca30e600006d5a0a08b176fd34d3bd1',
'src/third_party/openscreen/src':
Var('chromium_git') + '/openscreen' + '@' + '896170481991b2594897fd52ae2b65c66a095143',
'src/third_party/openxr/src': {
'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '95fe35ffb383710a6e0567e958ead9a3b66e930c',
'condition': 'checkout_openxr',
},
'src/third_party/opus/tests/resources': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-webrtc-resources',
'objects': [
{
'object_name': '009a3ee778767c2402b1d2c920bc2449265f5a2c',
'sha256sum': '34de3161f242895a682d9cdcbbf4ad50246742b6db46873386104cfde8a24332',
'size_bytes': 26889600,
'generation': 1392811661954000,
'output_file': 'speech_mono_32_48kHz.pcm',
},
],
},
'src/third_party/pdfium':
Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'),
'src/third_party/perfetto':
Var('android_git') + '/platform/external/perfetto.git' + '@' + '63ce251b6738df4d5b0f841f57d3b19d372fef66',
'src/base/tracing/test/data': {
'bucket': 'perfetto',
'objects': [
{
'object_name': 'test_data/chrome_fcp_lcp_navigations.pftrace-ae01d849fbd75a98be1b7ddd5a8873217c377b393a1d5bbd788ed3364f7fefc3',
'sha256sum': 'ae01d849fbd75a98be1b7ddd5a8873217c377b393a1d5bbd788ed3364f7fefc3',
'size_bytes': 2398645,
'generation': 1697714434866488,
'output_file': 'chrome_fcp_lcp_navigations.pftrace'
},
{
'object_name': 'test_data/chrome_input_with_frame_view.pftrace-a93548822e481508c728ccc5da3ad34afcd0aec02ca7a7a4dad84ff340ee5975',
'sha256sum': 'a93548822e481508c728ccc5da3ad34afcd0aec02ca7a7a4dad84ff340ee5975',
'size_bytes': 6392331,
'generation': 1711402389089075,
'output_file': 'chrome_input_with_frame_view.pftrace'
},
{
'object_name': 'test_data/scroll_offsets_trace_2.pftrace-2ddd9f78d91d51e39c72c520bb54fdc9dbf1333ae722e87633fc345159296289',
'sha256sum': '2ddd9f78d91d51e39c72c520bb54fdc9dbf1333ae722e87633fc345159296289',
'size_bytes': 1496388,
'generation': 1712592637141461,
'output_file': 'scroll_offsets_trace_2.pftrace'
},
{
'object_name': 'test_data/top_level_java_choreographer_slices-8001e73b2458e94f65a606bb558a645ba5bca553b57fe416001f6c2175675a8a',
'sha256sum': '8001e73b2458e94f65a606bb558a645ba5bca553b57fe416001f6c2175675a8a',
'size_bytes': 5323017,
'generation': 1671708979893186,
'output_file': 'top_level_java_choreographer_slices'
},
{
'object_name': 'test_data/chrome_page_load_all_categories_not_extended.pftrace.gz-6586e9e2bbc0c996caddb321a0374328654983733e6ffd7f4635ac07db32a493',
'sha256sum': '6586e9e2bbc0c996caddb321a0374328654983733e6ffd7f4635ac07db32a493',
'size_bytes': 1277750,
'generation': 1652442088902445,
'output_file': 'chrome_page_load_all_categories_not_extended.pftrace.gz'
},
{
'object_name': 'test_data/speedometer_21.perfetto_trace.gz-8a159b354d74a3ca0d38ce9cd071ef47de322db4261ee266bfafe04d70310529',
'sha256sum': '8a159b354d74a3ca0d38ce9cd071ef47de322db4261ee266bfafe04d70310529',
'size_bytes': 891088,
'generation': 1716566741068306,
'output_file': 'speedometer_21.perfetto_trace.gz'
},
{
'object_name': 'test_data/speedometer_3.perfetto_trace.gz-b2c77fbe2c17363432a1ad0c05c1c1c20d3ebc62bda92c041d39918011af6f02',
'sha256sum': 'b2c77fbe2c17363432a1ad0c05c1c1c20d3ebc62bda92c041d39918011af6f02',
'size_bytes': 1301036,
'generation': 1716566914245446,
'output_file': 'speedometer_3.perfetto_trace.gz'
},
{
'object_name': 'test_data/scroll_jank_with_pinch.pftrace-8587d2016fdb5d39b5f852704b6e3925e9e6527af01696396be767bed04d4a45',
'sha256sum': '8587d2016fdb5d39b5f852704b6e3925e9e6527af01696396be767bed04d4a45',
'size_bytes': 3914720,
'generation': 1717497788778335,
'output_file': 'scroll_jank_with_pinch.pftrace'
},
{
'object_name': 'test_data/cpu_powerups_1.pb-70f5511ba0cd6ce1359e3cadb4d1d9301fb6e26be85158e3384b06f41418d386',
'sha256sum': '70f5511ba0cd6ce1359e3cadb4d1d9301fb6e26be85158e3384b06f41418d386',
'size_bytes': 2033064,
'generation': 1669652389509708,
'output_file': 'cpu_powerups_1.pb'
},
{
'object_name': 'test_data/chrome_5672_histograms.pftrace.gz-a09bd44078ac71bcfbc901b0544750e8344d0d0f6f96e220f700a5a53fa932ee',
'sha256sum': 'a09bd44078ac71bcfbc901b0544750e8344d0d0f6f96e220f700a5a53fa932ee',
'size_bytes': 1127472,
'generation': 1684946598804577,
'output_file': 'chrome_5672_histograms.pftrace.gz'
},
{
'object_name': 'test_data/chrome_custom_navigation_trace.gz-ff68279e3cec94076b69259d756eed181a63eaf834d8b956a7f4ba665fabf939',
'sha256sum': 'ff68279e3cec94076b69259d756eed181a63eaf834d8b956a7f4ba665fabf939',
'size_bytes': 7572484,
'generation': 1666713705258900,
'output_file': 'chrome_custom_navigation_trace.gz'
},
{
'object_name': 'test_data/scroll_offsets.pftrace-62101edb5204fec8bea30124f65d4e49bda0808d7b036e95f89445aaad6d8d98',
'sha256sum': '62101edb5204fec8bea30124f65d4e49bda0808d7b036e95f89445aaad6d8d98',
'size_bytes': 769741,
'generation': 1693402148909129,
'output_file': 'scroll_offsets.pftrace'
},
{
'object_name': 'test_data/chrome_input_with_frame_view_new.pftrace-e901ad9577088e62c921dd8bfcb43d652ecf49fa69b5b57f81bb3d27dbe94e12',
'sha256sum': 'e901ad9577088e62c921dd8bfcb43d652ecf49fa69b5b57f81bb3d27dbe94e12',
'size_bytes': 1967821,
'generation': 1719520814352733,
'output_file': 'chrome_input_with_frame_view_new.pftrace'
},
],
'dep_type': 'gcs'
},
'src/third_party/perl': {
'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '8ef97ff3b7332e38e61b347a2fbed425a4617151',
'condition': 'checkout_win',
},
'src/third_party/protobuf-javascript/src':
Var('chromium_git') + '/external/github.com/protocolbuffers/protobuf-javascript' + '@' + 'e34549db516f8712f678fcd4bc411613b5cc5295',
'src/third_party/pthreadpool/src':
Var('chromium_git') + '/external/github.com/Maratyszcza/pthreadpool.git' + '@' + '4fe0e1e183925bf8cfa6aae24237e724a96479b8',
# Dependency of skia.
'src/third_party/pyelftools': {
'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae',
'condition': 'checkout_linux',
},
'src/third_party/quic_trace/src':
Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + 'caa0a6eaba816ecb737f9a70782b7c80b8ac8dbc',
'src/third_party/pywebsocket3/src':
Var('chromium_git') + '/external/github.com/GoogleChromeLabs/pywebsocket3.git' + '@' + '50602a14f1b6da17e0b619833a13addc6ea78bc2',
'src/third_party/qemu-linux-arm64': {
'packages': [
{
'package': 'fuchsia/third_party/qemu/linux-arm64',
'version': 'hOpuGIMj1FAtBWGDlXARkCm2srxY4enn8iI3AgrDna4C'
},
],
# TODO(b/351926334): Do not add `non_git_source` to this condition until the bug is fixed.
'condition': 'host_os == "linux" and checkout_fuchsia and checkout_fuchsia_for_arm64_host',
'dep_type': 'cipd',
},
'src/third_party/re2/src':
Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '6dcd83d60f7944926bfd308cc13979fc53dd69ca',
'src/third_party/r8': {
'packages': [
{
'package': 'chromium/third_party/r8',
'version': 'HI3Fi3JexryfNR46iis7z8skGHUMcpSse_inc_r6pVkC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
# This duplication is intentional, so we avoid updating the r8.jar used by
# dexing unless necessary, since each update invalidates all incremental
# dexing and unnecessarily slows down all bots.
'src/third_party/r8/d8': {
'packages': [
{
'package': 'chromium/third_party/r8',
'version': 'vw5kLlW3-suSlCKSO9OQpFWpR8oDnvQ8k1RgKNUapQYC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/requests/src': {
'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'c7e0fc087ceeadb8b4c84a0953a422c474093d6d',
'condition': 'checkout_android',
},
'src/third_party/robolectric': {
'packages': [
{
'package': 'chromium/third_party/robolectric',
'version': 'Y1B0M_fCpPZ058xErMX6GQOJEVRBWR342juuxNLpVnkC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/ruy/src':
Var('chromium_git') + '/external/github.com/google/ruy.git' + '@' + 'c08ec529fc91722bde519628d9449258082eb847',
'src/third_party/skia':
Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'),
'src/third_party/smhasher/src':
Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f',
'src/third_party/snappy/src':
Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'c9f9edf6d75bb065fa47468bf035e051a57bec7c',
'src/third_party/sqlite/src':
Var('chromium_git') + '/chromium/deps/sqlite.git' + '@' + '8368e7f47150c9f226bc1948745243dacbbe5c18',
'src/third_party/sqlite4java': {
'packages': [
{
'package': 'chromium/third_party/sqlite4java',
'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/subresource-filter-ruleset/data': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-ads-detection',
'objects': [
{
'object_name': 'e4d1c702ca1b5497a3abcdd9495a5d0758f19ffc',
'sha256sum': 'ae2fd01d2908591e0f39343a5b4a78baa8e7d6cac9d78ba79c502fe0a15ce3ee',
'size_bytes': 70106,
'generation': 1695223938564350,
'output_file': 'UnindexedRules',
},
],
},
'src/third_party/swift-format': {
'packages': [
{
'package': 'infra/3pp/tools/swift-format/${{platform}}',
'version': 'version:2@505.chromium.1',
},
],
'condition': 'host_os == mac',
'dep_type': 'cipd',
},
'src/third_party/swiftshader':
Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'),
'src/third_party/swift-toolchain': {
'packages': [
{
'package': 'chromium/tools/swift-toolchain/mac-amd64',
'version': 'version:2@5.8-release',
},
],
'condition': 'host_os == mac',
'dep_type': 'cipd',
},
'src/third_party/test_fonts/test_fonts': {
'dep_type': 'gcs',
'condition': 'non_git_source',
'bucket': 'chromium-fonts',
'objects': [
{
'object_name': 'f26f29c9d3bfae588207bbc9762de8d142e58935c62a86f67332819b15203b35',
'sha256sum': 'f26f29c9d3bfae588207bbc9762de8d142e58935c62a86f67332819b15203b35',
'size_bytes': 32750602,
'generation': 1717109450425063,
},
],
},
'src/third_party/text-fragments-polyfill/src':
Var('chromium_git') + '/external/github.com/GoogleChromeLabs/text-fragments-polyfill.git' + '@' + 'c036420683f672d685e27415de0a5f5e85bdc23f',
'src/third_party/tflite/src':
Var('chromium_git') + '/external/github.com/tensorflow/tensorflow.git' + '@' + '3322062409382997beb3280ea6e130c3f5cc6a86',
'src/third_party/turbine': {
'packages': [
{
'package': 'chromium/third_party/turbine',
'version': 'HLBr7iWMO2VeD_WbrAA1eq33jZZCVxvA3noE3LNzSlQC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/vulkan-deps': '{chromium_git}/vulkan-deps@f8f75e8cc1546d91fe36a8b48b82be3628555e40',
'src/third_party/glslang/src': '{chromium_git}/external/github.com/KhronosGroup/glslang@d59c84d388c805022e2bddea08aa41cbe7e43e55',
'src/third_party/spirv-cross/src': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Cross@b8fcf307f1f347089e3c46eb4451d27f32ebc8d3',
'src/third_party/spirv-headers/src': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@1b75a4ae0b4289014b4c369301dc925c366f78a6',
'src/third_party/spirv-tools/src': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@87fcbaf1bc8346469e178711eff27cfd20aa1960',
'src/third_party/vulkan-headers/src': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@d205aff40b4e15d4c568523ee6a26f85138126d9',
'src/third_party/vulkan-loader/src': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@452b3fd7d3a3ba5449ee45f32695f943460d8c61',
'src/third_party/vulkan-tools/src': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@494d32f2da0bd8a782d88fdaa98b9e1967148d1b',
'src/third_party/vulkan-utility-libraries/src': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Utility-Libraries@9b6e18888be3ac761a3f71594c3949f8dc862ccc',
'src/third_party/vulkan-validation-layers/src': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@1fb93701289aab8fbe04299071804cc4f91af323',
'src/third_party/vulkan_memory_allocator':
Var('chromium_git') + '/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git' + '@' + '56300b29fbfcc693ee6609ddad3fdd5b7a449a21',
# Display server protocol for Linux.
'src/third_party/wayland/src': {
'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + 'a156431ea66fe67d69c9fbba8a8ad34dabbab81c',
'condition': 'checkout_linux',
},
# Wayland protocols that add functionality not available in the core protocol.
'src/third_party/wayland-protocols/src': {
'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '7d5a3a8b494ae44cd9651f9505e88a250082765e',
'condition': 'checkout_linux',
},
# Additional Wayland protocols specific for KDE Plasma desktop environment.
'src/third_party/wayland-protocols/kde': {
'url': Var('chromium_git') + '/external/github.com/KDE/plasma-wayland-protocols.git' + '@' + '0b07950714b3a36c9b9f71fc025fc7783e82926e',
'condition': 'checkout_linux',
},
# Additional Wayland protocols specific for GNOME desktop environment.
'src/third_party/wayland-protocols/gtk': {
'url': Var('chromium_git') + '/external/github.com/GNOME/gtk.git' + '@' + '40ebed3a03aef096addc0af09fec4ec529d882a0',
'condition': 'checkout_linux',
},
# Keep this to the same revision as the one .vpython3.
'src/third_party/webdriver/pylib':
Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'fc5e7e70c098bfb189a9a74746809ad3c5c34e04',
'src/third_party/webgl/src':
Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '1b6371436a0a60e6b9a4ae2a40a8eba198e3af02',
'src/third_party/webgpu-cts/src':
Var('chromium_git') + '/external/github.com/gpuweb/cts.git' + '@' + 'a96693cd274c5b340ffe37df6ff265596059dd1e',
'src/third_party/webrtc':
Var('webrtc_git') + '/src.git' + '@' + '21508e08e7545a03c8c35a9299923279e3def319',
# Wuffs' canonical repository is at github.com/google/wuffs, but we use
# Skia's mirror of Wuffs, the same as in upstream Skia's DEPS file.
#
# The local directory is called "third_party/wuffs" (matching upstream Skia
# and other non-Chromium, Skia-using projects) even though the git repo we
# clone is called "wuffs-mirror-release-c". The reasons for using w-m-r-c are
# listed in the https://crrev.com/c/3086053 commit message. One reason is
# that the w-m-r-c subset is much smaller and changes much less frequently.
'src/third_party/wuffs/src':
Var('skia_git') + '/external/github.com/google/wuffs-mirror-release-c.git' + '@' + Var('wuffs_revision'),
'src/third_party/weston/src': {
'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/weston.git' + '@' + 'ccf29cb237c3ed09c5f370f35239c93d07abfdd7',
'condition': 'checkout_linux',
},
# A conformance-suite developed by canonical for the mir wayland server.
# Required to compile exo_wlcs on chromeos checkouts.
'src/third_party/wlcs/src': {
'url': Var('chromium_git') + '/external/github.com/MirServer/wlcs.git' + '@' + '2930ad4b5ca602446ad211b49fb1827303ce9f4b',
'condition': 'checkout_chromeos',
},
'src/third_party/xdg-utils': {
'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'cb54d9db2e535ee4ef13cc91b65a1e2741a94a44',
'condition': 'checkout_linux',
},
'src/third_party/xnnpack/src':
Var('chromium_git') + '/external/github.com/google/XNNPACK.git' + '@' + 'c4a28daf28c98300da9d9b5213c53f762908825e',
'src/tools/page_cycler/acid3':
Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + 'a926d0a32e02c4c03ae95bb798e6c780e0e184ba',
'src/third_party/libei/cipd': {
'packages': [
{
'package': 'chromium/third_party/libei/linux-amd64',
'version': 'PQz4zG5Q3SXoAaCYq3RK99W3wg_v0NoOu1OzTSvA_oIC',
},
],
'condition': 'checkout_linux and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/zstd/src':
Var('chromium_git') + '/external/github.com/facebook/zstd.git' + '@' + '0ff651dd876823b99fa5c5f53292be28381aee9b',
'src/tools/skia_goldctl/linux': {
'packages': [
{
'package': 'skia/tools/goldctl/linux-amd64',
'version': 'gq9-0S5abCie-hC4Rg2AMpptdOpayVJtXmv5es4kQS8C',
},
],
'dep_type': 'cipd',
'condition': 'checkout_linux and non_git_source',
},
'src/tools/skia_goldctl/win': {
'packages': [
{
'package': 'skia/tools/goldctl/windows-amd64',
'version': 'n4YjJsAqoP7TZRI9T9VheKTO9PU5HNba79h49It81hsC',
},
],
'dep_type': 'cipd',
'condition': 'checkout_win',
},
'src/tools/skia_goldctl/mac_amd64': {
'packages': [
{
'package': 'skia/tools/goldctl/mac-amd64',
'version': 'jsZPxEf1WP-CJcmSCyoR9cg4CdfdpckFXxJn_z-2AG8C',
},
],
'dep_type': 'cipd',
'condition': 'checkout_mac',
},
'src/tools/skia_goldctl/mac_arm64': {
'packages': [
{
'package': 'skia/tools/goldctl/mac-arm64',
'version': 'YxSBrLRqlJRh6fNllmnCPDrUOK9tJI2EIvxjIwA0k5wC',
},
],
'dep_type': 'cipd',
'condition': 'checkout_mac',
},
'src/v8':
Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'),
'src/internal': {
'url': Var('chrome_git') + '/chrome/src-internal.git' + '@' + Var('src_internal_revision'),
'condition': 'checkout_src_internal',
},
'src/ash/ambient/resources': {
'packages': [
{
'package': 'chromeos_internal/assistant/ambient',
'version': 'version:feel_the_breeze_with_frame_rate_markers',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/eche_app_ui/resources/prod': {
'packages': [
{
'package': 'chromeos_internal/apps/eche_app/app',
'version': '_e-_QwxVx-avJW-8-KuYz8ia16zV4cb0sRLIPUO5MK4C',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/boca_ui/resources/prod': {
'packages': [
{
'package': 'chromeos_internal/apps/boca_app/app',
'version': 'LOj8qSPYbsgaUGsvAVI6TK0tv3YDePbYvLD9uE2peVcC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/help_app_ui/resources/prod': {
'packages': [
{
'package': 'chromeos_internal/apps/help_app/app',
'version': 'jRd67plkz2a0T5Kt3ZkiuQ6Z62R8C2eOJVP8yVlUphwC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/media_app_ui/resources/prod': {
'packages': [
{
'package': 'chromeos_internal/apps/media_app/app',
'version': '3k0PjA87PJZlrBE2NKS-P6NGCgzQDyB0bfYeVcMREzkC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/personalization_app/resources': {
'packages': [
{
'package': 'chromeos_internal/assistant/time_of_day',
'version': '7okw0Y1HdRp76vhM8AGsWOloCQ83hwMd7Y1k2sDYMJcC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/shimless_rma/resources': {
'packages': [
{
'package': 'chromeos_internal/ash/peripherals-and-serviceability/shimless-rma-project-simon-strings',
'version': '-uRXiZeA4Yl-Nv-6jP69DyDs5cGroZgGsa1NHnVySQwC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/ash/webui/projector_app/resources/prod': {
'packages': [
{
'package': 'chromeos_internal/apps/projector_app/app',
'version': 'rJpuSKet1w9FJXEn1E_tVepevh7tb4hP2PprsM8s8SYC',
},
],
'condition': 'checkout_chromeos and checkout_src_internal',
'dep_type': 'cipd',
},
'src/third_party/webpagereplay': {
'packages' : [
{
'package': 'infra/tools/wpr/linux_x86_64',
'version': 'y28SfbEF6nHSkZ1eHysM1t711zpOCmtk7jUdxZB-QSMC',
},
],
'condition': 'checkout_android',
'dep_type': 'cipd',
},
'src/third_party/android_prebuilts/build_tools': {
'url': Var('android_git') + '/platform/prebuilts/build-tools.git' + '@' + '673c20b524a83b662d8c1057fd3eec8fd0f93f9d',
'condition': 'checkout_android_prebuilts_build_tools',
},
# === ANDROID_DEPS Generated Code Start ===
# Generated by //third_party/android_deps/fetch_all.py
'src/third_party/android_deps/cipd/libs/android_arch_core_common': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_core_common',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_core_runtime': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_core_runtime',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_lifecycle_common': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_lifecycle_livedata': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_lifecycle_livedata_core': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata_core',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_lifecycle_runtime': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/android_arch_lifecycle_viewmodel': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_viewmodel',
'version': 'version:2@1.1.1.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_asynclayoutinflater': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_asynclayoutinflater',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_collections': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_collections',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_coordinatorlayout': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_coordinatorlayout',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_cursoradapter': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_cursoradapter',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_customview': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_customview',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_documentfile': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_documentfile',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_drawerlayout': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_drawerlayout',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_interpolator': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_interpolator',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_loader': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_loader',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_localbroadcastmanager': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_localbroadcastmanager',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_print': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_print',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_slidingpanelayout': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_slidingpanelayout',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',
},
'src/third_party/android_deps/cipd/libs/com_android_support_support_annotations': {
'packages': [
{
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations',
'version': 'version:2@28.0.0.cr1',
},
],
'condition': 'checkout_android and non_git_source',
'dep_type': 'cipd',