| # 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_native_support', |
| 'checkout_ios_webkit', |
| 'checkout_nacl', |
| 'checkout_oculus_sdk', |
| 'checkout_openxr', |
| 'checkout_aemu' |
| ] |
| |
| |
| 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 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, |
| |
| # 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, |
| |
| # 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, 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, |
| |
| # By Default, do not checkout AEMU, as it is too big. This can be overridden |
| # e.g. with custom_vars. |
| # TODO(chonggu): Delete once AEMU package is small enough. |
| 'checkout_aemu': 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_board': '', |
| # Building for CrOS is only supported on linux currently. |
| 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_board}" != "")', |
| # Surround the board var in quotes so gclient doesn't try parsing the string |
| # as an expression. |
| 'cros_download_vm': '(("{cros_board}" == "amd64-generic") or ("{cros_board}" == "betty")) or ("{cros_board}" == "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:7d11fd9e66407c49cb6c8546a2ae45ea993a240c', |
| |
| # 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, |
| |
| '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 sfntly |
| # and whatever else without interference from each other. |
| 'sfntly_revision': '48312c98332a4608572459dc71584c2a9dbb1792', |
| # 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': 'c694627157f24bef1959096f53c6a5f3ac98b5a2', |
| # 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': 'adfb6ba32d881a5bba73f9c7121ca9f8dba881b4', |
| # 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': '885b3febcc170a60f25795304e60927b77d1e92d', |
| # 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': 'fc2dd45054bf8478522e43f7d86f5e328833fdf9', |
| # 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': '8ffeadb66ea7f6dc69310642a78b0c5c85ca57f6', |
| # 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': '98b58ad3de71528f7225fd8a8c29e24d6b0e8269', |
| # 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': '6ba98ff60144f60aba589b4d6121689528fbae76', |
| # 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': '5395345ca4f0c596110188688ed990e0de5a181c', |
| # 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': '726d71ec08d15493b94eff456bc31faecf0a5902', |
| # 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': '3651f6c52037c96e034cc422746768d59182bff3', |
| # 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': '551bd3a90e352fa3a66ee7644c07440939c03d81', |
| # 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': '64a45be5198f6e22c91454bda7bd9a9294552dff', |
| # 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': 'd006a8572a47849740ea680749bab3a1722b7384', |
| # 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': '4b6a267402341bd36948fc0adad68840df61b3ca', |
| # 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': 'Jxtur3_L9RzY4q79K-AwIahwFW4oi5uYVD5URx9h62wC', |
| # 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 android_sdk_tools_version |
| # and whatever else without interference from each other. |
| 'android_sdk_tools_version': 'wYcRQC2WHsw2dKWs4EA7fw9Qsyzu1ds1_fRjKmGxe5QC', |
| # Three lines of non-changing comments so that |
| # the commit queue can handle CLs rolling android_sdk_tools-lint_version |
| # and whatever else without interference from each other. |
| 'android_sdk_tools-lint_version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC', |
| # 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': '3ed4586044f2939384bc2fa696db613ffc1b14b8', |
| # 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': 'af64a9e826bf5bb5fcd2434dd71be1e41e922563', |
| # 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': 'd253f41e17e27285756d031d8ba43bf370264e1f', |
| # 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': 'efedd6739684bb2d4183b45af111b4942b465e5b', |
| # 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': '969df2b3a21c126b2e0015ce2392c135f32a6a08', |
| # 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': 'f54082a0145f7e06a30d451ae84a66bb32718a6d', |
| # 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': '63abbcdb3b743049bb3ee9e962a3280a3dad4191', |
| # 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': '7ec252876541ec203659949450fafddc148b606e', |
| |
| # 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:ad9e442d92dcd9ee73a557428cfc336b55cbd533', |
| |
| # 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': '78d6a7767ed57b50122a161b91f59f19c9bd0d19', |
| 'libcxxabi_revision': '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
| 'libunwind_revision': '69d9b84cca8354117b9fe9705a4430d789ee599b', |
| } |
| |
| # 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') + '/chromium/llvm-project/libcxx.git' + '@' + |
| Var('libcxx_revision'), |
| 'src/buildtools/third_party/libc++abi/trunk': |
| Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + |
| Var('libcxxabi_revision'), |
| 'src/buildtools/third_party/libunwind/trunk': |
| Var('chromium_git') + '/external/llvm.org/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' + '@' + '29324b698ccd8920bc81c71d42dadc6310f0ad0f', |
| |
| 'src/android_webview/tools/cts_archive': { |
| 'packages': [ |
| { |
| 'package': 'chromium/android_webview/tools/cts_archive', |
| 'version': '4kDr36wBuZtvbfaEin4U4oeFD7oAuN0flkWDImKBts4C', |
| }, |
| ], |
| '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/chromedriver/cipd': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/chromedriver/cipd', |
| 'version': 'PCCG9OmVmpDaf9oaKhJ3sSxXgINilZ9qpl4oaRU0R60C', |
| } |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/chrome/test/data/autofill/captured_sites': { |
| 'packages': [ |
| { |
| 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
| 'version': 'rawtdUZtNp6EQjsm2CopH_UeLQnDqgz3ZRmuROF_JYoC', |
| } |
| ], |
| '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' + '@' + '57586e7213892461228ca5543fd37f89ca0e7591', |
| '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' + '@' + '4695792710cf8c9e5b0627f7240c831482c3db37', |
| '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' + '@' + '8e30188777b016182658fbaa0a4a020a48183224', |
| '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' + '@' + 'bc63eabbbd1e14cee0779b05827e08db2e413553', |
| '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' + '@' + 'bc262e26cd2dca812f05bdad3b37398839e63007', |
| |
| '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_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': 'by7YdhjwRQYtrv0Q_q_fPsqptrm5ib-SXmiNfgJYp50C', |
| }, |
| ], |
| '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': 'VVve-571EEzx-giwEOU0vCrIe9D9a_TjP6ka1GgeVSUC', |
| }, |
| ], |
| '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' + '@' + '8d0dd1606d54f678b94328a855a21baa9b99f682', |
| '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/tools', |
| 'version': Var('android_sdk_tools_version'), |
| }, |
| { |
| 'package': 'chromium/third_party/android_sdk/public/tools-lint', |
| 'version': Var('android_sdk_tools-lint_version'), |
| }, |
| ], |
| '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' + '@' + '39667c751d427e447cbe8be783cfecd296659e24', |
| |
| '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/apk-patch-size-estimator': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/apk-patch-size-estimator', |
| 'version': 'b603e99dca9b90d6a99519c232cd811878283b08', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/bazel': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/bazel', |
| 'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/bison': { |
| 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 'condition': 'checkout_win', |
| }, |
| |
| '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' + '@' + '47cd498384fdf7e54b0c8a6678c8af6a71635d0f', |
| |
| '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/cct_dynamic_module/src': { |
| 'url': Var('chromium_git') + '/dynamicmodule' + '@' + '441bbbf3ab849b8816bb2c827a51df9a81b83a4f', |
| 'condition': 'checkout_android', |
| }, |
| |
| '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' + '@' + 'fd5a91ebf34d012208a0cdf1b1a9f48fdf71b2b7', |
| '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' + '@' + 'ac7755fac45996d26deded19b7eb268a3de88b33', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/custom_tabs_client/src': { |
| 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a633542d9854151eb4f0bfd1d93da88f5934a11a', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/depot_tools': |
| Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'be3109961d3d5d541623b35afd7b15f167fa16ea', |
| |
| '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': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/ffmpeg': |
| Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'fa04e15e1ad61052e85f42413d4b841d2a496ec0', |
| |
| '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' + '@' + 'cd51cb241aad7b362b793200ca7d42595c14f52b', |
| 'condition': 'checkout_linux', |
| }, |
| |
| # TODO(steveroe): Get this from GCS instead of CIPD once the arm64 sdk is |
| # released using the same version specified in build/fuchsia/linux.sdk.sha1. |
| 'src/third_party/fuchsia-sdk-arm64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/sdk/core/linux-arm64', |
| 'version': 'xbqDSJKkLORclZW8h9et17dVsOjaxurf7RElMu0fGvUC' |
| }, |
| ], |
| 'condition': 'host_os == "linux" and (checkout_fuchsia and checkout_fuchsia_for_arm64_host)', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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'), |
| |
| # Chrome OS touchpad gestures library. |
| 'src/third_party/gestures/gestures': { |
| 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
| 'condition': 'checkout_linux', |
| }, |
| |
| 'src/third_party/glslang/src': |
| Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + 'a4af7676feb011d61b1dfa8915bd41d9c5aaf22a', |
| |
| '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/gson': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/gson', |
| 'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/guava': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/guava', |
| 'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46', |
| }, |
| ], |
| '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' + '@' + '681ca92480ecc11d35feae8c1c00e4e035630f43', |
| |
| 'src/third_party/icu': |
| Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'dbd3825b31041d782c5b504c59dcfb5ac7dda08c', |
| |
| 'src/third_party/icu4j': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/icu4j', |
| 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/intellij': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/intellij', |
| 'version': '77c2721b024b36ee073402c08e6d8428c0295336', |
| }, |
| ], |
| '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/jsr-305/src': { |
| 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 'condition': 'checkout_android', |
| }, |
| |
| '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' + '@' + '2c9c80bd539ca5aad5ea864ee6dd81c1ee3eb91e', |
| |
| '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' + '@' + '56c60affb5de83c10ebf5f11d9adcdd70648ab71', |
| |
| 'src/third_party/libaom/source/libaom': |
| Var('aomedia_git') + '/aom.git' + '@' + '625cded0550bb79efd10d98a9809a7ccd72a8f60', |
| |
| # Userspace interface to kernel DRM services. |
| 'src/third_party/libdrm/src': { |
| 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0061b1f244574e615c415479725046ab2951f09a', |
| 'condition': 'checkout_linux', |
| }, |
| |
| # The libevdev library (Chrome OS version). |
| 'src/third_party/libevdev/src': { |
| 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| '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' + '@' + 'bc13578529255ec75005ffc98aae151666122892', |
| |
| 'src/third_party/liblouis/src': { |
| 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '67ab8e96cc2f4db70f220f71cbdee0903e8abac6', |
| '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' + '@' + '42c8c62f292a4f43f2dfa17626cc857a1eea29ef', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/libvpx/source/libvpx': |
| Var('chromium_git') + '/webm/libvpx.git' + '@' + 'd2a5e26359bec7fd4137e9cd005ff39375afb41c', |
| |
| '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' + '@' + '3d856025f8f057d29361e753ef712993d218d6e9', |
| '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' + '@' + |
| '21eb595319746a669a742d210eaa413c728e7fad' |
| }, |
| |
| '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' + '@' + '6f26bce0b1c4e8ce0e13332f7c0083788def5fdf', |
| |
| 'src/third_party/openscreen/src': |
| Var('chromium_git') + '/openscreen' + '@' + '1ab48f99911ce805b1e7d12a7ae86f059e26231b', |
| |
| 'src/third_party/openxr/src': { |
| 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '46d7cb392019e934e2944bdd317be8ed5176b3f2', |
| 'condition': 'checkout_openxr', |
| }, |
| |
| 'src/third_party/ow2_asm': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/ow2_asm', |
| 'version': 'GcO_KsVh2dc5GF8PLNKrpDksY_yqfiuZ6wprQw7s1EgC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| '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' + '@' + 'a097c941d4f8cb3af5b3979b5494549b7fdb5309', |
| |
| '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': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca', |
| }, |
| ], |
| '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' + '@' + '35d364f77a02b283d82dd2f874da61f765c259f4', |
| |
| 'src/third_party/pywebsocket/src': |
| Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| |
| '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': 'IzRqaHDMNtw9FjGgpntL65P_3dvQRLIuzxBkSUpoG1UC' |
| }, |
| ], |
| 'condition': 'host_os == "linux" and checkout_aemu', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/aemu-mac-x64': { |
| 'packages': [ |
| { |
| 'package': 'fuchsia/third_party/aemu/mac-amd64', |
| 'version': 'T9bWxf8aUC5TwCFgPxpuW29Mfy-7Z9xCfXB9QO8MfU0C' |
| }, |
| ], |
| 'condition': 'host_os == "mac" and checkout_aemu', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/re2/src': |
| Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'bb8e777557ddbdeabdedea4f23613c5021ffd7b1', |
| |
| 'src/third_party/r8': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/r8', |
| 'version': '-oXGY8FjY2ZuIBHoGAByn8N6Vn2b0wB2QO8Ct_169XoC', |
| }, |
| ], |
| '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': '1KXoOiNP1a_uZNdM2ybWKwAQNow1dHTXTig-ZK4Xgq8C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/robolectric/robolectric': { |
| 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '3d6dcabf5521e028c8efc2778ab6bd8c7b6d923c', |
| 'condition': 'checkout_android', |
| }, |
| |
| 'src/third_party/androidx': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/androidx', |
| 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/sfntly/src': |
| Var('chromium_git') + '/external/github.com/googlefonts/sfntly.git' + '@' + Var('sfntly_revision'), |
| |
| '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' + '@' + '156cd8939c5fba7fa68ae08db843377ecc07b4b5', |
| |
| 'src/third_party/sqlite4java': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/sqlite4java', |
| 'version': '889660698187baa7c8b0d79f7bf58563125fbd66', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/swiftshader': |
| Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| |
| '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' + '@' + '7a8bc9a90ca96634aa56ee712856d97f27d903f8', |
| |
| # 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' + '@' + '630fb089103a1d0eab1a684b853ab5c4d2b252aa', |
| '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' + '@' + 'dd55f3ca8f2ea716ca917a4aaf36f0729fe902b1', |
| |
| 'src/third_party/webrtc': |
| Var('webrtc_git') + '/src.git' + '@' + '89313451d8e2338845716b0ab8760ed0552580f9', |
| |
| # 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/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/third_party/yasm/source/patched-yasm': |
| Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
| |
| '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:343c20ec0539c9d390d11dc566eab245561234f9', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_linux', |
| }, |
| 'src/tools/skia_goldctl/win': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/windows-amd64', |
| 'version': 'git_revision:343c20ec0539c9d390d11dc566eab245561234f9', |
| }, |
| ], |
| 'dep_type': 'cipd', |
| 'condition': 'checkout_win', |
| }, |
| 'src/tools/skia_goldctl/mac': { |
| 'packages': [ |
| { |
| 'package': 'skia/tools/goldctl/mac-amd64', |
| 'version': 'git_revision:343c20ec0539c9d390d11dc566eab245561234f9', |
| }, |
| ], |
| '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@84e94841f5eafbb32f81c829909f431d8453e30a', |
| 'condition': 'checkout_src_internal', |
| }, |
| |
| 'src/third_party/google_android_play_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
| 'version': '5WpfZCqhiL1qWTiBl_x3VTelXCJsv5r_SMuE-3H1CI0C', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| # === ANDROID_DEPS Generated Code Start === |
| # Generated by //tools/android/roll/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_annotation_annotation': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
| '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.0.0-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.0.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.0.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.0.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.0.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.0.0-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.0.0-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.0.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.0.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.0.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.0.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.0.0-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.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.0.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.0.0-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.1.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.1.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.1.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.0.0-rc02-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.0.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.0.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.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/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_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_github_stephenc_jcip_jcip_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_github_stephenc_jcip_jcip_annotations', |
| 'version': 'version:1.0-1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:16.0.1-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:16.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:16.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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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:15.0.1-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.0.0-rc02-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', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_service_auto_service': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service', |
| 'version': 'version:1.0-rc6-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations', |
| 'version': 'version:1.0-rc6-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_code_findbugs_jFormatString': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jformatstring', |
| 'version': 'version:3.0.0-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 'version': 'version:3.0.2-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 'version': 'version:2.17-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 'version': 'version:2.17-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 'version': 'version:2.17-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 'version': 'version:2.17-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation', |
| 'version': 'version:2.3.3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
| 'version': 'version:2.3.3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api', |
| 'version': 'version:2.3.3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_core': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_core', |
| 'version': 'version:2.3.3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations', |
| 'version': 'version:2.3.3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_javac': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac', |
| 'version': 'version:9+181-r4173-1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 'version': 'version:9-dev-r4023-3-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 'version': 'version:1.5-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
| |
| 'src/third_party/android_deps/libs/com_google_guava_failureaccess': { |
| 'packages': [ |
| { |
| 'package': 'chromium/third_party/android_deps/libs/com_google_guava_failureaccess', |
| 'version': 'version:1.0.1-cr0', |
| }, |
| ], |
| 'condition': 'checkout_android', |
| 'dep_type': 'cipd', |
| }, |
|