| # 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. |
| |
| 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_google_benchmark', |
| 'checkout_ios_webkit', |
| 'checkout_nacl', |
| 'checkout_openxr', |
| 'checkout_rts_model', |
| '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(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 'checkout_android': False, |
| |
| # By default, don't check out Fuchsia. Will be overridden by gclient |
| # variables. |
| # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 'checkout_fuchsia': 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, |
| |
| # By default, do not check out Chromium Enterprise File System Connector |
| # captured sites test ependencies. These dependencies include a large number |
| # of large web capture files. Captured sites test dependencies are also |
| # restricted to Googlers only. |
| 'checkout_chromium_fsc_test_dependencies': False, |
| |
| # By default, do not check out Google Benchmark. The library is only used by a |
| # few specialized benchmarks that most developers do not interact with. Will |
| # be overridden by gclient variables. |
| 'checkout_google_benchmark': 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 by default, unless on an arm mac. |
| # This can be disabled e.g. with custom_vars. |
| 'checkout_nacl': 'not (host_os == "mac" and host_cpu == "arm64")', |
| |
| # By default, do not check out src-internal. This can be overridden e.g. with |
| # custom_vars. |
| 'checkout_src_internal': 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 clang libraries and headers in order to build clang tooling. This is |
| # required to build C++-Rust interop codegen tools. This may break things that |
| # use it when clang rolls, and is meant for prototyping. You should talk to |
| # tools/clang/OWNERS before depending on it. |
| 'checkout_clang_libs': 'use_rust', |
| |
| # By default checkout the OpenXR loader library only on Windows. The OpenXR |
| # backend for VR in Chromium is currently only supported for Windows, but |
| # support for other platforms may be added in the future. |
| 'checkout_openxr' : 'checkout_win', |
| |
| 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| '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. |
| # Wildcards are supported (e.g. "qemu.*"). |
| # |
| # Available images: |
| # Emulation: |
| # - qemu.x64 (pulls terminal.qemu-x64-release) |
| # - qemu.arm64 (pulls terminal.qemu-arm64-release) |
| # - workstation.qemu-x64-release |
| # Hardware: |
| # - generic.x64 (pulls terminal.x64-debug) |
| # - generic.arm64 (pulls terminal.arm64-debug) |
| # - chromebook.x64 (pulls terminal.chromebook-x64-debug) |
| # |
| # 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 (e.g., qemu.arm64) can override this with additional images. |
| 'checkout_fuchsia_boot_images': "qemu.x64", |
| |
| # By default, do not check out files required to run fuchsia tests in |
| # qemu on linux-arm64 machines. |
| 'checkout_fuchsia_for_arm64_host': False, |
| |
| # Run 'vpython_common' hook if this is set. |
| # TODO(crbug.com/1329052): remove this when we remove .vpython. |
| 'enable_vpython_common_crbug_1329052': True, |
| |
| # By default, download the fuchsia sdk from the public sdk directory. |
| 'fuchsia_sdk_cipd_prefix': 'fuchsia/sdk/gn/', |
| |
| # By default, download the fuchsia images from the fuchsia GCS bucket. |
| 'fuchsia_images_bucket': 'fuchsia', |
| |
| # Download the fuchsia sdk in GCS using this path as a prefix. The prefix |
| # should follow the format |gs://{bucket}/development/{sdk_hash}/sdk| |
| 'fuchsia_sdk_gcs_tarball_prefix': Str(''), |
| 'fuchsia_sdk_from_gcs': '"{fuchsia_sdk_gcs_tarball_prefix}" != ""', |
| |
| # 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': '14945.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:be5d9aacf8987c0826223264f0427cd0b530b6a4', |
| |
| # This can be overridden, e.g. with custom_vars, to build clang from HEAD |
| # instead of downloading the prebuilt pinned revision. |
| 'llvm_force_head_revision': False, |
| |
| # Fetch Rust toolchain built against our LLVM revision instead of the Android |
| # Rust toolchain. Experimental. The corresponding GN arg |
| # use_chromium_rust_toolchain directs the build to use this toolchain instead |
| # of the Android toolchain. |
| 'fetch_prebuilt_chromium_rust_toolchain': 'use_rust and host_os == "linux"', |
| |
| # Build in-tree Rust toolchain. checkout_clang_libs must also be True. The |
| # corresponding GN arg use_chromium_rust_toolchain directs the build to use |
| # the in-tree toolchain instead of the Android toolchain. |
| # |
| # This is not intended for local development. |
| # Prefer using //tools/rust/build_rust.py directly. |
| 'build_chromium_rust_toolchain': False, |
| |
| # See //docs/testing/regression-test-selection.md |
| # for info on RTS |
| 'checkout_rts_model': False, |
| |
| # By default, do not check out the re-client binaries. |
| 'checkout_reclient': False, |
| |
| # Make Dawn skip its standalone dependencies |
| 'dawn_standalone': False, |
| |
| # reclient CIPD package version |
| 'reclient_version': 're_client_version:0.69.0.458df98-gomaip', |
| |
| # Enable fetching Rust-related packages. |
| 'use_rust': False, |
| |
| 'android_git': 'https://android.googlesource.com', |
| 'aomedia_git': 'https://aomedia.googlesource.com', |
| 'boringssl_git': 'https://boringssl.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', |
| # 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': 'b2e4416a6bfcec9f773d1ab25df1ef2ca7f23322', |
| # 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': 'd8914f7033295aa02fa72a73344e84edff87c70a', |
| # 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': 'da984303fda121cced56dfa07c6890d3b29dc502', |
| # 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': 'd1116fa9e9dce90556f8db973ba42b246eb633f5', |
| # 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': 'c153a82e5bb12fb769060fc7718f7556e6a93c56', |
| # 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': '1f51cfc7d7f54d2bee30bb5793470ef9c36a5083', |
| # 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:8.20220701.2.1', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling google-toolbox-for-mac |
| # and whatever else without interference from each other. |
| 'google_toolbox_for_mac_revision': '42b12f10cd8342f5cb41a1e3e3a2f13fd9943b0d', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling googletest |
| # and whatever else without interference from each other. |
| 'googletest_revision': 'af29db7ec28d6df1c7f0f745186884091e602e07', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling lighttpd |
| # and whatever else without interference from each other. |
| 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling lss |
| # and whatever else without interference from each other. |
| 'lss_revision': '880985fe92bb3fbeb8cb2bd3a8bbd912dc2843a9', |
| # 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': '341a8e762364bc6a92362828ef26f4a067843e09', |
| # 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': 'bec4ef415ef07ad1fa9542978136d9863dd7a6d0', |
| # 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': 'fe2eddae6176f75e2101289eeda22a5ff3d808ca', |
| # 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': 'c88a6a9ec3c38793ec8b662362282e076e948943', |
| # 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': 'ee537ac096667eed6559124164c3e8482646fd77', |
| # 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': '6f2de7bf2ddaa1cdd03241a5de5333f07d33756e', |
| # 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': 'debe7d2d1982e540fbd6bd78604bf001753f9e74', |
| # 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': '8a1afd340d4cefeff093902107269a2483ed5a98', |
| # 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': 'tRoD45SCi7UleQqSV7MrMQO1_e5P8ysphkCcj6z_cCQC', |
| # 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': 'gMHhUuoQRKfxr-MBn3fNNXZtkAVXtOwMwT7kfx8jkIgC', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling android_sdk_extras_version |
| # and whatever else without interference from each other. |
| 'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling android_sdk_patcher_version |
| # and whatever else without interference from each other. |
| 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
| # 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': 'g7n_-r6yJd_SGRklujGB1wEt8iyr77FZTUJVS9w6O34C', |
| # 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': 'lL3IGexKjYlwjO_1Ga-xwxgwbE_w-lmi2Zi1uOlWUIAC', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling android_sdk_sources_version |
| # and whatever else without interference from each other. |
| 'android_sdk_sources_version': '_a_BcnANjPYw5mSKlNHa7GFY8yc1kdqj2rmQgac7yUcC', |
| # 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': 'c4f0232de2dc5901f6c13d7693964387a22b507e', |
| # 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': '61526b08ab69002558e62781eaeeca9aee8eada4', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling ios_webkit |
| # and whatever else without interference from each other. |
| 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling libexpat |
| # and whatever else without interference from each other. |
| 'libexpat_revision': '53fbdf5b8925a426e1b41a9e09b833986b87524e', |
| # 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': 'ebbecaa2fb439eff0aeedafadb4c2a984446dee8', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling libgifcodec |
| # and whatever else without interference from each other. |
| 'libgifcodec_revision': 'd06d2a6d42baf6c0c91cacc28df2542a911d05fe', |
| # 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': '1d0cab42f6d1b70b0d66084c8170e716c8b88a3b', |
| # 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': '7e081c663af2762216cf6f85a2d95bfc84de1407', |
| # 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. |
| 'resultdb_version': 'git_revision:6cc18e2763e180929d70c786b419c1f8e6bcc66c', |
| # 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': '3007992fc7706df4e0b17b63eaf601c421e163ae', |
| # 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': '49191c55bba0e64664954eec93a43d8eb11e5798', |
| # 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': '8b525d2747f2584fc35d8c7e612e66f377858df7', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling feed |
| # and whatever else without interference from each other. |
| 'libjxl_revision': 'a205468bc5d3a353fb15dae2398a101dff52f2d3', |
| # 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': '424360251cdcfc314cfc528f53c872ecd63af0f0', |
| # 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': '880df5ede50a8534c8116d0d50e4bc4f3ef08a06', |
| |
| # If you change this, also update the libc++ revision in |
| # //buildtools/deps_revisions.gni. |
| 'libcxx_revision': 'b1269813eaf5b8ac78e35e45a0f7cc320bd3e7d6', |
| |
| # GN CIPD package version. |
| 'gn_version': 'git_revision:ecaaf4b9e58a312a1610a37999eeccf58f73e264', |
| } |
| |
| # 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', |
| 'boringssl.googlesource.com', |
| 'chrome-infra-packages.appspot.com', |
| 'chrome-internal.googlesource.com', |
| 'chromium.googlesource.com', |
| 'dawn.googlesource.com', |
| 'pdfium.googlesource.com', |
| 'quiche.googlesource.com', |
| 'skia.googlesource.com', |
| 'swiftshader.googlesource.com', |
| 'webrtc.googlesource.com', |
| ] |
| |
| deps = { |
| 'src/buildtools/clang_format/script': |
| Var('chromium_git') + |
| '/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@' + |
| Var('clang_format_revision'), |
| 'src/buildtools/linux64': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/linux-${{arch}}', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "linux"', |
| }, |
| 'src/buildtools/mac': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/mac-${{arch}}', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "mac"', |
| }, |
| 'src/buildtools/third_party/libc++/trunk': |
| Var('chromium_git') + |
| '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + |
| Var('libcxx_revision'), |
| 'src/buildtools/third_party/libc++abi/trunk': |
| Var('chromium_git') + |
| '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + |
| Var('libcxxabi_revision'), |
| 'src/buildtools/third_party/libunwind/trunk': |
| Var('chromium_git') + |
| '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + |
| Var('libunwind_revision'), |
| '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': 'infra/rbe/client/${{platform}}', |
| 'version': Var('reclient_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_reclient', |
| }, |
| 'src/third_party/android_rust_toolchain/toolchain': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_rust_toolchain/linux-amd64', |
| 'version': 'BKAbvHjGv4-os-v8MS3I54bPsY-397xgaJ3yBeIVS20C', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| # TODO(https://crbug.com/1292038): gate this on use_rust as well as host_os. |
| 'condition': 'host_os == "linux"', |
| }, |
| |
| # 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': '(host_os == "mac")', |
| }, |
| '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': '(host_os == "mac")', |
| }, |
| |
| '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")', |
| }, |
| |
| 'src/android_webview/tools/cts_archive': { |
| 'packages': [ |
| { |
| 'package': 'chromium/android_webview/tools/cts_archive', |
| 'version': 'qF6dhyFMW7qFOzHo_Lu-bWxpbe-zRfL1KvHPQtQA3d0C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/browser/resources/preinstalled_web_apps/internal': { |
| 'url': 'https://chrome-internal.googlesource.com/chrome/components/default_apps.git' + '@' + '3610b316398d68e3ae89388c03cb8bd8eb30e76a', |
| 'condition': 'checkout_src_internal', |
| }, |
| |
| 'src/chrome/installer/mac/third_party/xz/xz': { |
| 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 'condition': 'checkout_mac', |
| }, |
| |
| 'src/third_party/updater/chrome_mac_universal': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chrome_mac_universal', |
| 'version': 'RBRqNIwSXHjdZf4BVjWk8enaKIHw58aQGFDVNozlbWIC', |
| }, |
| ], |
| }, |
| |
| 'src/third_party/updater/chrome_win_x86': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chrome_win_x86', |
| 'version': 'tqlS-vFYsn2LVSJMwipq84EKLmwKa1XJb760NnpQL2gC', |
| }, |
| ], |
| }, |
| |
| 'src/third_party/updater/chrome_win_x86_64': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chrome_win_x86_64', |
| 'version': 'RthX5RzppvSV7uq2P6pm2bnv6-dvoHpUIOsZFk57ZMEC', |
| }, |
| ], |
| }, |
| |
| # A somewhat recent Chromium-branded updater build. (x86_64) |
| 'src/third_party/updater/chromium_mac_amd64': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chromium_mac_amd64', |
| 'version': '7MvxvS-pmZP1iAXQoCiLI7nv4UkDiyw8PC1ycwpYWbYC', |
| }, |
| ], |
| }, |
| |
| # A somewhat recent Chromium-branded updater build. (ARM64) |
| 'src/third_party/updater/chromium_mac_arm64': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chromium_mac_arm64', |
| 'version': 'd5lN7fzV07O4-Mu_T8TshrGQtlR9F508p9cdhchcLpYC', |
| }, |
| ], |
| }, |
| |
| 'src/third_party/updater/chromium_win_x86': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chromium_win_x86', |
| 'version': '8zehx-DVmaf_FplPe23acLAStf3Z7anQ3CY9LXBfvD0C', |
| }, |
| ], |
| }, |
| |
| 'src/third_party/updater/chromium_win_x86_64': { |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/updater/chromium_win_x86_64', |
| 'version': 'KE8JnjZFOyHxUhVdRkm0IMVqlZIaYPnAOI-zxtUD4zUC', |
| }, |
| ], |
| }, |
| |
| 'src/chrome/test/data/autofill/captured_sites': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
| 'version': 'VM29jX57EDTykZu3syuhUrnvzW2Ss_503ebhvWpYDIMC', |
| } |
| ], |
| 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/test/data/password/captured_sites': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/password/captured_sites', |
| 'version': '9wov5BqIgpBX5S5_U8V_kKNw0tPVWNdPf9ESRYF16R8C', |
| } |
| ], |
| 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/test/data/enterprise/connectors/file_system/captured_sites': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/enterprise/connectors/file_system/captured_sites', |
| 'version': '-4zOjJJZh2jzpT8FfELxOWSU8-YUoshUfI9UirvYkCwC', |
| } |
| ], |
| 'condition': 'checkout_chromium_fsc_test_dependencies', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/test/data/enterprise/connectors/file_system/downloads/cipd': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/enterprise/connectors/file_system/downloads', |
| 'version': 'OqoTmkXSZL8TiU2yFt3j6fKGoLwXYCWJXcFXg4L2b_wC', |
| } |
| ], |
| 'condition': 'checkout_chromium_fsc_test_dependencies', |
| 'dep_type': 'cipd', |
| }, |
| |
| |
| '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': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
| }, |
| ], |
| '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/docs/website': { |
| 'url': Var('chromium_git') + '/website.git' + '@' + 'b3680ebb42f1119c4fde82fcf8667019cccce05f', |
| }, |
| |
| 'src/ios/third_party/earl_grey2/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '95732f425807f940da53af3cc3e91d4bfc56d9e2', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/edo/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '988a6d0c8e19654a1c412a0752d8d4340b028b2d', |
| '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/gcdwebserver/src': { |
| 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/material_components_ios/src': { |
| 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'fdb05bb379b73a67cea8269e5948b9197a037086', |
| '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' + '@' + 'ad190b15a5e3f2d84c9b8182a3a0b84428edce68', |
| '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/rts/linux-amd64': { |
| 'packages': [ |
| { |
| 'package': 'chromium/rts/model/linux-amd64', |
| 'version': 'fnXM6ppirSOMYyWehMZBIfee9f58e4fkTLO0fsRijsIC', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_rts_model and checkout_linux', |
| }, |
| |
| 'src/testing/rts/mac-amd64': { |
| 'packages': [ |
| { |
| 'package': 'chromium/rts/model/mac-amd64', |
| 'version': '098l-jyn-4UGFAQCZ6ocQPSC19o8uX2Yomle7J7kiskC', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_rts_model and checkout_mac', |
| }, |
| |
| 'src/testing/rts/windows-amd64': { |
| 'packages': [ |
| { |
| 'package': 'chromium/rts/model/windows-amd64', |
| 'version': '1njaCIAkuKvrJYbEiGqKK1RtMYAM3Nr_rReKhBTE2aAC', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_rts_model and checkout_win', |
| }, |
| |
| 'src/tools/luci-go': { |
| 'packages': [ |
| { |
| 'package': 'infra/tools/luci/isolate/${{platform}}', |
| 'version': Var('luci_go'), |
| }, |
| { |
| 'package': 'infra/tools/luci/swarming/${{platform}}', |
| 'version': Var('luci_go'), |
| }, |
| ], |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/accessibility_test_framework': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/accessibility-test-framework', |
| 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_protobuf/src': { |
| 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/android_protoc': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_protoc', |
| 'version': 'sLsJWojddBL2u8NYwNh6pJsqp_bL1ttmYIlBnhiIQ1QC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_ndk': { |
| 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '8388a2be5421311dc75c5f937aae13d821a27f3d', |
| 'condition': 'checkout_android_native_support', |
| }, |
| |
| 'src/third_party/androidx': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/androidx', |
| 'version': '4gPri5A_WLHmRIG0GHdvmd3LeWiNvBj1i5IP7kEXAgsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_support_test_runner': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_support_test_runner', |
| 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_system_sdk': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_system_sdk/public', |
| 'version': 'oSfDIvHlCa6W0gS79Q5OOfB9E4eBg3uAvi3BEDN21U0C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/aapt2': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_build_tools/aapt2', |
| 'version': 'hf9C5IyJUUGaBnzqu60xiFJSyfAmjqjc_PiNXNVc9l0C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/bundletool': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_build_tools/bundletool', |
| 'version': 'qLkNwA6wjoqznVqaa151GelgGBP4X495n0z-jluACPcC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/lint': { |
| 'packages': [ |
| { |
| # TODO(wnwen): Switch to chromium/third_party/android_build_tools/lint. |
| 'package': 'chromium/third_party/android_lint', |
| 'version': 'f5g1G8eyExIUPHk4lH3xx_xV4pza9WSBaITgmLPgF2cC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_sdk/androidx_browser/src': { |
| 'url': Var('chromium_git') + '/external/gob/android/platform/frameworks/support/browser.git' + '@' + '65086eb5e52c16778fa7b4f157156d17b176fcb3', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/android_sdk/public': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_sdk/public/build-tools/31.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/patcher', |
| 'version': Var('android_sdk_patcher_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-31', |
| 'version': Var('android_sdk_platforms_version'), |
| }, |
| { |
| 'package': 'chromium/third_party/android_sdk/public/sources/android-31', |
| 'version': Var('android_sdk_sources_version'), |
| }, |
| { |
| 'package': 'chromium/third_party/android_sdk/public/cmdline-tools', |
| 'version': 'PGPmqJtSIQ84If155ba7iTU846h5WJ-bL5d_OoUWEWYC', |
| }, |
| ], |
| 'condition': 'checkout_android_native_support', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/angle': |
| Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| |
| 'src/third_party/content_analysis_sdk/src': |
| Var('chromium_git') + '/external/github.com/chromium/content_analysis_sdk.git' + '@' + '1a6e24f9ced8a4cf180ee7eafbc5fa0beb1046eb', |
| |
| 'src/third_party/dav1d/libdav1d': |
| Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '87f9a81cd770e49394a45deca7a3df41243de00b', |
| |
| 'src/third_party/dawn': |
| Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| |
| 'src/third_party/libjxl/src': |
| Var('chromium_git') + '/external/gitlab.com/wg1/jpeg-xl.git' + '@' + Var('libjxl_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': 'https://chrome-internal.googlesource.com/chrome/deps/barhopper.git' + '@' + '5830f9acc68275805d60d4b02bf8e1e3c600740d', |
| 'condition': 'checkout_src_internal and checkout_chromeos', |
| }, |
| |
| 'src/third_party/google_benchmark/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/benchmark.git' + '@' + 'f730846b0a3c0dc0699978846fb14ffb2fad0bdc', |
| 'condition': 'checkout_google_benchmark', |
| }, |
| |
| 'src/third_party/boringssl/src': |
| Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| |
| 'src/third_party/bouncycastle': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/bouncycastle', |
| 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/breakpad/breakpad': |
| Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'c4c43b80ea8854c57a4374ac32579b577172dc23', |
| |
| 'src/third_party/byte_buddy': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/byte_buddy', |
| 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/byte_buddy/android_sdk_build_tools_25_0_2': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 'version': 'kwIs2vdfTm93yEP8LG5aSnchN4BVEdVxbqQtF4XpPdkC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/cast_core/public/src': |
| Var('chromium_git') + '/cast_core/public' + '@' + '73f0f19136b7617bb893a98e7dd6d17893ff55ba', |
| |
| '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': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/checkstyle', |
| 'version': 'UAf8iarsiPx9B6ClHuyeRNM6py76TUVdylyGLTmpb4IC', |
| }, |
| ], |
| # Needed on Linux for use on chromium_presubmit. |
| 'condition': 'checkout_android or checkout_linux', |
| 'dep_type': 'cipd', |
| }, |
| |
| # 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' + '@' + '2f8c3e725fcce30f9076a337ae5ed256a252c5f2', |
| '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' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| |
| 'src/third_party/cpuinfo/src': |
| Var('chromium_git') + '/external/github.com/pytorch/cpuinfo.git' + '@' + 'b40bae27785787b6dd70788986fd96434cf90ae2', |
| |
| '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' + '@' + 'ce42313bd903e58e82e51ed2e0a5676d22395629', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/depot_tools': |
| Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '78c53d11a01f8439b37010289e8bbdb139942d57', |
| |
| 'src/third_party/devtools-frontend/src': |
| Var('chromium_git') + '/devtools/devtools-frontend' + '@' + Var('devtools_frontend_revision'), |
| |
| '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' + '@' + 'b02c384ef4e8eba7b8bdef16f9dc6f8f4d6a6b2b', |
| |
| 'src/third_party/emoji-metadata/src': { |
| 'url': Var('chromium_git') + '/external/github.com/googlefonts/emoji-metadata' + '@' + '8de89a7a36cd024dcd30ac9f67f3f02c37a7c8fb', |
| 'condition': 'checkout_chromeos', |
| }, |
| |
| 'src/third_party/espresso': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/espresso', |
| 'version': 'y8fIfH8Leo2cPm7iGCYnBxZpwOlgLv8rm2mlcmJlvGsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/farmhash/src': |
| Var('chromium_git') + '/external/github.com/google/farmhash.git' + '@' + '816a4ae622e964763ca0862d9dbd19324a1eaf45', |
| |
| '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' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
| |
| 'src/third_party/flatbuffers/src': |
| Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '0fe13cb28ce5a3fb81f654b21cb37c9821194962', |
| |
| # Used for embedded builds. CrOS & Linux use the system version. |
| 'src/third_party/fontconfig/src': { |
| 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + '452be8125f0e2a18a7dfef469e05d19374d36307', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/fp16/src': |
| Var('chromium_git') + '/external/github.com/Maratyszcza/FP16.git' + '@' + '4dfe081cf6bcd15db339cf2680b9281b8451eeb3', |
| |
| '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' + '@' + '1be6e2c9ebfb4a26bebe6b3f3c45cffc70e71b68', |
| }, |
| |
| '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/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' + '@' + 'cd53f7c0d6a1c005e38874d143c8876d375bae70', |
| |
| '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': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/google-truth', |
| 'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/googletest/src': |
| Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'), |
| |
| # GNU binutils assembler for x86-32. |
| 'src/third_party/gnu_binutils': { |
| 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
| 'condition': 'checkout_nacl and checkout_win', |
| }, |
| |
| 'src/third_party/gperf': { |
| 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 'condition': 'checkout_win', |
| }, |
| |
| 'src/third_party/gvr-android-sdk/src': { |
| 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '233e7fe922a543e0bc55382d64cacd047307d0e7', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/arcore-android-sdk/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + 'eaa85941f2d724c60671bf94f46de7178baba7e6', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/arcore-android-sdk-client': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/arcore-android-sdk-client', |
| 'version': 'fUSZ4jxIhIx34TxRIcrmOu76-khcka_Gpn0_t9lKCWQC', |
| }, |
| ], |
| |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/fuchsia-sdk/sdk': { |
| 'packages': [ |
| { |
| 'package': Var('fuchsia_sdk_cipd_prefix') + '${{platform}}', |
| 'version': Var('fuchsia_version'), |
| }, |
| ], |
| 'condition': 'checkout_fuchsia and not fuchsia_sdk_from_gcs', |
| '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' + '@' + '50ec7b3822a90d73aa761b21fc941b485a1cb9d6', |
| |
| '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': 'O8mNUqIbFxvOcBsSNfbvpdUFvY4nfrPY0QA2kHoO2pQC', |
| }, |
| ], |
| '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': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/jdk', |
| 'version': 'egbcSHbmF1XZQbKxp_PQiGLFWlQK65krTGqQE-Bj4j8C', |
| }, |
| ], |
| # Needed on Linux for use on chromium_presubmit (for checkstyle). |
| 'condition': 'checkout_android or checkout_linux', |
| 'dep_type': 'cipd', |
| }, |
| 'src/third_party/jdk/extras': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/jdk/extras', |
| 'version': '-7m_pvgICYN60yQI3qmTj_8iKjtnT4NXicT0G_jJPqsC', |
| }, |
| ], |
| # Needed on Linux for use on chromium_presubmit (for checkstyle). |
| 'condition': 'checkout_android or checkout_linux', |
| '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' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/leveldatabase/src': |
| Var('chromium_git') + '/external/leveldb.git' + '@' + 'd019e3605f222ebc5a3a2484a2cb29db537551dd', |
| |
| 'src/third_party/libFuzzer/src': |
| Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'), |
| |
| 'src/third_party/libaddressinput/src': |
| Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'df35d6c42da4fa2759e4cfb592afe33817993b89', |
| |
| 'src/third_party/libaom/source/libaom': |
| Var('aomedia_git') + '/aom.git' + '@' + '7ace1184f1101e859e1cc9de317b48065f73d2c7', |
| |
| 'src/third_party/libavif/src': |
| Var('chromium_git') + '/external/github.com/AOMediaCodec/libavif.git' + '@' + Var('libavif_revision'), |
| |
| 'src/third_party/nearby/src': |
| Var('chromium_git') + '/external/github.com/google/nearby-connections.git' + '@' + Var('nearby_revision'), |
| |
| 'src/third_party/securemessage/src': |
| Var('chromium_git') + '/external/github.com/google/securemessage.git' + '@' + Var('securemessage_revision'), |
| |
| 'src/third_party/ukey2/src': |
| Var('chromium_git') + '/external/github.com/google/ukey2.git' + '@' + Var('ukey2_revision'), |
| |
| # Userspace interface to kernel DRM services. |
| 'src/third_party/libdrm/src': { |
| 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '56f81e6776c1c100c3f627b2c1feb9dcae2aad3c', |
| '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' + '@' + '6c45a4f3a05cb5dd700414fe4d94cf685159d3ce', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/libjpeg_turbo': |
| Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '22f1a22c99e9dde8cd3c72ead333f425c5a7aa77', |
| |
| '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' + '@' + '68eba9d6ee8b11fb58ece36b6c46d07965d7f7ff', |
| |
| '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' + '@' + '5b7c744eb8310250ccc534f3f86a2015b3887a0a', |
| |
| # 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' + '@' + '3c86843ae0f8d560ae0d15b92e34ce88cf83057a', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/libvpx/source/libvpx': |
| Var('chromium_git') + '/webm/libvpx.git' + '@' + '711bef67400f096416cb1ba7f6560e533871490f', |
| |
| 'src/third_party/libwebm/source': |
| Var('chromium_git') + '/webm/libwebm.git' + '@' + 'e4fbea0c9751ae8aa86629b197a28d8276a2b0da', |
| |
| 'src/third_party/libyuv': |
| Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6900494d90ae095d44405cd4cc3f346971fa69c9', |
| |
| '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/material_design_icons/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 'condition': 'checkout_ios', |
| }, |
| |
| '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', |
| }, |
| |
| # GNU binutils assembler for x86-64. |
| 'src/third_party/mingw-w64/mingw/bin': { |
| 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
| 'condition': 'checkout_nacl and checkout_win', |
| }, |
| |
| # Graphics buffer allocator for Chrome OS. |
| 'src/third_party/minigbm/src': { |
| 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'd73fa7ff377919d94d4ed675cc91a070f0631548', |
| 'condition': 'checkout_linux', |
| }, |
| |
| # Minizip library. Used on Chrome OS. |
| 'src/third_party/minizip/src': { |
| 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/mockito/src': { |
| 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
| 'condition': 'checkout_android', |
| }, |
| |
| # Binaries for nacl sdk. |
| 'src/third_party/nacl_sdk_binaries': { |
| 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
| 'condition': 'checkout_nacl and checkout_win', |
| }, |
| |
| 'src/third_party/nasm': { |
| 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
| '9215e8e1d0fe474ffd3e16c1a07a0f97089e6224' |
| }, |
| |
| 'src/third_party/neon_2_sse/src': |
| Var('chromium_git') + '/external/github.com/intel/ARM_NEON_2_x86_SSE.git' + '@' + '8dbe2461c89760ac4b204aa0eafb72413a97957d', |
| |
| 'src/third_party/netty-tcnative/src': { |
| 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '7eeb50be90c9ba0f6afa3375132df63942a0f32d', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/netty4/src': { |
| 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/objenesis': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/objenesis', |
| 'version': 'tknDblENYi8IaJYyD6tUahUyHYZlzJ_Y74_QZSz4DpIC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/openh264/src': |
| Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'fac04ceb3e966f613ed17e98178e9d690280bba6', |
| |
| 'src/third_party/openscreen/src': |
| Var('chromium_git') + '/openscreen' + '@' + 'f1737006807906d1dabf8796f5b41b528c569ec0', |
| |
| 'src/third_party/openxr/src': { |
| 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + 'bf21ccb1007bb531b45d9978919a56ea5059c245', |
| 'condition': 'checkout_openxr', |
| }, |
| |
| 'src/third_party/pdfium': |
| Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| |
| # Parses Windows PE/COFF executable format. |
| 'src/third_party/pefile': { |
| 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 'condition': 'checkout_win', |
| }, |
| |
| 'src/third_party/perfetto': |
| Var('android_git') + '/platform/external/perfetto.git' + '@' + 'dd682e48aa77446c4bec51af0f08421d1a2bac47', |
| |
| 'src/third_party/perl': { |
| 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
| 'condition': 'checkout_win', |
| }, |
| |
| 'src/third_party/pthreadpool/src': |
| Var('chromium_git') + '/external/github.com/Maratyszcza/pthreadpool.git' + '@' + '1787867f6183f056420e532eec640cba25efafea', |
| |
| 'src/third_party/proguard': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/proguard', |
| 'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| # 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' + '@' + 'c7b993eb750e60c307e82f75763600d9c06a6de1', |
| |
| 'src/third_party/pywebsocket3/src': |
| Var('chromium_git') + '/external/github.com/GoogleChromeLabs/pywebsocket3.git' + '@' + '50602a14f1b6da17e0b619833a13addc6ea78bc2', |
| |
| 'src/third_party/qemu-linux-arm64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/qemu/linux-arm64', |
| 'version': 'b1b61a39e3ab0935cd030f27e01740578b04b967' |
| }, |
| ], |
| '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' + '@' + 'ba2e7c2f25047a6848f2baa9bc4cb700ea9dda84', |
| |
| 'src/third_party/r8': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/r8', |
| 'version': 'iMLEt10uXASDfG2AlATR1fO8xYhBoF24nQvDDXLY6Q8C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/requests/src': { |
| 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'refs/tags/v2.23.0', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/robolectric': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/robolectric', |
| 'version': 'WZ96VJuhBM63xzHb-_E72Tf46M9yIbfia6basI1YG4EC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/ruy/src': |
| Var('chromium_git') + '/external/github.com/google/ruy.git' + '@' + '7ef39c5745a61f43071e699c6a96da41701ae59f', |
| |
| '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' + '@' + '65dc7b383985eb4f63cd3e752136db8d9b4be8c0', |
| |
| 'src/third_party/sqlite/src': |
| Var('chromium_git') + '/chromium/deps/sqlite.git' + '@' + 'cb47d7089f714e4514f126dfa8ac630cab78ea32', |
| |
| 'src/third_party/sqlite4java': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/sqlite4java', |
| 'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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/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' + '@' + 'f4a57bf73a0e7d063d320ad5918abb0ec31e2cd6', |
| |
| 'src/third_party/turbine': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/turbine', |
| 'version': 'RxaW8ZVJZ7rF3dbAGbL1OV6f9ZELjVeiiQbpkDsuxA4C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/vulkan-deps': '{chromium_git}/vulkan-deps@8e318438088194b433410d57c62933eb1770d8f7', |
| |
| 'src/third_party/vulkan_memory_allocator': |
| Var('chromium_git') + '/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git' + '@' + 'ebe84bec02c041d28f902da0214bf442743fc907', |
| |
| # Display server protocol for Linux. |
| 'src/third_party/wayland/src': { |
| 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + 'e60398b1755bfcdf09f040d3769131fe0d9762fc', |
| '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' + '@' + 'd324986823519c15b2162fc3e0a720f349e43b0c', |
| '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', |
| }, |
| |
| 'src/third_party/webdriver/pylib': |
| Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'd0045ec570c1a77612db35d1e92f05e1d27b4d53', |
| |
| 'src/third_party/webgl/src': |
| Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'e58ed2132aa47ac110a4cce1763abfa34f4fa34e', |
| |
| 'src/third_party/webgpu-cts/src': |
| Var('chromium_git') + '/external/github.com/gpuweb/cts.git' + '@' + '6c0f3bab40dead9e205a95ef64ad8f912c694a1d', |
| |
| 'src/third_party/webrtc': |
| Var('webrtc_git') + '/src.git' + '@' + '1c5808145e8b151800b0320b8a7316a09b706488', |
| |
| 'src/third_party/libgifcodec': |
| Var('skia_git') + '/libgifcodec' + '@'+ Var('libgifcodec_revision'), |
| |
| # 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. |
| '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' + '@' + '420cfd00f2de91de74bd9d4d8348e43c582d29f0', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/xdg-utils': { |
| 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/xnnpack/src': |
| Var('chromium_git') + '/external/github.com/google/XNNPACK.git' + '@' + 'f3796a189a1821f56278aa83d7fcfba480873d28', |
| |
| 'src/tools/page_cycler/acid3': |
| Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| |
| 'src/tools/skia_goldctl/linux': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/linux-amd64', |
| 'version': 'ae24MBF5YbEEwpnfCm1dgu86m0StdnqA5BuDV09VyR4C', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_linux', |
| }, |
| 'src/tools/skia_goldctl/win': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/windows-amd64', |
| 'version': 'n3jvsDMl43swXVzULALv9Wh0kHahqZ4VSy7_i3wO1LgC', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| }, |
| |
| 'src/tools/skia_goldctl/mac_amd64': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/mac-amd64', |
| 'version': 'k-LraF0EyymBQiGapRFxHW3QchEFhcw8Uz1C9EaQES8C', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| }, |
| |
| 'src/tools/skia_goldctl/mac_arm64': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/mac-arm64', |
| 'version': 'UU5Fs5VQoMBiiUttczNdC1YbiiL2dTmU0j55Lg-J-r0C', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| }, |
| |
| 'src/v8': |
| Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| |
| 'src-internal': { |
| 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@28b82e7e8f39aa2ea2202676cc4c20d62bb23766', |
| 'condition': 'checkout_src_internal', |
| }, |
| |
| 'src/ash/ambient/resources': { |
| 'packages': [ |
| { |
| 'package': 'chromeos_internal/assistant/ambient', |
| 'version': 'version:feel_the_breeze_tree_shadow_improvement', |
| }, |
| ], |
| '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': 'DBAjQp7XtHC6O9PVIraC8htClHHAhZFSQ8bce8tF5dYC', |
| }, |
| ], |
| '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': 'y6WH5M1W1YJZjkVnqvoKiLYFlY0Dc8PC1m_n8Fv6a2MC', |
| }, |
| ], |
| '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': 'ddtGiyriWl2T7dVOXc5ftEX7wbO9I8iWSHgaEHOW7QAC', |
| }, |
| ], |
| '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': 'C_W-d-5MCa4aXPlaRI94F399ZFFKha1JNPSQOh3p-IAC', |
| }, |
| ], |
| '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' + '@' + '5794e96eb8bae47bb48feee915d99583573b3887', |
| 'condition': 'checkout_android_prebuilts_build_tools', |
| }, |
| |
| # TODO(crbug.com/1290782): This should ideally be replaced with recursdeps, |
| # but that arises concern which revision of devtools-frontend we should use |
| # between public and internal build. So we have copy of CIPD deps from |
| # devtools-frontend for now here. |
| 'src/third_party/devtools-frontend/src/third_party/esbuild': { |
| 'packages': [ |
| { |
| 'package': 'infra/3pp/tools/esbuild/${{platform}}', |
| # This should be synced with devtools-frontend DEPS. |
| 'version': 'version:2@0.14.13.chromium.2', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| }, |
| |
| # === ANDROID_DEPS Generated Code Start === |
| # Generated by //third_party/android_deps/fetch_all.py |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/android_arch_lifecycle_common_java8': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8', |
| 'version': 'version:2@1.1.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_design': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_multidex': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 'version': 'version:2@1.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/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', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_swiperefreshlayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_swiperefreshlayout', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_transition': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_versionedparcelable': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_versionedparcelable', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_viewpager': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_viewpager', |
| 'version': 'version:2@28.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_common', |
| 'version': 'version:2@30.2.0-beta01.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs', |
| 'version': 'version:2@1.1.5.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs_configuration': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs_configuration', |
| 'version': 'version:2@1.1.5.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api', |
| 'version': 'version:2@30.2.0-beta01.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_sdk_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_sdk_common', |
| 'version': 'version:2@30.2.0-beta01.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine', |
| 'version': 'version:2@2.8.8.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms', |
| 'version': 'version:2@1.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_apps_common_testing_accessibility_framework_accessibility_test_framework', |
| 'version': 'version:2@3.1.2.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_datatransport_transport_api': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_datatransport_transport_api', |
| 'version': 'version:2@2.2.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth', |
| 'version': 'version:2@20.1.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone', |
| 'version': 'version:2@18.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base', |
| 'version': 'version:2@18.0.2.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_base', |
| 'version': 'version:2@18.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_basement', |
| 'version': 'version:2@18.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cloud_messaging': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cloud_messaging', |
| 'version': 'version:2@16.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_fido', |
| 'version': 'version:2@19.0.0-beta.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_gcm', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_iid', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps', |
| 'version': 'version:2@18.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_location', |
| 'version': 'version:2@19.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
| 'version': 'version:2@17.0.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_tasks', |
| 'version': 'version:2@18.0.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision', |
| 'version': 'version:2@20.1.3.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common', |
| 'version': 'version:2@19.1.3.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_material_material': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_material_material', |
| 'version': 'version:2@1.6.0-alpha01.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_android_play_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core', |
| 'version': 'version:2@1.10.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_auto_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_auto_common', |
| 'version': 'version:2@1.2.1.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_service_auto_service': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service', |
| 'version': 'version:2@1.0-rc6.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations', |
| 'version': 'version:2@1.0-rc6.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_value_auto_value_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_value_auto_value_annotations', |
| 'version': 'version:2@1.9.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 'version': 'version:2@3.0.2.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_code_gson_gson': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_code_gson_gson', |
| 'version': 'version:2@2.8.0.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 'version': 'version:2@2.30.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 'version': 'version:2@2.30.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 'version': 'version:2@2.30.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 'version': 'version:2@2.30.cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation': { |
| 'packages': [ |
|