| # 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 |
| |
| 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_oculus_sdk', |
| 'checkout_openxr', |
| 'mac_xcode_version', |
| ] |
| |
| |
| 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, |
| |
| # 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 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 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, |
| |
| # Check out and download nacl by default. This can be disabled e.g. with |
| # custom_vars. |
| 'checkout_nacl': True, |
| |
| # 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, |
| |
| # 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, |
| |
| # By default do not check out the Oculus SDK. Only available for Googlers. |
| 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
| |
| # 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 which match at least one of the whitelist |
| # entries in a comma-separated list. |
| # |
| # Only the X64 and ARM64 QEMU images are downloaded by default. Developers |
| # that need to boot on other target architectures or devices can opt to |
| # download more boot images. Example of images include: |
| # |
| # Emulation: |
| # qemu.x64, qemu.arm64 |
| # Hardware: |
| # generic.x64, generic.arm64 |
| # |
| # Wildcards are supported (e.g. "qemu.*"). |
| 'checkout_fuchsia_boot_images': "qemu.x64,qemu.arm64", |
| |
| # By default, do not check out files required to run fuchsia tests in |
| # qemu on linux-arm64 machines. |
| 'checkout_fuchsia_for_arm64_host': False, |
| |
| # 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': '', |
| # Building for CrOS is only supported on linux currently. |
| 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_boards}" != "")', |
| # Surround the board var in quotes so gclient doesn't try parsing the string |
| # as an expression. |
| 'cros_download_vm': '(("{cros_boards}" == "amd64-generic") or ("{cros_boards}" == "betty")) or ("{cros_boards}" == "betty-pi-arc")', |
| # Should we build and test for public (ie: full) CrOS images, or private |
| # (ie: release) images. |
| 'use_public_cros_config': 'not checkout_src_internal', |
| |
| # ANGLE's deps are relative to the angle_root variable. |
| 'angle_root': 'src/third_party/angle', |
| |
| # 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:56ae79476e3caf14da59d75118408aa778637936', |
| |
| # 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, |
| |
| # This can be overridden, e.g. with custom_vars, to download a nonstandard |
| # Xcode version in build/mac_toolchain.py |
| # instead of downloading the prebuilt pinned revision. |
| 'mac_xcode_version': 'default', |
| |
| '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': 'refs/heads/chrome/m85', |
| # 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': 'refs/heads/8.5-lkgr', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling swarming_client |
| # and whatever else without interference from each other. |
| 'swarming_revision': '4c095d04179dc725a300085ae21fe3b79900d072', |
| # 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': 'refs/heads/chromium/4183', |
| # 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': 'c4f3b713800f6cde50452999223f6fb34e973cd0', |
| # 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': 'refs/heads/chromium/4183', |
| # 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': '430a7423039682e4bbc7b522e3b57b2c8dca5e3b', |
| # 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': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
| # 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': '4fe018038f87675c083d0cfb6a6b57c274fb1753', |
| # 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': 'f70e2f1641e280e777edfdad7f73a2cfa38139c7', |
| # 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': 'fd20fafa8ec19700e12daa031bf792bae8b6bb21', |
| # 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': 'a4434747558d872c55e55ce428019a8e15d222dc', |
| # 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': 'e3af529e511ca492284cdd9f4584666b88a9e00f', |
| # 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 catapult |
| # and whatever else without interference from each other. |
| 'catapult_revision': 'e9a7aeca54dabb151af5ad01db812278f93e5d25', |
| # 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': 'refs/heads/chromium/4183', |
| # 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': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
| # 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': 'n-b1Qd7iFb8qzHlr1C_jIeu070UDgO_BwePtH42UqGcC', |
| # 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': 'f4WdgkPvDdVCE8zBWPzcSIj4N9WFhKp3CSKDWylXuLEC', |
| # 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': 'zMVtBEihXp2Z0NYFNjLLmNrwy6252b_YWG6sh2l0QAcC', |
| # 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': 'yb33klKQV9UzzB-lDSsq36vzhTXOUZ2aRONBvPGwvdcC', |
| # 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': '4gxhM8E62bvZpQs7Q3d0DinQaW0RLCIefhXrQBFkNy8C', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling feed |
| # and whatever else without interference from each other. |
| 'spv_tools_revision': '7a1af5878594cec2992a1bb00565b4c712490239', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling feed |
| # and whatever else without interference from each other. |
| 'spv_headers_revision': 'ac638f1815425403e946d0ab78bac71d2bdbf3be', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling feed |
| # and whatever else without interference from each other. |
| 'spirv_cross_revision': 'f9ae06512ef744a1379d564ed0a202b12dc3478b', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling feed |
| # and whatever else without interference from each other. |
| 'shaderc_revision': '43c639f0906aa7ba019391dbe1a744330e513856', |
| # 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': '2a6cc4f8fb40beb27a3542528955df7790a42116', |
| # 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': '7a06f9b64641098bfa21f626c6030b959cb3f383', |
| # 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': 'e976867fb57a0cd87e3b0fe05d59e0ed63c6febb', |
| # 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': '00cc8a50aa0c86b6bcb37e9ece8fb100047cc17b', |
| # 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': '4cfee6282b97533e6c99183ddf7a897173755c69', |
| |
| # TODO(crbug.com/941824): The values below need to be kept in sync |
| # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| # update the other. There is a presubmit check that checks that |
| # you've done so; if you are adding new tools to //buildtools and |
| # hence new revisions to this list, make sure you update the |
| # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| # revisions. |
| |
| # GN CIPD package version. |
| 'gn_version': 'git_revision:7d7e8deea36d126397bda2cf924682504271f0e1', |
| |
| # Also, if you change these, update buildtools/DEPS too. Also update the |
| # libc++ svn_revision in //buildtools/deps_revisions.gni. |
| 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
| 'libcxx_revision': 'd9040c75cfea5928c804ab7c235fed06a63f743a', |
| 'libcxxabi_revision': '196ba1aaa8ac285d94f4ea8d9836390a45360533', |
| 'libunwind_revision': 'd999d54f4bca789543a2eb6c995af2d9b5a1f3ed', |
| } |
| |
| # 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') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| Var('clang_format_revision'), |
| 'src/buildtools/linux64': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/linux-amd64', |
| 'version': Var('gn_version'), |
| } |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'host_os == "linux"', |
| }, |
| 'src/buildtools/mac': { |
| 'packages': [ |
| { |
| 'package': 'gn/gn/mac-amd64', |
| '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/chrome/browser/resources/media_router/extension/src': |
| Var('chromium_git') + '/media_router.git' + '@' + 'd4389c097c61fa8c5aa5eb7c3ba34ee203dd62e3', |
| |
| 'src/android_webview/tools/cts_archive': { |
| 'packages': [ |
| { |
| 'package': 'chromium/android_webview/tools/cts_archive', |
| 'version': 'Zmi8uHgTaLXGm9f8Fu_0U-Xa6BljyNjsyL0Nq7VouKoC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/installer/mac/third_party/xz/xz': { |
| 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 'condition': 'checkout_mac', |
| }, |
| |
| 'src/tools/clang/dsymutil': { |
| 'packages': [ |
| { |
| 'package': 'chromium/llvm-build-tools/dsymutil', |
| 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
| } |
| ], |
| 'condition': 'checkout_mac or checkout_ios', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/test/data/autofill/captured_sites': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
| 'version': '_spxwHuc66jyUSt1TusjXfMvywpnPJzFCH-4vkPBPsYC', |
| } |
| ], |
| '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': 'MuT6UWjyB52nWFDuu4RCv4o_vMPIZdI4P2m2YsC66fAC', |
| } |
| ], |
| 'condition': 'checkout_chromium_password_manager_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/ios/third_party/earl_grey/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'ff524fb646253b0cbc05aa6d0b327b6b3ddd0385', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/earl_grey2/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '8fbc948c8479f54b7729b0f290c82ca1b5ee4268', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/edo/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '97121c64019fa0e8bfbc8254e3ccb5572c500746', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/gtx/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/firebase': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/firebase_ios', |
| 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
| }, |
| ], |
| 'condition': 'checkout_ios', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/ios/third_party/fishhook/src': { |
| 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + '66315a9c251edfe92f669ae2deeac0d75374c948', |
| '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' + '@' + '39de3e3efbabda3e20aabf14485f872979b8d230', |
| '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' + '@' + 'd8f32464ac97d5551c8db19de916170ae87cfa90', |
| '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' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
| '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' + '@' + '499b45d1895b565096302a209c0c728df03b95d4', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/motion_interchange_objc/src': { |
| 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/motion_animator_objc/src': { |
| 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
| 'condition': 'checkout_ios', |
| }, |
| |
| 'src/ios/third_party/motion_transitioning_objc/src': { |
| 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '5bb0d577dd78472536480496ace115bc593ed0e1', |
| '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' + '@' + 'fc5afac6847dc61addc1177103aa602e71a9ecac', |
| |
| 'src/native_client': { |
| 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 'condition': 'checkout_nacl', |
| }, |
| |
| 'src/net/third_party/quiche/src': |
| Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| |
| 'src/tools/luci-go': { |
| 'packages': [ |
| { |
| 'package': 'infra/tools/luci/isolate/${{platform}}', |
| 'version': Var('luci_go'), |
| }, |
| { |
| 'package': 'infra/tools/luci/isolated/${{platform}}', |
| 'version': Var('luci_go'), |
| }, |
| { |
| 'package': 'infra/tools/luci/swarming/${{platform}}', |
| 'version': Var('luci_go'), |
| }, |
| ], |
| 'dep_type': 'cipd', |
| }, |
| |
| # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| # third_party/spirv-cross/src because its header files are at the root of |
| # the repository and dependencies include them like so: |
| # #include "spirv-cross/spirv_glsl.hpp" |
| 'src/third_party/spirv-cross/spirv-cross': |
| Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| Var('spirv_cross_revision'), |
| |
| 'src/third_party/spirv-headers/src': |
| Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| Var('spv_headers_revision'), |
| |
| 'src/third_party/SPIRV-Tools/src': |
| Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| Var('spv_tools_revision'), |
| |
| 'src/third_party/shaderc/src': |
| Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| Var('shaderc_revision'), |
| |
| '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': 'jtrjlp1zR2hubDA9R5NKk4GwXfuuRhoXts7tgjevxDMC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_ndk': { |
| 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87', |
| 'condition': 'checkout_android_native_support', |
| }, |
| |
| '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', |
| 'version': '4IAlMU4jo15KjMPF3EUnrPZs0RYoPW8n9jSJ4dvHDWUC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/aapt2': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_build_tools/aapt2', |
| 'version': 'R2k5wwOlIaS6sjv2TIyHotiPJod-6KqnZO8NH-KFK8sC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/art': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_build_tools/art', |
| 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_build_tools/bundletool': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_tools_bundletool', |
| 'version': 'Yyhy8FicC3R0ATRzWqGNh4ffsCLz_0nu_BjmNPAdhvIC', |
| }, |
| ], |
| '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' + '@' + 'ac2f9c348999e8943567c6e4d50a82a5010ca263', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/android_sdk/public': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_sdk/public/build-tools/29.0.2', |
| '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/extras', |
| 'version': Var('android_sdk_extras_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-29', |
| 'version': Var('android_sdk_platforms_version'), |
| }, |
| { |
| 'package': 'chromium/third_party/android_sdk/public/sources/android-29', |
| 'version': Var('android_sdk_sources_version'), |
| }, |
| { |
| 'package': 'chromium/third_party/android_sdk/public/cmdline-tools', |
| 'version': 'uM0XtAW9BHh8phcbhBDA9GfzP3bku2SP7AiMahhimnoC', |
| }, |
| ], |
| 'condition': 'checkout_android_native_support', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/angle': |
| Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| |
| 'src/third_party/dav1d/libdav1d': |
| Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '47daa4df3387c1529536243db80b81f3878cbf76', |
| |
| 'src/third_party/dawn': |
| Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| |
| 'src/third_party/glfw/src': |
| Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
| |
| 'src/third_party/apache-portable-runtime/src': { |
| 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/bazel': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/bazel', |
| 'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/google_benchmark/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/benchmark.git' + '@' + '367119482ff4abc3d73e4a109b410090fc281337', |
| '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' + '@' + 'e3a62dc5502dec6ab451061769d7efaf5b7ffba8', |
| |
| '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/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', |
| }, |
| |
| # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 'src/third_party/chromite': { |
| 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'cba0d2713ec84d1314453864e7ec7358af437ff3', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/cld_3/src': |
| Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '06f695f1c8ee530104416aab5dcf2d6a1414a56a', |
| |
| 'src/third_party/colorama/src': |
| Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| |
| 'src/third_party/crc32c/src': |
| Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
| |
| # For Linux and Chromium OS. |
| 'src/third_party/cros_system_api': { |
| 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + 'bd15beb76e99b36bcd1c58052462a735b4914254', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/depot_tools': |
| Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '0bfbd890c3e2f3aa734119507d14162248409664', |
| |
| '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' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
| |
| 'src/third_party/elfutils/src': { |
| 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
| 'condition': 'checkout_android_native_support', |
| }, |
| |
| 'src/third_party/espresso': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/espresso', |
| 'version': 'y8fIfH8Leo2cPm7iGCYnBxZpwOlgLv8rm2mlcmJlvGsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/ffmpeg': |
| Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '23b2a15c2595925c8ec0d3be9a51ec3257281bd1', |
| |
| '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' + '@' + '136d75fa6580ef87d1b7cbc243e617f21149852e', |
| |
| # 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/grpc/src': { |
| 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '74b981a6a3d9ba17f3acae1d72b9109325ef656d', |
| }, |
| |
| 'src/third_party/freetype/src': |
| Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| |
| '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/libgav1/src': |
| Var('chromium_git') + '/codecs/libgav1.git' + '@' + 'bf190c43e5c7cc81751867c917a81bc2920be079', |
| |
| 'src/third_party/glslang/src': |
| Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + 'fbb9dc2cf1afbc1ca301c66bd3ec7e745dfed0e4', |
| |
| '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/guava': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/guava', |
| 'version': 'y8Zx7cKTiOunLhOrfC4hOt5kDQrLJ_Rq7ISDmXkPdYsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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' + '@' + '765ca36d1d03e8d97bcb4d48d407277c3b503f21', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/arcore-android-sdk-client': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/arcore-android-sdk-client', |
| 'version': 'Ki3Nxeov-cyGeHGIxrhG1teX7zYstsUtg1k-SAQ8CpAC', |
| }, |
| ], |
| |
| 'condition': 'checkout_android', |
| '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' + '@' + '6fdad5388130757e1efb58a14b8e7f9494625691', |
| |
| 'src/third_party/icu': |
| Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '79326efe26e5440f530963704c3c0ff965b3a4ac', |
| |
| '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' + '@' + 'f98ffcb31d1daa57fbe5bd6def8ad7c3126d8242', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/jdk': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/jdk', |
| 'version': 'PfRSnxe8Od6WU4zBXomq-zsgcJgWmm3z4gMQNB-r2QcC', |
| }, |
| { |
| 'package': 'chromium/third_party/jdk/extras', |
| 'version': 'fkhuOQ3r-zKtWEdKplpo6k0vKkjl-LY_rJTmtzFCQN4C', |
| }, |
| ], |
| # 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' |
| + '@' + '645250b6690785be60ab6780ce4b58698d884d11', # release 1.9.1 |
| |
| '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' + '@' + '5bd5f0f67a5eb0ed74c16b3ae847ec4e5bc3e412', |
| |
| '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' + '@' + '390dfc08e3806a2125d08d4d8d034a24d587d77a', |
| |
| 'src/third_party/libaom/source/libaom': |
| Var('aomedia_git') + '/aom.git' + '@' + 'e1ebb418ebdcc5202ed6a3bea38547fd6ed4b7ca', |
| |
| 'src/third_party/libavif/src': |
| Var('chromium_git') + '/external/github.com/AOMediaCodec/libavif.git' + '@' + Var('libavif_revision'), |
| |
| # Userspace interface to kernel DRM services. |
| 'src/third_party/libdrm/src': { |
| 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0190f49a139e7069d7cad6a6890832831da1aa8b', |
| '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' + '@' + '7e3ad79800a7945fb37173149842b494ab8982b2', |
| |
| 'src/third_party/liblouis/src': { |
| 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '03d7d72d983d47c17f7de95bbeae89fe33e41943', |
| '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' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
| |
| # 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' + '@' + '11659d420a71e7323b379ea8781f07c6f384bc7e', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/libvpx/source/libvpx': |
| Var('chromium_git') + '/webm/libvpx.git' + '@' + '769129fb29fc66720be2b01276a472c334757d2d', |
| |
| 'src/third_party/libwebm/source': |
| Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
| |
| 'src/third_party/libyuv': |
| Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6afd9becdf58822b1da6770598d8597c583ccfad', # from r1714 |
| |
| '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', |
| }, |
| |
| # 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' + '@' + 'bc4f023bfcc51cf9dcfcfec5bf4177b2e607dd68', |
| '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' + '@' + |
| '4fa54ca5f7fc3a15a8c78ac94688e64d3e4e4fa1' |
| }, |
| |
| 'src/third_party/netty-tcnative/src': { |
| 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| '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' + '@' + '3dd5b80bc4f172dd82925bb259cb7c82348409c5', |
| |
| 'src/third_party/openscreen/src': |
| Var('chromium_git') + '/openscreen' + '@' + 'fdc66e03064d70f2c4a60dbd3fdd3925b21a43a1', |
| |
| 'src/third_party/openxr/src': { |
| 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '9e97b73e7dd2bfc07745489d728f6a36665c648f', |
| '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' + '@' + 'aa0099498c7e3efbdf0efcd445ab6848e984666a', |
| |
| 'src/third_party/perl': { |
| 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
| 'condition': 'checkout_win', |
| }, |
| |
| 'src/third_party/proguard': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/proguard', |
| 'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/protoc_javalite': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/protoc_javalite', |
| 'version': 'version:3.0.0-cr1', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| # Dependency of chromite.git and 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' + '@' + 'a3f901c6a99e786ed0fa58a89927f630af17a90c', |
| |
| 'src/third_party/pywebsocket3/src': |
| Var('chromium_git') + '/external/github.com/GoogleChromeLabs/pywebsocket3.git' + '@' + 'faf478a0453ceae78f2a3bc11c6c21e13362628f', |
| |
| '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/qemu-linux-x64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/qemu/linux-amd64', |
| 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| }, |
| ], |
| 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/qemu-mac-x64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/qemu/mac-amd64', |
| 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| }, |
| ], |
| 'condition': 'host_os == "mac" and checkout_fuchsia', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/aemu-linux-x64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/third_party/aemu/linux-amd64', |
| 'version': 'YFi4RbbToiNVSl0eKxjhhhAElSEXx2Y9i-5Q4eBGkUwC' |
| }, |
| ], |
| 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/aemu-mac-x64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/third_party/aemu/mac-amd64', |
| 'version': 'guAtTBQ1SKIjr06srbTOjNWiYxrM4nK1AbfeQo1gBmQC' |
| }, |
| ], |
| 'condition': 'host_os == "mac" and checkout_fuchsia', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/re2/src': |
| Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '14d3193228e3b3cfd21094474d64434a4840bae9', |
| |
| 'src/third_party/r8': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/r8', |
| 'version': 'B467c9t23JiW_6XGqhvHvtEKWSkrPS2xG_gho_gbAI4C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/requests/src': { |
| 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/robolectric': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/robolectric', |
| 'version': 'iC6RDM5EH3GEAzR-1shW_Mg0FeeNE5shq1okkFfuuNQC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/androidx': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/androidx', |
| 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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' + '@' + 'f16eda3466633b88d0a55199deb00aa5429c6219', |
| |
| 'src/third_party/sqlite/src': |
| Var('chromium_git') + '/chromium/deps/sqlite.git' + '@' + '0879314d807e79024d74bc8cc44c0814f7c960d1', |
| |
| 'src/third_party/sqlite4java': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/sqlite4java', |
| 'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/swiftshader': |
| Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| |
| 'src/third_party/turbine': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/turbine', |
| 'version': 'mr9FyghUYWLYv4L5Nr3C_oceLfmmybnFgAi366GjQoYC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/turbine/src': { |
| 'url': Var('chromium_git') + '/external/github.com/google/turbine.git' + '@' + '1c98ea68543162a33c89c3629ed29c2c46391b7b', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/ub-uiautomator/lib': { |
| 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/usrsctp/usrsctplib': |
| Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'a8c51df76caae94254b1e59999405f739467490e', |
| |
| 'src/third_party/vulkan_memory_allocator': |
| Var('chromium_git') + '/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git' + '@' + '431d6e57284aeb08118ff428dfbd51c94342faa1', |
| |
| # Display server protocol for Linux. |
| 'src/third_party/wayland/src': { |
| 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + 'e091839dd08354289e501a47219e0c7a6472dff3', |
| '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' + '@' + '684cd23ae31fafb9eda2a0cd15edb4e96de92259', |
| 'condition': 'checkout_linux', |
| }, |
| |
| # Wireless Display Software. Used on Chrome OS. |
| 'src/third_party/wds/src': { |
| 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| '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' + '@' + 'd0fcf3daa5f98402f63e0e99a48fc60a4be18cf1', |
| |
| 'src/third_party/webgpu-cts/src': |
| Var('chromium_git') + '/external/github.com/gpuweb/cts.git' + '@' + '6371fe6f1acf4b614155acfb468dec4c55c50d27', |
| |
| 'src/third_party/blink/web_tests/wpt_internal/webgpu/third_party/glslang_js': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/glslang_js', |
| 'version': 'Zka0-f53_HEAZ1bpsxr9BSi7P51-4bzYwSMg0RMKX1AC', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/webrtc': |
| Var('webrtc_git') + '/src.git' + '@' + 'refs/branch-heads/4183', |
| |
| '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.git' + '@' + Var('wuffs_revision'), |
| |
| 'src/third_party/weston/src': { |
| 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/weston.git' + '@' + 'db905f467169f9f131c5ddc6038296f866d5daeb', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/xdg-utils': { |
| 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/xstream': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/xstream', |
| 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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': 'git_revision:e0376578f2f33586b6ac283a0787582c4678ecb1', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_linux', |
| }, |
| 'src/tools/skia_goldctl/win': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/windows-amd64', |
| 'version': 'git_revision:e0376578f2f33586b6ac283a0787582c4678ecb1', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| }, |
| 'src/tools/skia_goldctl/mac': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/mac-amd64', |
| 'version': 'git_revision:e0376578f2f33586b6ac283a0787582c4678ecb1', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_mac', |
| }, |
| |
| 'src/tools/swarming_client': |
| Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| |
| 'src/v8': |
| Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| |
| 'src-internal': { |
| 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@refs/heads/chromium/4183', |
| 'condition': 'checkout_src_internal', |
| }, |
| |
| 'src/chromeos/components/help_app_ui/resources/prod': { |
| 'packages': [ |
| { |
| 'package': 'chromeos_internal/apps/help_app/app', |
| 'version': 'y1aidHs1vMdqMQarwbKH6Rsq1nRbDmR3KSVB0OrMYfgC', |
| }, |
| ], |
| 'condition': 'checkout_chromeos and checkout_src_internal', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chromeos/components/media_app_ui/resources/prod': { |
| 'packages': [ |
| { |
| 'package': 'chromeos_internal/apps/media_app/app', |
| 'version': 'MTvf6xnEsm2xaiMepcDW3q1gk1GBkPffA0g1dO07Dm8C', |
| }, |
| ], |
| 'condition': 'checkout_chromeos and checkout_src_internal', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/google_android_play_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
| 'version': 'ojrkXUE6tjG8FYmoLfCD3YdOxTyl2BXMdmk7Fb6cS5MC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| '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', |
| }, |
| |
| # === 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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| '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:1.1.1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_activity_activity': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_activity_activity', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_annotation_annotation_experimental': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation_experimental', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_appcompat_appcompat': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat', |
| 'version': 'version:1.2.0-beta01-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_appcompat_appcompat_resources': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat_resources', |
| 'version': 'version:1.2.0-beta01-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_arch_core_core_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_common', |
| 'version': 'version:2.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_arch_core_core_runtime': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_runtime', |
| 'version': 'version:2.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_cardview_cardview': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_cardview_cardview', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_collection_collection': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_collection_collection', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_concurrent_concurrent_futures': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_concurrent_concurrent_futures', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_core_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_core_core', |
| 'version': 'version:1.3.0-beta01-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_customview_customview': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_customview_customview', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_documentfile_documentfile': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_documentfile_documentfile', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_fragment_fragment': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_fragment_fragment', |
| 'version': 'version:1.2.5-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_gridlayout_gridlayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_gridlayout_gridlayout', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_interpolator_interpolator': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_interpolator_interpolator', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_leanback_leanback': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_leanback_leanback_preference': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback_preference', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v13': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v13', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v4': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v4', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8', |
| 'version': 'version:2.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata', |
| 'version': 'version:2.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel_savedstate': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel_savedstate', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_loader_loader': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_loader_loader', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_media_media': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_media_media', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_mediarouter_mediarouter': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_mediarouter_mediarouter', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_multidex_multidex': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_multidex_multidex', |
| 'version': 'version:2.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_palette_palette': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_palette_palette', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_preference_preference': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_preference_preference', |
| 'version': 'version:1.1.1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_print_print': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_print_print', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_recyclerview_recyclerview': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_recyclerview_recyclerview', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_savedstate_savedstate': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_savedstate_savedstate', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
| 'version': 'version:1.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_contrib': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_contrib', |
| 'version': 'version:3.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_core', |
| 'version': 'version:3.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource', |
| 'version': 'version:3.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_intents': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_intents', |
| 'version': 'version:3.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_web': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_web', |
| 'version': 'version:3.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
| 'version': 'version:1.1.1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
| 'version': 'version:1.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
| 'version': 'version:1.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
| 'version': 'version:1.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator', |
| 'version': 'version:2.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_transition_transition': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_transition_transition', |
| 'version': 'version:1.2.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_tvprovider_tvprovider': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_tvprovider_tvprovider', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable', |
| 'version': 'version:1.1.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_viewpager2_viewpager2': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_viewpager2_viewpager2', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/androidx_viewpager_viewpager': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_viewpager_viewpager', |
| 'version': 'version:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent', |
| 'version': 'version:3.1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/classworlds_classworlds': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/classworlds_classworlds', |
| 'version': 'version:1.1-alpha-2-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| '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:1.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
| 'version': 'version:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| '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:28.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core', |
| 'version': 'version:1.0.0-beta08-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor', |
| 'version': 'version:1.0.0-beta08-cr0', |
| }, |
| ], |
| '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:1.0.5-cr0', |
| }, |
| ], |
| '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.7.0-cr0', |
| }, |
| ], |
| '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:1.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.1.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:18.1.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:17.0.0-cr0', |
| }, |
| ], |
| '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:18.0.0-cr0', |
| }, |
| ], |
| '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:18.0.0-cr0', |
| }, |
| ], |
| '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:1.2.0-alpha06-cr0', |
| }, |
| ], |
| '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:0.10-cr0', |
| },
|