andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 1 | # This file is used to manage the dependencies of the Chromium src repo. It is |
| 2 | # used by gclient to determine what version of each dependency to check out, and |
| 3 | # where. |
[email protected] | 3645abc | 2013-10-28 22:41:28 | [diff] [blame] | 4 | # |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 5 | # For more information, please refer to the official documentation: |
| 6 | # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
[email protected] | 3645abc | 2013-10-28 22:41:28 | [diff] [blame] | 7 | # |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 8 | # When adding a new dependency, please update the top-level .gitignore file |
| 9 | # to list the dependency's destination directory. |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 10 | # |
| 11 | # ----------------------------------------------------------------------------- |
| 12 | # Rolling deps |
| 13 | # ----------------------------------------------------------------------------- |
| 14 | # All repositories in this file are git-based, using Chromium git mirrors where |
| 15 | # necessary (e.g., a git mirror is used when the source project is SVN-based). |
| 16 | # To update the revision that Chromium pulls for a given dependency: |
| 17 | # |
| 18 | # # Create and switch to a new branch |
| 19 | # git new-branch depsroll |
andrewhayden | 1859920b | 2015-08-11 13:13:24 | [diff] [blame] | 20 | # # Run roll-dep (provided by depot_tools) giving the dep's path and optionally |
| 21 | # # a regex that will match the line in this file that contains the current |
| 22 | # # revision. The script ALWAYS rolls the dependency to the latest revision |
| 23 | # # in origin/master. The path for the dep should start with src/. |
| 24 | # roll-dep src/third_party/foo_package/src foo_package.git |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 25 | # # You should now have a modified DEPS file; commit and upload as normal |
chromium-autoroll | c7f8f91 | 2019-09-18 16:58:18 | [diff] [blame] | 26 | # git commit -aspv_he |
andrewhayden | 889350dd | 2014-10-06 09:16:40 | [diff] [blame] | 27 | # git cl upload |
| 28 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 29 | gclient_gn_args_file = 'src/build/config/gclient_args.gni' |
| 30 | gclient_gn_args = [ |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 31 | 'build_with_chromium', |
John Budorick | 24bdb02 | 2018-04-23 14:15:28 | [diff] [blame] | 32 | 'checkout_android', |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 33 | 'checkout_android_prebuilts_build_tools', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 34 | 'checkout_android_native_support', |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 35 | 'checkout_google_benchmark', |
Rohit Rao | 2b70cbc0 | 2019-02-21 16:31:27 | [diff] [blame] | 36 | 'checkout_ios_webkit', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 37 | 'checkout_nacl', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 38 | 'checkout_oculus_sdk', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 39 | 'checkout_openxr', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 40 | ] |
| 41 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 42 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 43 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 44 | # Variable that can be used to support multiple build scenarios, like having |
| 45 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 46 | # conditionally etc. |
| 47 | 'build_with_chromium': True, |
| 48 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 49 | # By default, we should check out everything needed to run on the main |
| 50 | # chromium waterfalls. This var can be also be set to "small", in order |
| 51 | # to skip things are not strictly needed to build chromium for development |
Nico Weber | 0602f69 | 2019-07-25 21:39:16 | [diff] [blame] | 52 | # purposes, by adding the following line to src.git's .gclient entry: |
| 53 | # "custom_vars": { "checkout_configuration": "small" }, |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 54 | 'checkout_configuration': 'default', |
| 55 | |
Michael Moss | c09fc5c | 2019-01-18 08:00:03 | [diff] [blame] | 56 | # By default, don't check out android. Will be overridden by gclient |
| 57 | # variables. |
| 58 | # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 59 | 'checkout_android': False, |
| 60 | |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 61 | # Pull in Android prebuilts build tools so we can create Java xrefs |
| 62 | 'checkout_android_prebuilts_build_tools': False, |
| 63 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 64 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 65 | # build ARC++ support libraries. |
| 66 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 67 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 68 | # By default, do not check out Chromium autofill captured sites test |
| 69 | # dependencies. These dependencies include very large numbers of very |
| 70 | # large web capture files. Captured sites test dependencies are also |
| 71 | # restricted to Googlers only. |
| 72 | 'checkout_chromium_autofill_test_dependencies': False, |
| 73 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 74 | # By default, do not check out Chromium password manager captured sites test |
| 75 | # dependencies. These dependencies include very large numbers of very |
| 76 | # large web capture files. Captured sites test dependencies are also |
| 77 | # restricted to Googlers only. |
| 78 | 'checkout_chromium_password_manager_test_dependencies': False, |
| 79 | |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 80 | # By default, do not check out Google Benchmark. The library is only used by a |
| 81 | # few specialized benchmarks that most developers do not interact with. Will |
| 82 | # be overridden by gclient variables. |
| 83 | 'checkout_google_benchmark': False, |
| 84 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 85 | # Check out and download nacl by default. This can be disabled e.g. with |
| 86 | # custom_vars. |
| 87 | 'checkout_nacl': True, |
| 88 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 89 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 90 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 91 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 92 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 93 | # Fetch the additional packages and files needed to run all of the |
| 94 | # telemetry tests. This is false by default as some stuff is only |
| 95 | # privately accessible. |
| 96 | 'checkout_telemetry_dependencies': False, |
| 97 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 98 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 99 | # process the raw profiles produced by instrumented targets (built with |
| 100 | # the gn arg 'use_clang_coverage'). |
| 101 | 'checkout_clang_coverage_tools': False, |
| 102 | |
George Burgess IV | a55e6bed | 2019-12-11 16:24:08 | [diff] [blame] | 103 | # Fetch clang-tidy into the same bin/ directory as our clang binary. |
| 104 | 'checkout_clang_tidy': False, |
| 105 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 106 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 107 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 108 | |
Patrick To | d8a469a | 2019-08-27 06:34:33 | [diff] [blame] | 109 | # By default checkout the OpenXR loader library only on Windows. The OpenXR |
| 110 | # backend for VR in Chromium is currently only supported for Windows, but |
| 111 | # support for other platforms may be added in the future. |
| 112 | 'checkout_openxr' : 'checkout_win', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 113 | |
Takuto Ikuta | e306cbad | 2018-12-06 16:43:55 | [diff] [blame] | 114 | 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| 115 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 116 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 117 | # By default, do not check out WebKit for iOS, as it is not needed unless |
| 118 | # running against ToT WebKit rather than system WebKit. This can be overridden |
| 119 | # e.g. with custom_vars. |
| 120 | 'checkout_ios_webkit': False, |
| 121 | |
Kevin Marshall | 9c4748c8 | 2019-08-23 18:46:50 | [diff] [blame] | 122 | # Fetches only the SDK boot images which match at least one of the whitelist |
| 123 | # entries in a comma-separated list. |
| 124 | # |
| 125 | # Only the X64 and ARM64 QEMU images are downloaded by default. Developers |
| 126 | # that need to boot on other target architectures or devices can opt to |
| 127 | # download more boot images. Example of images include: |
| 128 | # |
| 129 | # Emulation: |
| 130 | # qemu.x64, qemu.arm64 |
| 131 | # Hardware: |
| 132 | # generic.x64, generic.arm64 |
| 133 | # |
| 134 | # Wildcards are supported (e.g. "qemu.*"). |
| 135 | 'checkout_fuchsia_boot_images': "qemu.x64,qemu.arm64", |
| 136 | |
Stephen Roe | 3c9f585 | 2019-11-13 17:25:43 | [diff] [blame] | 137 | # By default, do not check out files required to run fuchsia tests in |
| 138 | # qemu on linux-arm64 machines. |
| 139 | 'checkout_fuchsia_for_arm64_host': False, |
| 140 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 141 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 142 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 143 | 'cros_board': '', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 144 | # Building for CrOS is only supported on linux currently. |
| 145 | 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_board}" != "")', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 146 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 147 | # as an expression. |
Anushruth | f24b5ed | 2019-09-24 22:00:06 | [diff] [blame] | 148 | 'cros_download_vm': '(("{cros_board}" == "amd64-generic") or ("{cros_board}" == "betty")) or ("{cros_board}" == "betty-pi-arc")', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 149 | # Should we build and test for public (ie: full) CrOS images, or private |
| 150 | # (ie: release) images. |
| 151 | 'use_public_cros_config': 'not checkout_src_internal', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 152 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 153 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 154 | 'angle_root': 'src/third_party/angle', |
| 155 | |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 156 | # luci-go CIPD package version. |
Takuto Ikuta | 66c3065 | 2019-07-12 02:43:33 | [diff] [blame] | 157 | # Make sure the revision is uploaded by infra-packagers builder. |
| 158 | # https://ci.chromium.org/p/infra-internal/g/infra-packagers/console |
Takuto Ikuta | be60803 | 2020-04-02 14:48:46 | [diff] [blame] | 159 | 'luci_go': 'git_revision:dad957de715bbe7e8b0f382488ff7af75cf600a5', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 160 | |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 161 | # This can be overridden, e.g. with custom_vars, to build clang from HEAD |
| 162 | # instead of downloading the prebuilt pinned revision. |
| 163 | 'llvm_force_head_revision': False, |
| 164 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 165 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 166 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 167 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 168 | 'chromium_git': 'https://chromium.googlesource.com', |
| 169 | 'dawn_git': 'https://dawn.googlesource.com', |
| 170 | 'pdfium_git': 'https://pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 171 | 'quiche_git': 'https://quiche.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 172 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 173 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 174 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 175 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 176 | # the commit queue can handle CLs rolling Skia |
| 177 | # and whatever else without interference from each other. |
chromium-autoroll | 0f89d23 | 2020-04-08 12:57:54 | [diff] [blame] | 178 | 'skia_revision': '6a5187a8895807f2412f6a4a1a209a859d4e93fb', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 179 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 180 | # the commit queue can handle CLs rolling V8 |
| 181 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | a68f186 | 2020-04-08 12:49:54 | [diff] [blame] | 182 | 'v8_revision': '3d1d9352dd510535d6a0feff640d8d2147658823', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 183 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 184 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 185 | # and whatever else without interference from each other. |
Takuto Ikuta | 8796f25 | 2020-03-10 11:39:26 | [diff] [blame] | 186 | 'swarming_revision': 'cc958279ffd6853e0a1b227a7e957ca334fe56af', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 187 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 188 | # the commit queue can handle CLs rolling ANGLE |
| 189 | # and whatever else without interference from each other. |
chromium-autoroll | 3b2d40c | 2020-04-08 11:53:18 | [diff] [blame] | 190 | 'angle_revision': '3d1386f3ea3f0ce933e6e3def9a67b39e80f1ce6', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 191 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 192 | # the commit queue can handle CLs rolling SwiftShader |
| 193 | # and whatever else without interference from each other. |
chromium-autoroll | 51721da | 2020-04-08 09:11:35 | [diff] [blame] | 194 | 'swiftshader_revision': '63ed0e445fa525ee01637350ea92fbdaa2226c73', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 195 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 196 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 197 | # and whatever else without interference from each other. |
chromium-autoroll | 3355cca | 2020-04-07 23:01:51 | [diff] [blame] | 198 | 'pdfium_revision': 'afc869eaff5badd31f06eedb5cbd5f269e8db6bb', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 199 | # Three lines of non-changing comments so that |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 200 | # the commit queue can handle CLs rolling BoringSSL |
| 201 | # and whatever else without interference from each other. |
David Benjamin | 0cf6267 | 2019-02-11 20:30:55 | [diff] [blame] | 202 | # |
| 203 | # Note this revision should be updated with |
| 204 | # third_party/boringssl/roll_boringssl.py, not roll-dep. |
David Benjamin | 429fef58 | 2020-03-20 18:01:59 | [diff] [blame] | 205 | 'boringssl_revision': '5298ef99bf2b2d77600b3bb74dd572027bf495be', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 206 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 207 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 208 | # and whatever else without interference from each other. |
Elly Fong-Jones | 86b7e2a | 2019-02-21 17:02:01 | [diff] [blame] | 209 | 'google_toolbox_for_mac_revision': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 210 | # Three lines of non-changing comments so that |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 211 | # the commit queue can handle CLs rolling googletest |
| 212 | # and whatever else without interference from each other. |
Ilia Samsonov | 0de122e | 2020-02-04 18:17:37 | [diff] [blame] | 213 | 'googletest_revision': '10b1902d893ea8cc43c69541d70868f91af3646b', |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 214 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 215 | # the commit queue can handle CLs rolling lighttpd |
| 216 | # and whatever else without interference from each other. |
| 217 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 218 | # Three lines of non-changing comments so that |
| 219 | # the commit queue can handle CLs rolling lss |
| 220 | # and whatever else without interference from each other. |
Michael Forney | 363dd38 | 2020-01-25 00:52:01 | [diff] [blame] | 221 | 'lss_revision': 'f70e2f1641e280e777edfdad7f73a2cfa38139c7', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 222 | # Three lines of non-changing comments so that |
| 223 | # the commit queue can handle CLs rolling NaCl |
| 224 | # and whatever else without interference from each other. |
Derek Schuff | 02e62ae | 2020-04-06 18:33:52 | [diff] [blame] | 225 | 'nacl_revision': 'd304d90ecc17351ce0fdab3e7452052a469c0976', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 226 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 227 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 228 | # and whatever else without interference from each other. |
chromium-autoroll | c085c43f | 2020-04-08 09:42:39 | [diff] [blame] | 229 | 'freetype_revision': '11beee855e29757a07320fd60e85de2e8da4e037', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 230 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 231 | # the commit queue can handle CLs rolling HarfBuzz |
| 232 | # and whatever else without interference from each other. |
Dominik Röttsches | 1a9e916 | 2020-04-07 12:56:25 | [diff] [blame] | 233 | 'harfbuzz_revision': '0d5695983e8bf3184ecd4cb92f737b9dfe5d6d25', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 234 | # Three lines of non-changing comments so that |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 235 | # the commit queue can handle CLs rolling Emoji Segmenter |
| 236 | # and whatever else without interference from each other. |
| 237 | 'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e', |
| 238 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 239 | # the commit queue can handle CLs rolling catapult |
| 240 | # and whatever else without interference from each other. |
chromium-autoroll | cce844d | 2020-04-08 09:19:25 | [diff] [blame] | 241 | 'catapult_revision': '475c8941a1ee84f98e8056d16ddceff37cece233', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 242 | # Three lines of non-changing comments so that |
| 243 | # the commit queue can handle CLs rolling libFuzzer |
| 244 | # and whatever else without interference from each other. |
Max Moroz | 73f754bd | 2019-11-22 21:10:51 | [diff] [blame] | 245 | 'libfuzzer_revision': 'debe7d2d1982e540fbd6bd78604bf001753f9e74', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 246 | # Three lines of non-changing comments so that |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 247 | # the commit queue can handle CLs rolling devtools-frontend |
| 248 | # and whatever else without interference from each other. |
chromium-autoroll | 3a36d93 | 2020-04-08 11:42:50 | [diff] [blame] | 249 | 'devtools_frontend_revision': 'ac1817c5d0362e4ffae45eea28bd86340299140b', |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 250 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 251 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 252 | # and whatever else without interference from each other. |
Jonathan Metzman | 85809f64 | 2019-01-24 22:55:58 | [diff] [blame] | 253 | 'libprotobuf-mutator': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 254 | # Three lines of non-changing comments so that |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 255 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 256 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 257 | 'android_sdk_build-tools_version': 'n-b1Qd7iFb8qzHlr1C_jIeu070UDgO_BwePtH42UqGcC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 258 | # Three lines of non-changing comments so that |
| 259 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 260 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 261 | 'android_sdk_emulator_version': 'f4WdgkPvDdVCE8zBWPzcSIj4N9WFhKp3CSKDWylXuLEC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 262 | # Three lines of non-changing comments so that |
| 263 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 264 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 265 | 'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 266 | # Three lines of non-changing comments so that |
| 267 | # the commit queue can handle CLs rolling android_sdk_patcher_version |
| 268 | # and whatever else without interference from each other. |
| 269 | 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 270 | # Three lines of non-changing comments so that |
| 271 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 272 | # and whatever else without interference from each other. |
Andrew Luo | a58546e | 2019-11-25 22:38:35 | [diff] [blame] | 273 | 'android_sdk_platform-tools_version': 'Jxtur3_L9RzY4q79K-AwIahwFW4oi5uYVD5URx9h62wC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 274 | # Three lines of non-changing comments so that |
| 275 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 276 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 277 | 'android_sdk_platforms_version': 'yb33klKQV9UzzB-lDSsq36vzhTXOUZ2aRONBvPGwvdcC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 278 | # Three lines of non-changing comments so that |
| 279 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 280 | # and whatever else without interference from each other. |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 281 | 'android_sdk_sources_version': '4gxhM8E62bvZpQs7Q3d0DinQaW0RLCIefhXrQBFkNy8C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 282 | # Three lines of non-changing comments so that |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 283 | # the commit queue can handle CLs rolling android_sdk_tools-lint_version |
| 284 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 285 | 'android_sdk_tools-lint_version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC', |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 286 | # Three lines of non-changing comments so that |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 287 | # the commit queue can handle CLs rolling feed |
| 288 | # and whatever else without interference from each other. |
chromium-autoroll | 429f1d32 | 2020-04-08 11:37:53 | [diff] [blame] | 289 | 'spv_tools_revision': '538512e8e8980cc01ab6501cd1cbd402d54f8491', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 290 | # Three lines of non-changing comments so that |
| 291 | # the commit queue can handle CLs rolling feed |
| 292 | # and whatever else without interference from each other. |
chromium-autoroll | 1fbef63c | 2020-03-19 18:27:39 | [diff] [blame] | 293 | 'spv_headers_revision': 'f8bf11a0253a32375c32cad92c841237b96696c0', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 294 | # Three lines of non-changing comments so that |
| 295 | # the commit queue can handle CLs rolling feed |
| 296 | # and whatever else without interference from each other. |
Ryan Harrison | b878c9b | 2020-04-01 19:41:38 | [diff] [blame] | 297 | 'spirv_cross_revision': 'e58e8d5dbe03ea2cc755dbaf43ffefa1b8d77bef', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 298 | # Three lines of non-changing comments so that |
| 299 | # the commit queue can handle CLs rolling feed |
| 300 | # and whatever else without interference from each other. |
chromium-autoroll | d668767 | 2020-04-06 23:10:02 | [diff] [blame] | 301 | 'shaderc_revision': '4e3bbd9c5f1a164add8faca83d28f24c960c752c', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 302 | # Three lines of non-changing comments so that |
| 303 | # the commit queue can handle CLs rolling feed |
| 304 | # and whatever else without interference from each other. |
chromium-autoroll | 315d119 | 2020-04-08 12:27:45 | [diff] [blame] | 305 | 'dawn_revision': '36cd17488a631f7df530141e6faeb8afd2c39c84', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 306 | # Three lines of non-changing comments so that |
| 307 | # the commit queue can handle CLs rolling feed |
| 308 | # and whatever else without interference from each other. |
Victor Vasiliev | 72f668fb | 2020-04-06 16:31:13 | [diff] [blame] | 309 | 'quiche_revision': 'e4524052d19ddbb8298acc4f13704d8f0b159fdc', |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 310 | # Three lines of non-changing comments so that |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 311 | # the commit queue can handle CLs rolling ios_webkit |
| 312 | # and whatever else without interference from each other. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 313 | 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
Ben Wagner | 3743d539 | 2019-09-26 19:20:36 | [diff] [blame] | 314 | # Three lines of non-changing comments so that |
| 315 | # the commit queue can handle CLs rolling libexpat |
| 316 | # and whatever else without interference from each other. |
bungeman | 5046683 | 2019-11-26 15:32:37 | [diff] [blame] | 317 | 'libexpat_revision': '63abbcdb3b743049bb3ee9e962a3280a3dad4191', |
Nigel Tao | b517eb891 | 2019-10-23 03:36:24 | [diff] [blame] | 318 | # Three lines of non-changing comments so that |
| 319 | # the commit queue can handle CLs rolling wuffs |
| 320 | # and whatever else without interference from each other. |
Nigel Tao | 251d5b1 | 2019-11-04 16:34:05 | [diff] [blame] | 321 | 'wuffs_revision': '7ec252876541ec203659949450fafddc148b606e', |
Nigel Tao | 3aa7214 | 2019-12-03 22:05:41 | [diff] [blame] | 322 | # Three lines of non-changing comments so that |
| 323 | # the commit queue can handle CLs rolling libgifcodec |
| 324 | # and whatever else without interference from each other. |
Brian Osman | a95e585 | 2020-02-05 22:22:19 | [diff] [blame] | 325 | 'libgifcodec_revision': 'd06d2a6d42baf6c0c91cacc28df2542a911d05fe', |
Wan-Teh Chang | 75fd532 | 2020-04-08 01:32:18 | [diff] [blame] | 326 | # Three lines of non-changing comments so that |
| 327 | # the commit queue can handle CLs rolling libavif |
| 328 | # and whatever else without interference from each other. |
| 329 | 'libavif_revision': '78e3c9d2fbfa935638145d017dda6950cc559ad3', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 330 | |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 331 | # TODO(crbug.com/941824): The values below need to be kept in sync |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 332 | # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| 333 | # update the other. There is a presubmit check that checks that |
| 334 | # you've done so; if you are adding new tools to //buildtools and |
| 335 | # hence new revisions to this list, make sure you update the |
| 336 | # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| 337 | # revisions. |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 338 | |
| 339 | # GN CIPD package version. |
Brett Wilson | a162bd77 | 2020-03-23 19:29:54 | [diff] [blame] | 340 | 'gn_version': 'git_revision:5ed3c9cc67b090d5e311e4bd2aba072173e82db9', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 341 | |
Nico Weber | 4647fbba | 2019-04-04 07:38:59 | [diff] [blame] | 342 | # Also, if you change these, update buildtools/DEPS too. Also update the |
| 343 | # libc++ svn_revision in //buildtools/deps_revisions.gni. |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 344 | 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 345 | 'libcxx_revision': 'd9040c75cfea5928c804ab7c235fed06a63f743a', |
| 346 | 'libcxxabi_revision': '196ba1aaa8ac285d94f4ea8d9836390a45360533', |
| 347 | 'libunwind_revision': '43bb9f872232f531bac80093ceb4de61c64b9ab7', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 348 | } |
| 349 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 350 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 351 | # If you need to add a new host, contact chrome infrastracture team. |
| 352 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 353 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 354 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 355 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 356 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 357 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 358 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 359 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 360 | 'pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 361 | 'quiche.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 362 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 363 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 364 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 365 | ] |
| 366 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 367 | deps = { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 368 | 'src/buildtools/clang_format/script': |
| 369 | Var('chromium_git') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| 370 | Var('clang_format_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 371 | 'src/buildtools/linux64': { |
| 372 | 'packages': [ |
| 373 | { |
| 374 | 'package': 'gn/gn/linux-amd64', |
| 375 | 'version': Var('gn_version'), |
| 376 | } |
| 377 | ], |
| 378 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 379 | 'condition': 'host_os == "linux"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 380 | }, |
| 381 | 'src/buildtools/mac': { |
| 382 | 'packages': [ |
| 383 | { |
| 384 | 'package': 'gn/gn/mac-amd64', |
| 385 | 'version': Var('gn_version'), |
| 386 | } |
| 387 | ], |
| 388 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 389 | 'condition': 'host_os == "mac"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 390 | }, |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 391 | 'src/buildtools/third_party/libc++/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 392 | Var('chromium_git') + |
| 393 | '/external/github.com/llvm/llvm-project/libcxx.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 394 | Var('libcxx_revision'), |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 395 | 'src/buildtools/third_party/libc++abi/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 396 | Var('chromium_git') + |
| 397 | '/external/github.com/llvm/llvm-project/libcxxabi.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 398 | Var('libcxxabi_revision'), |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 399 | 'src/buildtools/third_party/libunwind/trunk': |
Ben Pastene | 81fa122 | 2020-02-21 04:38:50 | [diff] [blame] | 400 | Var('chromium_git') + |
| 401 | '/external/github.com/llvm/llvm-project/libunwind.git' + '@' + |
Xiaohui Chen | 3fdc674 | 2020-02-29 02:13:26 | [diff] [blame] | 402 | Var('libunwind_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 403 | 'src/buildtools/win': { |
| 404 | 'packages': [ |
| 405 | { |
| 406 | 'package': 'gn/gn/windows-amd64', |
| 407 | 'version': Var('gn_version'), |
| 408 | } |
| 409 | ], |
| 410 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 411 | 'condition': 'host_os == "win"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 412 | }, |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 413 | |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 414 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | eaac8929 | 2020-02-04 21:35:33 | [diff] [blame] | 415 | Var('chromium_git') + '/media_router.git' + '@' + 'd4389c097c61fa8c5aa5eb7c3ba34ee203dd62e3', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 416 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 417 | 'src/android_webview/tools/cts_archive': { |
| 418 | 'packages': [ |
| 419 | { |
| 420 | 'package': 'chromium/android_webview/tools/cts_archive', |
Andrew Luo | 503a5e84 | 2020-02-03 21:06:10 | [diff] [blame] | 421 | 'version': 'Zmi8uHgTaLXGm9f8Fu_0U-Xa6BljyNjsyL0Nq7VouKoC', |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 422 | }, |
| 423 | ], |
| 424 | 'condition': 'checkout_android', |
| 425 | 'dep_type': 'cipd', |
| 426 | }, |
| 427 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 428 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 429 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 430 | 'condition': 'checkout_mac', |
| 431 | }, |
| 432 | |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 433 | 'src/tools/clang/dsymutil': { |
| 434 | 'packages': [ |
| 435 | { |
| 436 | 'package': 'chromium/llvm-build-tools/dsymutil', |
Reid Kleckner | 5145656 | 2019-11-07 20:06:41 | [diff] [blame] | 437 | 'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 438 | } |
| 439 | ], |
Sylvain Defresne | 03f0d10 | 2019-11-22 17:04:16 | [diff] [blame] | 440 | 'condition': 'checkout_mac or checkout_ios', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 441 | 'dep_type': 'cipd', |
| 442 | }, |
| 443 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 444 | 'src/chrome/test/data/autofill/captured_sites': { |
| 445 | 'packages': [ |
| 446 | { |
| 447 | 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
Ian Struiksma | c6f50281 | 2020-03-23 10:02:52 | [diff] [blame] | 448 | 'version': 'xJFOr7KZ-xyv-0JsdsJXfAB8KguCnExUFa-tJ7UJno8C', |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 449 | } |
| 450 | ], |
| 451 | 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 452 | 'dep_type': 'cipd', |
| 453 | }, |
| 454 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 455 | 'src/chrome/test/data/password/captured_sites': { |
| 456 | 'packages': [ |
| 457 | { |
| 458 | 'package': 'chromium/chrome/test/data/password/captured_sites', |
Ian Struiksma | 809938a2 | 2019-10-25 21:16:18 | [diff] [blame] | 459 | 'version': 'MuT6UWjyB52nWFDuu4RCv4o_vMPIZdI4P2m2YsC66fAC', |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 460 | } |
| 461 | ], |
| 462 | 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 463 | 'dep_type': 'cipd', |
| 464 | }, |
| 465 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 466 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 467 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 468 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 469 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 470 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 471 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 472 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 473 | 'packages': [ |
| 474 | { |
| 475 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 476 | 'version': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 477 | }, |
| 478 | ], |
| 479 | 'condition': 'checkout_mac', |
| 480 | 'dep_type': 'cipd', |
| 481 | }, |
| 482 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 483 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 484 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 485 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 486 | 'src/ios/third_party/earl_grey/src': { |
Rohit Rao | 7d94fa9 | 2019-10-30 11:13:44 | [diff] [blame] | 487 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + 'ff524fb646253b0cbc05aa6d0b327b6b3ddd0385', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 488 | 'condition': 'checkout_ios', |
| 489 | }, |
| 490 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 491 | 'src/ios/third_party/earl_grey2/src': { |
Rohit Rao | 3ab0aa5 | 2019-10-31 14:26:01 | [diff] [blame] | 492 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '8fbc948c8479f54b7729b0f290c82ca1b5ee4268', |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 493 | 'condition': 'checkout_ios', |
| 494 | }, |
| 495 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 496 | 'src/ios/third_party/edo/src': { |
Lindsay Pasricha | aa0256c | 2020-01-13 20:00:26 | [diff] [blame] | 497 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '243fc89ae95b24717d41f3786f6a9abeeef87c92', |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 498 | 'condition': 'checkout_ios', |
| 499 | }, |
| 500 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 501 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 502 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 503 | 'condition': 'checkout_ios', |
| 504 | }, |
| 505 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 506 | 'src/ios/third_party/firebase': { |
| 507 | 'packages': [ |
| 508 | { |
| 509 | 'package': 'chromium/third_party/firebase_ios', |
Chris Lu | 7b7dcd3 | 2020-02-07 02:45:45 | [diff] [blame] | 510 | 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 511 | }, |
| 512 | ], |
| 513 | 'condition': 'checkout_ios', |
| 514 | 'dep_type': 'cipd', |
| 515 | }, |
| 516 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 517 | 'src/ios/third_party/fishhook/src': { |
Lindsay Pasricha | 9c18c2b | 2019-10-09 23:05:13 | [diff] [blame] | 518 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + '66315a9c251edfe92f669ae2deeac0d75374c948', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 519 | 'condition': 'checkout_ios', |
| 520 | }, |
| 521 | |
| 522 | 'src/ios/third_party/gcdwebserver/src': { |
| 523 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 524 | 'condition': 'checkout_ios', |
| 525 | }, |
| 526 | |
| 527 | 'src/ios/third_party/material_components_ios/src': { |
Internal Frameworks Autoroller | b149ef6 | 2020-04-08 15:26:33 | [diff] [blame] | 528 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '4454d0be942d588fcea5a390fb78711c07513a6c', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 529 | 'condition': 'checkout_ios', |
| 530 | }, |
| 531 | |
| 532 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
Internal Frameworks Autoroller | 80a81a1 | 2020-01-28 14:44:29 | [diff] [blame] | 533 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '93acc021e3034898716028822cb802a3a816be7e', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 534 | 'condition': 'checkout_ios', |
| 535 | }, |
| 536 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 537 | 'src/ios/third_party/material_internationalization_ios/src': { |
iOS Autoroller | e05fdaf | 2018-12-13 05:28:55 | [diff] [blame] | 538 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + 'd8f32464ac97d5551c8db19de916170ae87cfa90', |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 539 | 'condition': 'checkout_ios', |
| 540 | }, |
| 541 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 542 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
Internal Frameworks Autoroller | 80a81a1 | 2020-01-28 14:44:29 | [diff] [blame] | 543 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 544 | 'condition': 'checkout_ios', |
| 545 | }, |
| 546 | |
| 547 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 548 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + '8af9adaa182044cf2920dfb620b863669e1aeb7c', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 549 | 'condition': 'checkout_ios', |
| 550 | }, |
| 551 | |
| 552 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
iOS Autoroller | efb260a | 2018-12-06 02:20:00 | [diff] [blame] | 553 | 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '499b45d1895b565096302a209c0c728df03b95d4', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 554 | 'condition': 'checkout_ios', |
| 555 | }, |
| 556 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 557 | 'src/ios/third_party/motion_interchange_objc/src': { |
iOS Autoroller | d5b8633f | 2019-03-08 21:07:25 | [diff] [blame] | 558 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 559 | 'condition': 'checkout_ios', |
| 560 | }, |
| 561 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 562 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 0193585 | 2019-03-12 12:33:45 | [diff] [blame] | 563 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 564 | 'condition': 'checkout_ios', |
| 565 | }, |
| 566 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 567 | 'src/ios/third_party/motion_transitioning_objc/src': { |
chromium-autoroll | c52e680 | 2019-06-26 20:47:26 | [diff] [blame] | 568 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '5bb0d577dd78472536480496ace115bc593ed0e1', |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 569 | 'condition': 'checkout_ios', |
| 570 | }, |
| 571 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 572 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 573 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 574 | 'condition': 'checkout_ios', |
| 575 | }, |
| 576 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 577 | 'src/ios/third_party/webkit/src': { |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 578 | 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + |
| 579 | '@' + Var('ios_webkit_revision'), |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 580 | 'condition': 'checkout_ios and checkout_ios_webkit' |
| 581 | }, |
| 582 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 583 | 'src/media/cdm/api': |
Xiaohan Wang | e1491e7 | 2019-06-04 02:07:50 | [diff] [blame] | 584 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'bc262e26cd2dca812f05bdad3b37398839e63007', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 585 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 586 | 'src/native_client': { |
| 587 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 588 | 'condition': 'checkout_nacl', |
| 589 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 590 | |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 591 | 'src/net/third_party/quiche/src': |
| 592 | Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| 593 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 594 | 'src/tools/luci-go': { |
| 595 | 'packages': [ |
| 596 | { |
| 597 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 598 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 599 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 600 | { |
| 601 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 602 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 603 | }, |
| 604 | { |
| 605 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 606 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 607 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 608 | ], |
| 609 | 'dep_type': 'cipd', |
| 610 | }, |
| 611 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 612 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 613 | # third_party/spirv-cross/src because its header files are at the root of |
| 614 | # the repository and dependencies include them like so: |
| 615 | # #include "spirv-cross/spirv_glsl.hpp" |
| 616 | 'src/third_party/spirv-cross/spirv-cross': |
| 617 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 618 | Var('spirv_cross_revision'), |
| 619 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 620 | 'src/third_party/spirv-headers/src': |
| 621 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 622 | Var('spv_headers_revision'), |
| 623 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 624 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 625 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 626 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 627 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 628 | 'src/third_party/shaderc/src': |
| 629 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 630 | Var('shaderc_revision'), |
| 631 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 632 | 'src/third_party/accessibility_test_framework': { |
| 633 | 'packages': [ |
| 634 | { |
| 635 | 'package': 'chromium/third_party/accessibility-test-framework', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 636 | 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 637 | }, |
| 638 | ], |
| 639 | 'condition': 'checkout_android', |
| 640 | 'dep_type': 'cipd', |
| 641 | }, |
| 642 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 643 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 644 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 645 | 'condition': 'checkout_android', |
| 646 | }, |
| 647 | |
Mohamed Heikal | 95797a58 | 2020-03-05 22:45:44 | [diff] [blame] | 648 | 'src/third_party/android_protoc': { |
| 649 | 'packages': [ |
| 650 | { |
| 651 | 'package': 'chromium/third_party/android_protoc', |
| 652 | 'version': 'k9khK3dY-WuKXtL8tfQRcsvo2H1qS6C4-G5ckDZ4yyMC', |
| 653 | }, |
| 654 | ], |
| 655 | 'condition': 'checkout_android', |
| 656 | 'dep_type': 'cipd', |
| 657 | }, |
| 658 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 659 | 'src/third_party/android_ndk': { |
Jamie Madill | 5269c497 | 2019-11-21 02:37:32 | [diff] [blame] | 660 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 661 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 662 | }, |
| 663 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 664 | 'src/third_party/android_support_test_runner': { |
| 665 | 'packages': [ |
| 666 | { |
| 667 | 'package': 'chromium/third_party/android_support_test_runner', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 668 | 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 669 | }, |
| 670 | ], |
| 671 | 'condition': 'checkout_android', |
| 672 | 'dep_type': 'cipd', |
| 673 | }, |
| 674 | |
| 675 | 'src/third_party/android_system_sdk': { |
| 676 | 'packages': [ |
| 677 | { |
| 678 | 'package': 'chromium/third_party/android_system_sdk', |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 679 | 'version': '4IAlMU4jo15KjMPF3EUnrPZs0RYoPW8n9jSJ4dvHDWUC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 680 | }, |
| 681 | ], |
| 682 | 'condition': 'checkout_android', |
| 683 | 'dep_type': 'cipd', |
| 684 | }, |
| 685 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 686 | 'src/third_party/android_build_tools/aapt2': { |
| 687 | 'packages': [ |
| 688 | { |
Mohamed Heikal | 2747b4b | 2018-10-31 22:20:42 | [diff] [blame] | 689 | 'package': 'chromium/third_party/android_build_tools/aapt2', |
Andrew Grieve | 9a71219 | 2020-01-21 22:45:24 | [diff] [blame] | 690 | 'version': 'LKH_DI44rZhQ4RkScMFQLGSJ4jZyuPcff0llITnq-i4C', |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 691 | }, |
| 692 | ], |
| 693 | 'condition': 'checkout_android', |
| 694 | 'dep_type': 'cipd', |
| 695 | }, |
| 696 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 697 | 'src/third_party/android_build_tools/art': { |
| 698 | 'packages': [ |
| 699 | { |
| 700 | 'package': 'chromium/third_party/android_build_tools/art', |
| 701 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 702 | }, |
| 703 | ], |
| 704 | 'condition': 'checkout_android', |
| 705 | 'dep_type': 'cipd', |
| 706 | }, |
| 707 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 708 | 'src/third_party/android_build_tools/bundletool': { |
| 709 | 'packages': [ |
| 710 | { |
Peter Wen | ab7bffd | 2020-01-24 02:13:26 | [diff] [blame] | 711 | 'package': 'chromium/third_party/android_tools_bundletool', |
Andrew Grieve | e9ef45e | 2020-03-11 21:16:42 | [diff] [blame] | 712 | 'version': 'Yyhy8FicC3R0ATRzWqGNh4ffsCLz_0nu_BjmNPAdhvIC', |
Peter Wen | ab7bffd | 2020-01-24 02:13:26 | [diff] [blame] | 713 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 714 | ], |
| 715 | 'condition': 'checkout_android', |
| 716 | 'dep_type': 'cipd', |
| 717 | }, |
| 718 | |
Peter Conn | 6eb0e1d | 2019-08-08 07:39:05 | [diff] [blame] | 719 | 'src/third_party/android_sdk/androidx_browser/src': { |
Peter E Conn | 3497620 | 2019-12-02 12:33:33 | [diff] [blame] | 720 | 'url': Var('chromium_git') + '/external/gob/android/platform/frameworks/support/browser.git' + '@' + '8d0dd1606d54f678b94328a855a21baa9b99f682', |
Peter Conn | 6eb0e1d | 2019-08-08 07:39:05 | [diff] [blame] | 721 | 'condition': 'checkout_android', |
| 722 | }, |
| 723 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 724 | 'src/third_party/android_sdk/public': { |
| 725 | 'packages': [ |
| 726 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 727 | 'package': 'chromium/third_party/android_sdk/public/build-tools/29.0.2', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 728 | 'version': Var('android_sdk_build-tools_version'), |
| 729 | }, |
| 730 | { |
| 731 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 732 | 'version': Var('android_sdk_emulator_version'), |
| 733 | }, |
| 734 | { |
| 735 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 736 | 'version': Var('android_sdk_extras_version'), |
| 737 | }, |
| 738 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 739 | 'package': 'chromium/third_party/android_sdk/public/patcher', |
| 740 | 'version': Var('android_sdk_patcher_version'), |
| 741 | }, |
| 742 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 743 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 744 | 'version': Var('android_sdk_platform-tools_version'), |
| 745 | }, |
| 746 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 747 | 'package': 'chromium/third_party/android_sdk/public/platforms/android-29', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 748 | 'version': Var('android_sdk_platforms_version'), |
| 749 | }, |
| 750 | { |
Haiyang Pan | c248186 | 2019-11-12 21:05:30 | [diff] [blame] | 751 | 'package': 'chromium/third_party/android_sdk/public/sources/android-29', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 752 | 'version': Var('android_sdk_sources_version'), |
| 753 | }, |
| 754 | { |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 755 | 'package': 'chromium/third_party/android_sdk/public/tools-lint', |
| 756 | 'version': Var('android_sdk_tools-lint_version'), |
| 757 | }, |
Andrew Grieve | 13128c9 | 2020-01-06 22:10:27 | [diff] [blame] | 758 | { |
| 759 | 'package': 'chromium/third_party/android_sdk/public/cmdline-tools', |
| 760 | 'version': 'CR25ixsRhwuRnhdgDpGFyl9S0C_0HO9SUgFrwX46zq8C', |
| 761 | }, |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 762 | ], |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 763 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 764 | 'dep_type': 'cipd', |
| 765 | }, |
| 766 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 767 | 'src/third_party/angle': |
| 768 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 769 | |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 770 | 'src/third_party/dav1d/libdav1d': |
Dale Curtis | 3ffc879 | 2020-04-04 00:50:56 | [diff] [blame] | 771 | Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + 'ad392d71ebed07fbcecb49e4544f1dfdc6ae85f8', |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 772 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 773 | 'src/third_party/dawn': |
| 774 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 775 | |
| 776 | 'src/third_party/glfw/src': |
Corentin Wallez | 3a71757 | 2018-11-19 12:37:30 | [diff] [blame] | 777 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 778 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 779 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 780 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 781 | 'condition': 'checkout_android', |
| 782 | }, |
| 783 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 784 | 'src/third_party/bazel': { |
| 785 | 'packages': [ |
| 786 | { |
| 787 | 'package': 'chromium/third_party/bazel', |
Andrew Grieve | 8a3a5c77 | 2019-11-12 22:27:04 | [diff] [blame] | 788 | 'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 789 | }, |
| 790 | ], |
| 791 | 'condition': 'checkout_android', |
| 792 | 'dep_type': 'cipd', |
| 793 | }, |
| 794 | |
Victor Costan | c63c9212 | 2020-01-03 05:49:53 | [diff] [blame] | 795 | 'src/third_party/google_benchmark/src': { |
| 796 | 'url': Var('chromium_git') + '/external/github.com/google/benchmark.git' + '@' + '367119482ff4abc3d73e4a109b410090fc281337', |
| 797 | 'condition': 'checkout_google_benchmark', |
| 798 | }, |
| 799 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 800 | 'src/third_party/boringssl/src': |
| 801 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 802 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 803 | 'src/third_party/bouncycastle': { |
| 804 | 'packages': [ |
| 805 | { |
| 806 | 'package': 'chromium/third_party/bouncycastle', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 807 | 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 808 | }, |
| 809 | ], |
| 810 | 'condition': 'checkout_android', |
| 811 | 'dep_type': 'cipd', |
| 812 | }, |
| 813 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 814 | 'src/third_party/breakpad/breakpad': |
Nelson Billing | f599569f | 2019-12-23 19:48:25 | [diff] [blame] | 815 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'f32b83eb08e9ee158d3037b2114357187fd45a05', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 816 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 817 | 'src/third_party/byte_buddy': { |
| 818 | 'packages': [ |
| 819 | { |
| 820 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 821 | 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 822 | }, |
| 823 | ], |
| 824 | 'condition': 'checkout_android', |
| 825 | 'dep_type': 'cipd', |
| 826 | }, |
| 827 | |
Andrew Luo | 948028e | 2019-08-16 21:18:21 | [diff] [blame] | 828 | 'src/third_party/byte_buddy/android_sdk_build_tools_25_0_2': { |
| 829 | 'packages': [ |
| 830 | { |
| 831 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 832 | 'version': 'kwIs2vdfTm93yEP8LG5aSnchN4BVEdVxbqQtF4XpPdkC', |
| 833 | }, |
| 834 | ], |
| 835 | 'condition': 'checkout_android', |
| 836 | 'dep_type': 'cipd', |
| 837 | }, |
| 838 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 839 | 'src/third_party/catapult': |
| 840 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 841 | |
| 842 | 'src/third_party/ced/src': |
Jinsuk Kim | 69fae80a | 2019-02-22 01:26:38 | [diff] [blame] | 843 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 844 | |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 845 | 'src/third_party/checkstyle': { |
| 846 | 'packages': [ |
| 847 | { |
| 848 | 'package': 'chromium/third_party/checkstyle', |
Eric Stevenson | dabee8e | 2019-09-12 22:28:45 | [diff] [blame] | 849 | 'version': 'UAf8iarsiPx9B6ClHuyeRNM6py76TUVdylyGLTmpb4IC', |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 850 | }, |
| 851 | ], |
Andrew Grieve | ee25848 | 2019-11-19 16:24:54 | [diff] [blame] | 852 | # Needed on Linux for use on chromium_presubmit. |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 853 | 'condition': 'checkout_android or checkout_linux', |
| 854 | 'dep_type': 'cipd', |
| 855 | }, |
| 856 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 857 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 858 | 'src/third_party/chromite': { |
chromium-autoroll | ad6bf72 | 2020-04-08 17:11:49 | [diff] [blame] | 859 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'eb17dbb23599aadf015f4b5cee7d592a0910e6eb', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 860 | 'condition': 'checkout_linux', |
| 861 | }, |
| 862 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 863 | 'src/third_party/cld_3/src': |
Akihiro Ota | 1fb5ba9 | 2019-04-25 02:23:20 | [diff] [blame] | 864 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '06f695f1c8ee530104416aab5dcf2d6a1414a56a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 865 | |
| 866 | 'src/third_party/colorama/src': |
| 867 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 868 | |
| 869 | 'src/third_party/crc32c/src': |
Staphany Park | 5a0eb9a | 2019-03-02 01:39:31 | [diff] [blame] | 870 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 871 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 872 | # For Linux and Chromium OS. |
| 873 | 'src/third_party/cros_system_api': { |
Julian Watson | 4ebe26f | 2020-04-08 03:46:10 | [diff] [blame] | 874 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + '484e71aca63a67f490eed8eb42c6f3c0b92c2cb6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 875 | 'condition': 'checkout_linux', |
| 876 | }, |
| 877 | |
Christos Froussios | 25dfa20 | 2020-04-06 11:19:22 | [diff] [blame] | 878 | 'src/third_party/custom_tabs_client/src': { |
| 879 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a633542d9854151eb4f0bfd1d93da88f5934a11a', |
| 880 | 'condition': 'checkout_android', |
| 881 | }, |
| 882 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 883 | 'src/third_party/depot_tools': |
chromium-autoroll | 56045db | 2020-04-08 00:49:30 | [diff] [blame] | 884 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'c440b23d505b810a49f3ee9ae55693f30b78c30e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 885 | |
Yang Guo | 210ffc9 | 2019-10-21 07:14:37 | [diff] [blame] | 886 | 'src/third_party/devtools-frontend/src': |
| 887 | Var('chromium_git') + '/devtools/devtools-frontend' + '@' + Var('devtools_frontend_revision'), |
| 888 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 889 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 890 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 891 | |
| 892 | 'src/third_party/elfutils/src': { |
| 893 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 894 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 895 | }, |
| 896 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 897 | 'src/third_party/espresso': { |
| 898 | 'packages': [ |
| 899 | { |
| 900 | 'package': 'chromium/third_party/espresso', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 901 | 'version': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 902 | }, |
| 903 | ], |
| 904 | 'condition': 'checkout_android', |
| 905 | 'dep_type': 'cipd', |
| 906 | }, |
| 907 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 908 | 'src/third_party/ffmpeg': |
John Rummell | c55ec209 | 2020-03-20 23:03:53 | [diff] [blame] | 909 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '31886e8f39a47a9d7107d4c937bb053dcf5699ce', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 910 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 911 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 912 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 913 | |
| 914 | 'src/third_party/flatbuffers/src': |
Sky Malice | 9dd6045 | 2019-11-25 19:38:42 | [diff] [blame] | 915 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '136d75fa6580ef87d1b7cbc243e617f21149852e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 916 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 917 | # Used for embedded builds. CrOS & Linux use the system version. |
| 918 | 'src/third_party/fontconfig/src': { |
Tom Anderson | 9cc1fae | 2020-01-15 03:26:09 | [diff] [blame] | 919 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + '452be8125f0e2a18a7dfef469e05d19374d36307', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 920 | 'condition': 'checkout_linux', |
| 921 | }, |
| 922 | |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 923 | 'src/third_party/grpc/src': { |
Yuwei Huang | 58e95e2 | 2019-07-16 21:35:22 | [diff] [blame] | 924 | 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '74b981a6a3d9ba17f3acae1d72b9109325ef656d', |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 925 | }, |
| 926 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 927 | 'src/third_party/freetype/src': |
| 928 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 929 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 930 | 'src/third_party/harfbuzz-ng/src': |
| 931 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 932 | |
Joey Scarr | 28fc3009 | 2019-02-04 10:10:20 | [diff] [blame] | 933 | 'src/third_party/emoji-segmenter/src': |
Lei Zhang | b3ce3d1 | 2019-07-19 01:01:16 | [diff] [blame] | 934 | Var('chromium_git') + '/external/github.com/google/emoji-segmenter.git' + '@' + Var('emoji_segmenter_revision'), |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 935 | |
Hirokazu Honda | fa7af2bb | 2020-02-03 02:48:28 | [diff] [blame] | 936 | 'src/third_party/libgav1/src': |
James Zern | 8b81474 | 2020-04-01 22:38:33 | [diff] [blame] | 937 | Var('chromium_git') + '/codecs/libgav1.git' + '@' + '638ef84819f8b3cd614dcf63378fe4814aa4cb2a', |
Hirokazu Honda | fa7af2bb | 2020-02-03 02:48:28 | [diff] [blame] | 938 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 939 | 'src/third_party/glslang/src': |
chromium-autoroll | 94afe31 | 2020-04-07 13:34:31 | [diff] [blame] | 940 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + '9c3204a1fde09ba7b98b1779047bf8d3491244a5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 941 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 942 | 'src/third_party/google_toolbox_for_mac/src': { |
| 943 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 944 | 'condition': 'checkout_ios or checkout_mac', |
| 945 | }, |
| 946 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 947 | 'src/third_party/google-truth': { |
| 948 | 'packages': [ |
| 949 | { |
| 950 | 'package': 'chromium/third_party/google-truth', |
Gang Wu | d2b9c11 | 2019-06-06 15:24:00 | [diff] [blame] | 951 | 'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC', |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 952 | }, |
| 953 | ], |
| 954 | 'condition': 'checkout_android', |
| 955 | 'dep_type': 'cipd', |
| 956 | }, |
| 957 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 958 | 'src/third_party/googletest/src': |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 959 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 960 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 961 | # GNU binutils assembler for x86-32. |
| 962 | 'src/third_party/gnu_binutils': { |
| 963 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 964 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 965 | }, |
| 966 | |
| 967 | 'src/third_party/gperf': { |
| 968 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 969 | 'condition': 'checkout_win', |
| 970 | }, |
| 971 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 972 | 'src/third_party/guava': { |
| 973 | 'packages': [ |
| 974 | { |
| 975 | 'package': 'chromium/third_party/guava', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 976 | 'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 977 | }, |
| 978 | ], |
| 979 | 'condition': 'checkout_android', |
| 980 | 'dep_type': 'cipd', |
| 981 | }, |
| 982 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 983 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 984 | 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '233e7fe922a543e0bc55382d64cacd047307d0e7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 985 | 'condition': 'checkout_android', |
| 986 | }, |
| 987 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 988 | 'src/third_party/arcore-android-sdk/src': { |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 989 | 'url': Var('chromium_git') + '/external/github.com/google-ar/arcore-android-sdk.git' + '@' + '765ca36d1d03e8d97bcb4d48d407277c3b503f21', |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 990 | 'condition': 'checkout_android', |
| 991 | }, |
| 992 | |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 993 | 'src/third_party/arcore-android-sdk-client': { |
| 994 | 'packages': [ |
| 995 | { |
| 996 | 'package': 'chromium/third_party/arcore-android-sdk-client', |
| 997 | 'version': 'Ki3Nxeov-cyGeHGIxrhG1teX7zYstsUtg1k-SAQ8CpAC', |
| 998 | }, |
| 999 | ], |
| 1000 | |
| 1001 | 'condition': 'checkout_android', |
| 1002 | 'dep_type': 'cipd', |
| 1003 | }, |
| 1004 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1005 | 'src/third_party/hamcrest': { |
| 1006 | 'packages': [ |
| 1007 | { |
| 1008 | 'package': 'chromium/third_party/hamcrest', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1009 | 'version': '37eccfc658fe79695d6abb6dd497463c4372032f', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1010 | }, |
| 1011 | ], |
| 1012 | 'condition': 'checkout_android', |
| 1013 | 'dep_type': 'cipd', |
| 1014 | }, |
| 1015 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1016 | 'src/third_party/hunspell_dictionaries': |
Guillaume Jenkins | 031c5e8 | 2020-04-01 15:51:31 | [diff] [blame] | 1017 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + '6fdad5388130757e1efb58a14b8e7f9494625691', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1018 | |
| 1019 | 'src/third_party/icu': |
Frank Tang | 928bcad | 2020-04-01 23:31:36 | [diff] [blame] | 1020 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '13cfcd5874f6c39c34ec57fa5295e7910ae90b8d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1021 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1022 | 'src/third_party/icu4j': { |
| 1023 | 'packages': [ |
| 1024 | { |
| 1025 | 'package': 'chromium/third_party/icu4j', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1026 | 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1027 | }, |
| 1028 | ], |
| 1029 | 'condition': 'checkout_android', |
| 1030 | 'dep_type': 'cipd', |
| 1031 | }, |
| 1032 | |
Ben Joyce | dde37c2 | 2019-04-12 19:36:19 | [diff] [blame] | 1033 | 'src/third_party/jacoco': { |
| 1034 | 'packages': [ |
| 1035 | { |
| 1036 | 'package': 'chromium/third_party/jacoco', |
| 1037 | 'version': 'O8mNUqIbFxvOcBsSNfbvpdUFvY4nfrPY0QA2kHoO2pQC', |
| 1038 | }, |
| 1039 | ], |
| 1040 | 'condition': 'checkout_android', |
| 1041 | 'dep_type': 'cipd', |
| 1042 | }, |
| 1043 | |
Tibor Goldschwendt | 38cc208 | 2019-06-03 21:59:28 | [diff] [blame] | 1044 | 'src/third_party/javalang/src': { |
| 1045 | 'url': Var('chromium_git') + '/external/github.com/c2nes/javalang.git' + '@' + 'f98ffcb31d1daa57fbe5bd6def8ad7c3126d8242', |
| 1046 | 'condition': 'checkout_android', |
| 1047 | }, |
| 1048 | |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1049 | 'src/third_party/jdk': { |
| 1050 | 'packages': [ |
| 1051 | { |
| 1052 | 'package': 'chromium/third_party/jdk', |
Andrew Grieve | 872d4a4a | 2019-10-28 23:07:11 | [diff] [blame] | 1053 | 'version': 'PfRSnxe8Od6WU4zBXomq-zsgcJgWmm3z4gMQNB-r2QcC', |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1054 | }, |
Peter Wen | ca01c25 | 2019-10-29 01:41:16 | [diff] [blame] | 1055 | { |
| 1056 | 'package': 'chromium/third_party/jdk/extras', |
| 1057 | 'version': 'fkhuOQ3r-zKtWEdKplpo6k0vKkjl-LY_rJTmtzFCQN4C', |
| 1058 | }, |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1059 | ], |
Andrew Grieve | ee25848 | 2019-11-19 16:24:54 | [diff] [blame] | 1060 | # Needed on Linux for use on chromium_presubmit (for checkstyle). |
| 1061 | 'condition': 'checkout_android or checkout_linux', |
Yun Liu | a89d183 | 2019-10-05 01:40:55 | [diff] [blame] | 1062 | 'dep_type': 'cipd', |
| 1063 | }, |
| 1064 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1065 | 'src/third_party/jsoncpp/source': |
Jordan Bayles | d4a7c4e | 2019-07-12 01:09:04 | [diff] [blame] | 1066 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' |
| 1067 | + '@' + '645250b6690785be60ab6780ce4b58698d884d11', # release 1.9.1 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1068 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1069 | 'src/third_party/jsr-305/src': { |
| 1070 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 1071 | 'condition': 'checkout_android', |
| 1072 | }, |
| 1073 | |
| 1074 | 'src/third_party/junit/src': { |
| 1075 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 1076 | 'condition': 'checkout_android', |
| 1077 | }, |
| 1078 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1079 | 'src/third_party/leveldatabase/src': |
Victor Costan | c0c7c5e | 2020-01-18 06:30:25 | [diff] [blame] | 1080 | Var('chromium_git') + '/external/leveldb.git' + '@' + 'a0191e5563b7a6c24b39edcbdbff29e602e0acfc', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1081 | |
| 1082 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 1083 | Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1084 | |
| 1085 | 'src/third_party/libaddressinput/src': |
sebsg | d592caf | 2020-01-23 17:55:15 | [diff] [blame] | 1086 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '390dfc08e3806a2125d08d4d8d034a24d587d77a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1087 | |
Johann | 987d153 | 2018-11-19 22:07:27 | [diff] [blame] | 1088 | 'src/third_party/libaom/source/libaom': |
Jerome Jiang | c8d6fa52 | 2020-03-18 23:50:26 | [diff] [blame] | 1089 | Var('aomedia_git') + '/aom.git' + '@' + 'c25910f6d213ec5ec45ae53caa5e40bd7ebd218f', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 1090 | |
Wan-Teh Chang | 75fd532 | 2020-04-08 01:32:18 | [diff] [blame] | 1091 | 'src/third_party/libavif/src': |
| 1092 | Var('chromium_git') + '/external/github.com/AOMediaCodec/libavif.git' + '@' + Var('libavif_revision'), |
| 1093 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1094 | # Userspace interface to kernel DRM services. |
| 1095 | 'src/third_party/libdrm/src': { |
Gurchetan Singh | db0a74e | 2020-03-11 21:46:20 | [diff] [blame] | 1096 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0190f49a139e7069d7cad6a6890832831da1aa8b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1097 | 'condition': 'checkout_linux', |
| 1098 | }, |
| 1099 | |
Ben Wagner | 3743d539 | 2019-09-26 19:20:36 | [diff] [blame] | 1100 | 'src/third_party/expat/src': |
| 1101 | Var('chromium_git') + '/external/github.com/libexpat/libexpat.git' + '@' + Var('libexpat_revision'), |
| 1102 | |
Piotr Pawliczek | 2ebb8aff | 2019-08-27 17:16:34 | [diff] [blame] | 1103 | # The library for IPP protocol (Chrome OS). |
| 1104 | 'src/third_party/libipp/libipp': { |
| 1105 | 'url': Var('chromium_git') + '/chromiumos/platform2/libipp.git' + '@' + '6c45a4f3a05cb5dd700414fe4d94cf685159d3ce', |
| 1106 | 'condition': 'checkout_linux', |
| 1107 | }, |
| 1108 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1109 | 'src/third_party/libjpeg_turbo': |
Chris Blume | 69dd5dd | 2020-03-30 20:39:36 | [diff] [blame] | 1110 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + '7e3ad79800a7945fb37173149842b494ab8982b2', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1111 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1112 | 'src/third_party/liblouis/src': { |
David Tseng | 26f7fd9 | 2019-12-18 18:07:22 | [diff] [blame] | 1113 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '03d7d72d983d47c17f7de95bbeae89fe33e41943', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1114 | 'condition': 'checkout_linux', |
| 1115 | }, |
| 1116 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1117 | 'src/third_party/libphonenumber/dist': |
Vadym Doroshenko | 88cd7a7 | 2019-09-04 21:08:01 | [diff] [blame] | 1118 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + '68eba9d6ee8b11fb58ece36b6c46d07965d7f7ff', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1119 | |
| 1120 | 'src/third_party/libprotobuf-mutator/src': |
| 1121 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 1122 | |
| 1123 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 1124 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1125 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1126 | # Android Explicit Synchronization. |
| 1127 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 1128 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1129 | 'condition': 'checkout_linux', |
| 1130 | }, |
| 1131 | |
Charlie Andrews | 6723c0e3c | 2019-10-31 15:45:24 | [diff] [blame] | 1132 | 'src/third_party/libunwindstack': { |
Etienne Pierre-doray | 5b6f613 | 2020-02-26 20:37:22 | [diff] [blame] | 1133 | 'url': Var('chromium_git') + '/chromium/src/third_party/libunwindstack.git' + '@' + 'acf93761dc00ac67bd7534c4040699abed4f8d94', |
Charlie Andrews | 6723c0e3c | 2019-10-31 15:45:24 | [diff] [blame] | 1134 | 'condition': 'checkout_android', |
| 1135 | }, |
| 1136 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1137 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | ae7252e | 2020-04-08 01:20:24 | [diff] [blame] | 1138 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '8dc6f353c6d04329cf59529f41a6f46d9dbfcafa', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1139 | |
| 1140 | 'src/third_party/libwebm/source': |
James Zern | 62ef4ae | 2019-02-21 21:17:03 | [diff] [blame] | 1141 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1142 | |
| 1143 | 'src/third_party/libyuv': |
Dale Curtis | e87da1b | 2019-11-13 03:20:25 | [diff] [blame] | 1144 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '6afd9becdf58822b1da6770598d8597c583ccfad', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1145 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 1146 | 'src/third_party/lighttpd': { |
| 1147 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 1148 | 'condition': 'checkout_mac or checkout_win', |
| 1149 | }, |
| 1150 | |
| 1151 | 'src/third_party/lss': { |
| 1152 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 1153 | 'condition': 'checkout_android or checkout_linux', |
| 1154 | }, |
| 1155 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1156 | 'src/third_party/material_design_icons/src': { |
| 1157 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 1158 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 1159 | 'condition': 'checkout_ios', |
| 1160 | }, |
| 1161 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1162 | # GNU binutils assembler for x86-64. |
| 1163 | 'src/third_party/mingw-w64/mingw/bin': { |
| 1164 | 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1165 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1166 | }, |
| 1167 | |
| 1168 | # Graphics buffer allocator for Chrome OS. |
| 1169 | 'src/third_party/minigbm/src': { |
Daniel Nicoara | 1b4f6db | 2020-03-27 18:07:42 | [diff] [blame] | 1170 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'bc4f023bfcc51cf9dcfcfec5bf4177b2e607dd68', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1171 | 'condition': 'checkout_linux', |
| 1172 | }, |
| 1173 | |
| 1174 | # Minizip library. Used on Chrome OS. |
| 1175 | 'src/third_party/minizip/src': { |
Anand K. Mistry | bdd979e4 | 2018-12-17 04:38:59 | [diff] [blame] | 1176 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1177 | 'condition': 'checkout_linux', |
| 1178 | }, |
| 1179 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1180 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 1181 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1182 | 'condition': 'checkout_android', |
| 1183 | }, |
| 1184 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1185 | # Binaries for nacl sdk. |
| 1186 | 'src/third_party/nacl_sdk_binaries': { |
| 1187 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1188 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1189 | }, |
| 1190 | |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1191 | 'src/third_party/nasm': { |
| 1192 | 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
Reid Kleckner | 36df61e4 | 2019-08-08 22:16:45 | [diff] [blame] | 1193 | '21eb595319746a669a742d210eaa413c728e7fad' |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1194 | }, |
| 1195 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1196 | 'src/third_party/netty-tcnative/src': { |
| 1197 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 1198 | 'condition': 'checkout_android', |
| 1199 | }, |
| 1200 | |
| 1201 | 'src/third_party/netty4/src': { |
| 1202 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 1203 | 'condition': 'checkout_android', |
| 1204 | }, |
| 1205 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1206 | 'src/third_party/objenesis': { |
| 1207 | 'packages': [ |
| 1208 | { |
| 1209 | 'package': 'chromium/third_party/objenesis', |
Yun Liu | dd4e566 | 2019-12-03 17:17:41 | [diff] [blame] | 1210 | 'version': 'tknDblENYi8IaJYyD6tUahUyHYZlzJ_Y74_QZSz4DpIC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1211 | }, |
| 1212 | ], |
| 1213 | 'condition': 'checkout_android', |
| 1214 | 'dep_type': 'cipd', |
| 1215 | }, |
| 1216 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1217 | 'src/third_party/openh264/src': |
Tom Anderson | f688af0 | 2018-11-29 23:45:22 | [diff] [blame] | 1218 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '6f26bce0b1c4e8ce0e13332f7c0083788def5fdf', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1219 | |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1220 | 'src/third_party/openscreen/src': |
chromium-autoroll | fb943f1bd | 2020-04-08 16:59:21 | [diff] [blame] | 1221 | Var('chromium_git') + '/openscreen' + '@' + 'e998a6b46dddfecde30aa25642bad41a7e5d9780', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1222 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1223 | 'src/third_party/openxr/src': { |
Kevin Qin | 6bf75c7 | 2020-01-07 19:37:33 | [diff] [blame] | 1224 | 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + '9e97b73e7dd2bfc07745489d728f6a36665c648f', |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1225 | 'condition': 'checkout_openxr', |
| 1226 | }, |
| 1227 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1228 | 'src/third_party/pdfium': |
| 1229 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 1230 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1231 | # Parses Windows PE/COFF executable format. |
| 1232 | 'src/third_party/pefile': { |
| 1233 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1234 | 'condition': 'checkout_win', |
| 1235 | }, |
| 1236 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1237 | 'src/third_party/perfetto': |
chromium-autoroll | dc41ec18 | 2020-04-08 02:45:38 | [diff] [blame] | 1238 | Var('android_git') + '/platform/external/perfetto.git' + '@' + 'c98edc42336fbf508cec873654b7e13ee2866bc9', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1239 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1240 | 'src/third_party/perl': { |
Robert Ma | 3deb10c | 2019-06-05 15:23:29 | [diff] [blame] | 1241 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1242 | 'condition': 'checkout_win', |
| 1243 | }, |
| 1244 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1245 | 'src/third_party/proguard': { |
| 1246 | 'packages': [ |
| 1247 | { |
| 1248 | 'package': 'chromium/third_party/proguard', |
Andrew Grieve | 02aeb6b2 | 2020-03-18 20:20:21 | [diff] [blame] | 1249 | 'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC', |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1250 | }, |
| 1251 | ], |
| 1252 | 'condition': 'checkout_android', |
| 1253 | 'dep_type': 'cipd', |
| 1254 | }, |
| 1255 | |
Mohamed Heikal | 5c48859 | 2018-11-26 23:32:15 | [diff] [blame] | 1256 | 'src/third_party/protoc_javalite': { |
| 1257 | 'packages': [ |
| 1258 | { |
| 1259 | 'package': 'chromium/third_party/protoc_javalite', |
| 1260 | 'version': 'version:3.0.0-cr1', |
| 1261 | }, |
| 1262 | ], |
| 1263 | 'condition': 'checkout_android', |
| 1264 | 'dep_type': 'cipd', |
| 1265 | }, |
| 1266 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1267 | # Dependency of chromite.git and skia. |
| 1268 | 'src/third_party/pyelftools': { |
| 1269 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1270 | 'condition': 'checkout_linux', |
| 1271 | }, |
| 1272 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1273 | 'src/third_party/quic_trace/src': |
Renjie Tang | ff0d637 | 2019-08-30 22:03:29 | [diff] [blame] | 1274 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + '35d364f77a02b283d82dd2f874da61f765c259f4', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1275 | |
Keita Suzuki | fa3a18069 | 2020-03-05 03:53:53 | [diff] [blame] | 1276 | 'src/third_party/pywebsocket3/src': |
| 1277 | Var('chromium_git') + '/external/github.com/GoogleChromeLabs/pywebsocket3.git' + '@' + '89c9228434100e4dabb19f61d0d4f55625940638', |
| 1278 | |
Stephen Roe | 3c9f585 | 2019-11-13 17:25:43 | [diff] [blame] | 1279 | 'src/third_party/qemu-linux-arm64': { |
| 1280 | 'packages': [ |
| 1281 | { |
| 1282 | 'package': 'fuchsia/qemu/linux-arm64', |
| 1283 | 'version': 'b1b61a39e3ab0935cd030f27e01740578b04b967' |
| 1284 | }, |
| 1285 | ], |
| 1286 | 'condition': 'host_os == "linux" and (checkout_fuchsia and checkout_fuchsia_for_arm64_host)', |
| 1287 | 'dep_type': 'cipd', |
| 1288 | }, |
| 1289 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1290 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1291 | 'packages': [ |
| 1292 | { |
| 1293 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1294 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1295 | }, |
| 1296 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1297 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1298 | 'dep_type': 'cipd', |
| 1299 | }, |
| 1300 | |
| 1301 | 'src/third_party/qemu-mac-x64': { |
| 1302 | 'packages': [ |
| 1303 | { |
| 1304 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1305 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1306 | }, |
| 1307 | ], |
| 1308 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1309 | 'dep_type': 'cipd', |
| 1310 | }, |
| 1311 | |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1312 | 'src/third_party/aemu-linux-x64': { |
| 1313 | 'packages': [ |
| 1314 | { |
| 1315 | 'package': 'fuchsia/third_party/aemu/linux-amd64', |
chromium-autoroll | 44a955f | 2020-04-07 09:14:10 | [diff] [blame] | 1316 | 'version': 'PanIUxGAhJjJ7ZNere-l6Bgp8nRJbkRFU-2ZV-nU8BwC' |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1317 | }, |
| 1318 | ], |
Chong Gu | 7d2dd6e | 2020-02-01 03:27:25 | [diff] [blame] | 1319 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1320 | 'dep_type': 'cipd', |
| 1321 | }, |
| 1322 | |
| 1323 | 'src/third_party/aemu-mac-x64': { |
| 1324 | 'packages': [ |
| 1325 | { |
| 1326 | 'package': 'fuchsia/third_party/aemu/mac-amd64', |
Chong Gu | 4199cbde | 2020-03-05 06:07:19 | [diff] [blame] | 1327 | 'version': 'guAtTBQ1SKIjr06srbTOjNWiYxrM4nK1AbfeQo1gBmQC' |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1328 | }, |
| 1329 | ], |
Chong Gu | 7d2dd6e | 2020-02-01 03:27:25 | [diff] [blame] | 1330 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Chong Gu | 9ad904d | 2019-09-26 23:24:02 | [diff] [blame] | 1331 | 'dep_type': 'cipd', |
| 1332 | }, |
| 1333 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1334 | 'src/third_party/re2/src': |
Paul Wankadia | 1a25cd7 | 2020-03-16 05:31:20 | [diff] [blame] | 1335 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + 'ca93436e5b1be02f9f4bfca79b8202c400161994', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1336 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1337 | 'src/third_party/r8': { |
| 1338 | 'packages': [ |
| 1339 | { |
| 1340 | 'package': 'chromium/third_party/r8', |
Andrew Grieve | bd67b2b | 2020-04-03 02:23:38 | [diff] [blame] | 1341 | 'version': 'I91wspV6GMc7l_m-k9v3-ooP-CBrK76OVc3rfnB5T7kC', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1342 | }, |
| 1343 | ], |
| 1344 | 'condition': 'checkout_android', |
| 1345 | 'dep_type': 'cipd', |
| 1346 | }, |
| 1347 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1348 | 'src/third_party/requests/src': { |
| 1349 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1350 | 'condition': 'checkout_android', |
| 1351 | }, |
| 1352 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1353 | 'src/third_party/robolectric': { |
| 1354 | 'packages': [ |
| 1355 | { |
| 1356 | 'package': 'chromium/third_party/robolectric', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 1357 | 'version': 'iC6RDM5EH3GEAzR-1shW_Mg0FeeNE5shq1okkFfuuNQC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1358 | }, |
| 1359 | ], |
| 1360 | 'condition': 'checkout_android', |
| 1361 | 'dep_type': 'cipd', |
| 1362 | }, |
| 1363 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1364 | 'src/third_party/robolectric/robolectric': { |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 1365 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + 'f2df0efb033bb402399ebfb9bf58aefee5cced05', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1366 | 'condition': 'checkout_android', |
| 1367 | }, |
| 1368 | |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1369 | 'src/third_party/androidx': { |
| 1370 | 'packages': [ |
| 1371 | { |
| 1372 | 'package': 'chromium/third_party/androidx', |
| 1373 | 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| 1374 | }, |
| 1375 | ], |
| 1376 | 'condition': 'checkout_android', |
| 1377 | 'dep_type': 'cipd', |
| 1378 | }, |
| 1379 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1380 | 'src/third_party/skia': |
| 1381 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1382 | |
| 1383 | 'src/third_party/smhasher/src': |
| 1384 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1385 | |
| 1386 | 'src/third_party/snappy/src': |
Victor Costan | dc961cd | 2020-01-09 23:56:42 | [diff] [blame] | 1387 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'f5acee902c4d2110f671455460172cb6d3bf5b73', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1388 | |
Chris Mumford | 591102e | 2020-03-16 16:48:55 | [diff] [blame] | 1389 | 'src/third_party/sqlite/src': |
| 1390 | Var('chromium_git') + '/chromium/deps/sqlite.git' + '@' + '3d3ac5e6f58a5bc28e96e621909b594e7f950e53', |
| 1391 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1392 | 'src/third_party/sqlite4java': { |
| 1393 | 'packages': [ |
| 1394 | { |
| 1395 | 'package': 'chromium/third_party/sqlite4java', |
Xing Liu | 37d0b66 | 2020-01-11 04:24:49 | [diff] [blame] | 1396 | 'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1397 | }, |
| 1398 | ], |
| 1399 | 'condition': 'checkout_android', |
| 1400 | 'dep_type': 'cipd', |
| 1401 | }, |
| 1402 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1403 | 'src/third_party/swiftshader': |
| 1404 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1405 | |
Peter Wen | 49675e17 | 2020-03-16 16:10:11 | [diff] [blame] | 1406 | 'src/third_party/turbine': { |
| 1407 | 'packages': [ |
| 1408 | { |
| 1409 | 'package': 'chromium/third_party/turbine', |
| 1410 | 'version': '3UJ600difG3ThRhtYrN9AfZ5kh8wCYtBiii1-NMlCrMC', |
| 1411 | }, |
| 1412 | ], |
| 1413 | 'condition': 'checkout_android', |
| 1414 | 'dep_type': 'cipd', |
| 1415 | }, |
| 1416 | |
| 1417 | 'src/third_party/turbine/src': { |
| 1418 | 'url': Var('chromium_git') + '/external/github.com/google/turbine.git' + '@' + '95f6fb6f1e962e8b6ec672905b0b04233f002dc2', |
| 1419 | 'condition': 'checkout_android', |
| 1420 | }, |
| 1421 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1422 | 'src/third_party/ub-uiautomator/lib': { |
| 1423 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1424 | 'condition': 'checkout_android', |
| 1425 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1426 | |
| 1427 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 49844d7 | 2020-03-20 22:09:18 | [diff] [blame] | 1428 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'bee946a606752a443bd70bca1cb296527fed706d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1429 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1430 | # Display server protocol for Linux. |
| 1431 | 'src/third_party/wayland/src': { |
Kenny Levinsen | b581b3e | 2019-12-03 01:32:36 | [diff] [blame] | 1432 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + 'e091839dd08354289e501a47219e0c7a6472dff3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1433 | 'condition': 'checkout_linux', |
| 1434 | }, |
| 1435 | |
| 1436 | # Wayland protocols that add functionality not available in the core protocol. |
| 1437 | 'src/third_party/wayland-protocols/src': { |
Kenny Levinsen | b581b3e | 2019-12-03 01:32:36 | [diff] [blame] | 1438 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '630fb089103a1d0eab1a684b853ab5c4d2b252aa', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1439 | 'condition': 'checkout_linux', |
| 1440 | }, |
| 1441 | |
| 1442 | # Wireless Display Software. Used on Chrome OS. |
| 1443 | 'src/third_party/wds/src': { |
| 1444 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1445 | 'condition': 'checkout_linux', |
| 1446 | }, |
| 1447 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1448 | 'src/third_party/webdriver/pylib': |
Aaron Gable | 5a63017 | 2019-04-30 20:59:01 | [diff] [blame] | 1449 | Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'd0045ec570c1a77612db35d1e92f05e1d27b4d53', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1450 | |
| 1451 | 'src/third_party/webgl/src': |
shrekshao | 0503815 | 2020-01-14 23:36:59 | [diff] [blame] | 1452 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '4f3976e9b368ccfe7b9dd02014351936296dc72c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1453 | |
Kai Ninomiya | 1389888 | 2020-01-17 20:41:52 | [diff] [blame] | 1454 | 'src/third_party/webgpu-cts/src': |
Kai Ninomiya | f6e5ec1 | 2020-03-11 18:40:33 | [diff] [blame] | 1455 | Var('chromium_git') + '/external/github.com/gpuweb/cts.git' + '@' + '84ee597cdeae08bb26e578fc66a35bcf35f633f4', |
Kai Ninomiya | 1389888 | 2020-01-17 20:41:52 | [diff] [blame] | 1456 | |
Kai Ninomiya | c7138f9 | 2020-03-31 18:59:57 | [diff] [blame] | 1457 | 'src/third_party/blink/web_tests/wpt_internal/webgpu/third_party/glslang_js': { |
| 1458 | 'packages': [ |
| 1459 | { |
| 1460 | 'package': 'chromium/third_party/glslang_js', |
| 1461 | 'version': 'IB6pL73YKdgoiK7Ea7U5Uw_XjzXGZJCB0I3LhaiYY-sC', |
| 1462 | }, |
| 1463 | ], |
| 1464 | 'dep_type': 'cipd', |
| 1465 | }, |
| 1466 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1467 | 'src/third_party/webrtc': |
chromium-autoroll | ccbdea51 | 2020-04-08 17:12:59 | [diff] [blame] | 1468 | Var('webrtc_git') + '/src.git' + '@' + 'f7065f4414856c15038f8bdbe4ef84e54056f9d6', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1469 | |
Nigel Tao | 3aa7214 | 2019-12-03 22:05:41 | [diff] [blame] | 1470 | 'src/third_party/libgifcodec': |
| 1471 | Var('skia_git') + '/libgifcodec' + '@'+ Var('libgifcodec_revision'), |
| 1472 | |
Nigel Tao | b517eb891 | 2019-10-23 03:36:24 | [diff] [blame] | 1473 | # Wuffs' canonical repository is at github.com/google/wuffs, but we use |
| 1474 | # Skia's mirror of Wuffs, the same as in upstream Skia's DEPS file. |
| 1475 | 'src/third_party/wuffs/src': |
| 1476 | Var('skia_git') + '/external/github.com/google/wuffs.git' + '@' + Var('wuffs_revision'), |
| 1477 | |
sbalikondwar | 5949a80 | 2020-02-13 16:28:59 | [diff] [blame] | 1478 | 'src/third_party/weston/src': { |
| 1479 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/weston.git' + '@' + 'db905f467169f9f131c5ddc6038296f866d5daeb', |
| 1480 | 'condition': 'checkout_linux', |
| 1481 | }, |
| 1482 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1483 | 'src/third_party/xdg-utils': { |
| 1484 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1485 | 'condition': 'checkout_linux', |
| 1486 | }, |
| 1487 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1488 | 'src/third_party/xstream': { |
| 1489 | 'packages': [ |
| 1490 | { |
| 1491 | 'package': 'chromium/third_party/xstream', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1492 | 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1493 | }, |
| 1494 | ], |
| 1495 | 'condition': 'checkout_android', |
| 1496 | 'dep_type': 'cipd', |
| 1497 | }, |
| 1498 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1499 | 'src/third_party/yasm/source/patched-yasm': |
Mostyn Bramley-Moore | 2be9a9d0 | 2018-07-07 00:35:17 | [diff] [blame] | 1500 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1501 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1502 | 'src/tools/page_cycler/acid3': |
| 1503 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1504 | |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1505 | 'src/tools/skia_goldctl/linux': { |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1506 | 'packages': [ |
| 1507 | { |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1508 | 'package': 'skia/tools/goldctl/linux-amd64', |
Brian Sheedy | 3723457a | 2019-12-03 22:39:29 | [diff] [blame] | 1509 | 'version': 'git_revision:660c5b7be6c56a5567bb4ff489d5d8ce4477dc02', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1510 | }, |
| 1511 | ], |
| 1512 | 'dep_type': 'cipd', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1513 | 'condition': 'checkout_linux', |
| 1514 | }, |
| 1515 | 'src/tools/skia_goldctl/win': { |
| 1516 | 'packages': [ |
| 1517 | { |
| 1518 | 'package': 'skia/tools/goldctl/windows-amd64', |
Brian Sheedy | 3723457a | 2019-12-03 22:39:29 | [diff] [blame] | 1519 | 'version': 'git_revision:660c5b7be6c56a5567bb4ff489d5d8ce4477dc02', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1520 | }, |
| 1521 | ], |
| 1522 | 'dep_type': 'cipd', |
| 1523 | 'condition': 'checkout_win', |
| 1524 | }, |
| 1525 | 'src/tools/skia_goldctl/mac': { |
| 1526 | 'packages': [ |
| 1527 | { |
| 1528 | 'package': 'skia/tools/goldctl/mac-amd64', |
Brian Sheedy | 3723457a | 2019-12-03 22:39:29 | [diff] [blame] | 1529 | 'version': 'git_revision:660c5b7be6c56a5567bb4ff489d5d8ce4477dc02', |
Sven Zheng | 4d478129 | 2019-09-12 17:46:14 | [diff] [blame] | 1530 | }, |
| 1531 | ], |
| 1532 | 'dep_type': 'cipd', |
| 1533 | 'condition': 'checkout_mac', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1534 | }, |
| 1535 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1536 | 'src/tools/swarming_client': |
| 1537 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1538 | |
| 1539 | 'src/v8': |
| 1540 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1541 | |
| 1542 | 'src-internal': { |
chromium-internal-autoroll | 96cb98a | 2020-04-08 16:58:20 | [diff] [blame] | 1543 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@6e3984a4c68ea883e183a3e8118f14b6a315ef2f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1544 | 'condition': 'checkout_src_internal', |
| 1545 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1546 | |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1547 | 'src/third_party/google_android_play_core': { |
| 1548 | 'packages': [ |
| 1549 | { |
| 1550 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
Peter Wen | 5fe1f7d | 2020-03-30 21:28:32 | [diff] [blame] | 1551 | 'version': 'ojrkXUE6tjG8FYmoLfCD3YdOxTyl2BXMdmk7Fb6cS5MC', |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1552 | }, |
| 1553 | ], |
| 1554 | 'condition': 'checkout_android', |
| 1555 | 'dep_type': 'cipd', |
| 1556 | }, |
| 1557 | |
Josip | dfc143f | 2020-02-26 23:38:36 | [diff] [blame] | 1558 | 'src/third_party/android_prebuilts/build_tools': { |
| 1559 | 'url': Var('android_git') + '/platform/prebuilts/build-tools.git' + '@' + '5794e96eb8bae47bb48feee915d99583573b3887', |
| 1560 | 'condition': 'checkout_android_prebuilts_build_tools', |
| 1561 | }, |
| 1562 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1563 | # === ANDROID_DEPS Generated Code Start === |
Sam Maier | beef998 | 2020-01-06 17:49:10 | [diff] [blame] | 1564 | # Generated by //third_party/android_deps/fetch_all.py |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1565 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1566 | 'packages': [ |
| 1567 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1568 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1569 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1570 | }, |
| 1571 | ], |
| 1572 | 'condition': 'checkout_android', |
| 1573 | 'dep_type': 'cipd', |
| 1574 | }, |
| 1575 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1576 | 'src/third_party/android_deps/libs/android_arch_core_runtime': { |
| 1577 | 'packages': [ |
| 1578 | { |
| 1579 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_runtime', |
| 1580 | 'version': 'version:1.1.1-cr0', |
| 1581 | }, |
| 1582 | ], |
| 1583 | 'condition': 'checkout_android', |
| 1584 | 'dep_type': 'cipd', |
| 1585 | }, |
| 1586 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1587 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1588 | 'packages': [ |
| 1589 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1590 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1591 | 'version': 'version:1.1.1-cr0', |
| 1592 | }, |
| 1593 | ], |
| 1594 | 'condition': 'checkout_android', |
| 1595 | 'dep_type': 'cipd', |
| 1596 | }, |
| 1597 | |
| 1598 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common_java8': { |
| 1599 | 'packages': [ |
| 1600 | { |
| 1601 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8', |
| 1602 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1603 | }, |
| 1604 | ], |
| 1605 | 'condition': 'checkout_android', |
| 1606 | 'dep_type': 'cipd', |
| 1607 | }, |
| 1608 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1609 | 'src/third_party/android_deps/libs/android_arch_lifecycle_livedata': { |
| 1610 | 'packages': [ |
| 1611 | { |
| 1612 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata', |
| 1613 | 'version': 'version:1.1.1-cr0', |
| 1614 | }, |
| 1615 | ], |
| 1616 | 'condition': 'checkout_android', |
| 1617 | 'dep_type': 'cipd', |
| 1618 | }, |
| 1619 | |
| 1620 | 'src/third_party/android_deps/libs/android_arch_lifecycle_livedata_core': { |
| 1621 | 'packages': [ |
| 1622 | { |
| 1623 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata_core', |
| 1624 | 'version': 'version:1.1.1-cr0', |
| 1625 | }, |
| 1626 | ], |
| 1627 | 'condition': 'checkout_android', |
| 1628 | 'dep_type': 'cipd', |
| 1629 | }, |
| 1630 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1631 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1632 | 'packages': [ |
| 1633 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1634 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1635 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1636 | }, |
| 1637 | ], |
| 1638 | 'condition': 'checkout_android', |
| 1639 | 'dep_type': 'cipd', |
| 1640 | }, |
| 1641 | |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 1642 | 'src/third_party/android_deps/libs/android_arch_lifecycle_viewmodel': { |
| 1643 | 'packages': [ |
| 1644 | { |
| 1645 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_viewmodel', |
| 1646 | 'version': 'version:1.1.1-cr0', |
| 1647 | }, |
| 1648 | ], |
| 1649 | 'condition': 'checkout_android', |
| 1650 | 'dep_type': 'cipd', |
| 1651 | }, |
| 1652 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1653 | 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 1654 | 'packages': [ |
| 1655 | { |
| 1656 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 1657 | 'version': 'version:1.1.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1658 | }, |
| 1659 | ], |
| 1660 | 'condition': 'checkout_android', |
| 1661 | 'dep_type': 'cipd', |
| 1662 | }, |
| 1663 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1664 | 'src/third_party/android_deps/libs/androidx_appcompat_appcompat': { |
| 1665 | 'packages': [ |
| 1666 | { |
| 1667 | 'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat', |
| 1668 | 'version': 'version:1.0.0-cr0', |
| 1669 | }, |
| 1670 | ], |
| 1671 | 'condition': 'checkout_android', |
| 1672 | 'dep_type': 'cipd', |
| 1673 | }, |
| 1674 | |
| 1675 | 'src/third_party/android_deps/libs/androidx_arch_core_core_common': { |
| 1676 | 'packages': [ |
| 1677 | { |
| 1678 | 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_common', |
| 1679 | 'version': 'version:2.0.0-cr0', |
| 1680 | }, |
| 1681 | ], |
| 1682 | 'condition': 'checkout_android', |
| 1683 | 'dep_type': 'cipd', |
| 1684 | }, |
| 1685 | |
| 1686 | 'src/third_party/android_deps/libs/androidx_arch_core_core_runtime': { |
| 1687 | 'packages': [ |
| 1688 | { |
| 1689 | 'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_runtime', |
| 1690 | 'version': 'version:2.0.0-cr0', |
| 1691 | }, |
| 1692 | ], |
| 1693 | 'condition': 'checkout_android', |
| 1694 | 'dep_type': 'cipd', |
| 1695 | }, |
| 1696 | |
| 1697 | 'src/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater': { |
| 1698 | 'packages': [ |
| 1699 | { |
| 1700 | 'package': 'chromium/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater', |
| 1701 | 'version': 'version:1.0.0-cr0', |
| 1702 | }, |
| 1703 | ], |
| 1704 | 'condition': 'checkout_android', |
| 1705 | 'dep_type': 'cipd', |
| 1706 | }, |
| 1707 | |
| 1708 | 'src/third_party/android_deps/libs/androidx_cardview_cardview': { |
| 1709 | 'packages': [ |
| 1710 | { |
| 1711 | 'package': 'chromium/third_party/android_deps/libs/androidx_cardview_cardview', |
| 1712 | 'version': 'version:1.0.0-cr0', |
| 1713 | }, |
| 1714 | ], |
| 1715 | 'condition': 'checkout_android', |
| 1716 | 'dep_type': 'cipd', |
| 1717 | }, |
| 1718 | |
| 1719 | 'src/third_party/android_deps/libs/androidx_collection_collection': { |
| 1720 | 'packages': [ |
| 1721 | { |
| 1722 | 'package': 'chromium/third_party/android_deps/libs/androidx_collection_collection', |
| 1723 | 'version': 'version:1.0.0-cr0', |
| 1724 | }, |
| 1725 | ], |
| 1726 | 'condition': 'checkout_android', |
| 1727 | 'dep_type': 'cipd', |
| 1728 | }, |
| 1729 | |
Ben Joyce | bd0d9e5 | 2019-11-12 09:01:50 | [diff] [blame] | 1730 | 'src/third_party/android_deps/libs/androidx_concurrent_concurrent_futures': { |
| 1731 | 'packages': [ |
| 1732 | { |
| 1733 | 'package': 'chromium/third_party/android_deps/libs/androidx_concurrent_concurrent_futures', |
| 1734 | 'version': 'version:1.0.0-cr0', |
| 1735 | }, |
| 1736 | ], |
| 1737 | 'condition': 'checkout_android', |
| 1738 | 'dep_type': 'cipd', |
| 1739 | }, |
| 1740 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1741 | 'src/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout': { |
| 1742 | 'packages': [ |
| 1743 | { |
| 1744 | 'package': 'chromium/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout', |
| 1745 | 'version': 'version:1.0.0-cr0', |
| 1746 | }, |
| 1747 | ], |
| 1748 | 'condition': 'checkout_android', |
| 1749 | 'dep_type': 'cipd', |
| 1750 | }, |
| 1751 | |
| 1752 | 'src/third_party/android_deps/libs/androidx_core_core': { |
| 1753 | 'packages': [ |
| 1754 | { |
| 1755 | 'package': 'chromium/third_party/android_deps/libs/androidx_core_core', |
| 1756 | 'version': 'version:1.0.0-cr0', |
| 1757 | }, |
| 1758 | ], |
| 1759 | 'condition': 'checkout_android', |
| 1760 | 'dep_type': 'cipd', |
| 1761 | }, |
| 1762 | |
| 1763 | 'src/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter': { |
| 1764 | 'packages': [ |
| 1765 | { |
| 1766 | 'package': 'chromium/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter', |
| 1767 | 'version': 'version:1.0.0-cr0', |
| 1768 | }, |
| 1769 | ], |
| 1770 | 'condition': 'checkout_android', |
| 1771 | 'dep_type': 'cipd', |
| 1772 | }, |
| 1773 | |
| 1774 | 'src/third_party/android_deps/libs/androidx_customview_customview': { |
| 1775 | 'packages': [ |
| 1776 | { |
| 1777 | 'package': 'chromium/third_party/android_deps/libs/androidx_customview_customview', |
| 1778 | 'version': 'version:1.0.0-cr0', |
| 1779 | }, |
| 1780 | ], |
| 1781 | 'condition': 'checkout_android', |
| 1782 | 'dep_type': 'cipd', |
| 1783 | }, |
| 1784 | |
| 1785 | 'src/third_party/android_deps/libs/androidx_documentfile_documentfile': { |
| 1786 | 'packages': [ |
| 1787 | { |
| 1788 | 'package': 'chromium/third_party/android_deps/libs/androidx_documentfile_documentfile', |
| 1789 | 'version': 'version:1.0.0-cr0', |
| 1790 | }, |
| 1791 | ], |
| 1792 | 'condition': 'checkout_android', |
| 1793 | 'dep_type': 'cipd', |
| 1794 | }, |
| 1795 | |
| 1796 | 'src/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout': { |
| 1797 | 'packages': [ |
| 1798 | { |
| 1799 | 'package': 'chromium/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout', |
| 1800 | 'version': 'version:1.0.0-cr0', |
| 1801 | }, |
| 1802 | ], |
| 1803 | 'condition': 'checkout_android', |
| 1804 | 'dep_type': 'cipd', |
| 1805 | }, |
| 1806 | |
| 1807 | 'src/third_party/android_deps/libs/androidx_fragment_fragment': { |
| 1808 | 'packages': [ |
| 1809 | { |
| 1810 | 'package': 'chromium/third_party/android_deps/libs/androidx_fragment_fragment', |
| 1811 | 'version': 'version:1.0.0-cr0', |
| 1812 | }, |
| 1813 | ], |
| 1814 | 'condition': 'checkout_android', |
| 1815 | 'dep_type': 'cipd', |
| 1816 | }, |
| 1817 | |
| 1818 | 'src/third_party/android_deps/libs/androidx_gridlayout_gridlayout': { |
| 1819 | 'packages': [ |
| 1820 | { |
| 1821 | 'package': 'chromium/third_party/android_deps/libs/androidx_gridlayout_gridlayout', |
| 1822 | 'version': 'version:1.0.0-cr0', |
| 1823 | }, |
| 1824 | ], |
| 1825 | 'condition': 'checkout_android', |
| 1826 | 'dep_type': 'cipd', |
| 1827 | }, |
| 1828 | |
| 1829 | 'src/third_party/android_deps/libs/androidx_interpolator_interpolator': { |
| 1830 | 'packages': [ |
| 1831 | { |
| 1832 | 'package': 'chromium/third_party/android_deps/libs/androidx_interpolator_interpolator', |
| 1833 | 'version': 'version:1.0.0-cr0', |
| 1834 | }, |
| 1835 | ], |
| 1836 | 'condition': 'checkout_android', |
| 1837 | 'dep_type': 'cipd', |
| 1838 | }, |
| 1839 | |
| 1840 | 'src/third_party/android_deps/libs/androidx_leanback_leanback': { |
| 1841 | 'packages': [ |
| 1842 | { |
| 1843 | 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback', |
| 1844 | 'version': 'version:1.0.0-cr0', |
| 1845 | }, |
| 1846 | ], |
| 1847 | 'condition': 'checkout_android', |
| 1848 | 'dep_type': 'cipd', |
| 1849 | }, |
| 1850 | |
| 1851 | 'src/third_party/android_deps/libs/androidx_leanback_leanback_preference': { |
| 1852 | 'packages': [ |
| 1853 | { |
| 1854 | 'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback_preference', |
| 1855 | 'version': 'version:1.0.0-cr0', |
| 1856 | }, |
| 1857 | ], |
| 1858 | 'condition': 'checkout_android', |
| 1859 | 'dep_type': 'cipd', |
| 1860 | }, |
| 1861 | |
| 1862 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14': { |
| 1863 | 'packages': [ |
| 1864 | { |
| 1865 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14', |
| 1866 | 'version': 'version:1.0.0-cr0', |
| 1867 | }, |
| 1868 | ], |
| 1869 | 'condition': 'checkout_android', |
| 1870 | 'dep_type': 'cipd', |
| 1871 | }, |
| 1872 | |
| 1873 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui': { |
| 1874 | 'packages': [ |
| 1875 | { |
| 1876 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui', |
| 1877 | 'version': 'version:1.0.0-cr0', |
| 1878 | }, |
| 1879 | ], |
| 1880 | 'condition': 'checkout_android', |
| 1881 | 'dep_type': 'cipd', |
| 1882 | }, |
| 1883 | |
| 1884 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils': { |
| 1885 | 'packages': [ |
| 1886 | { |
| 1887 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils', |
| 1888 | 'version': 'version:1.0.0-cr0', |
| 1889 | }, |
| 1890 | ], |
| 1891 | 'condition': 'checkout_android', |
| 1892 | 'dep_type': 'cipd', |
| 1893 | }, |
| 1894 | |
| 1895 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v13': { |
| 1896 | 'packages': [ |
| 1897 | { |
| 1898 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v13', |
| 1899 | 'version': 'version:1.0.0-cr0', |
| 1900 | }, |
| 1901 | ], |
| 1902 | 'condition': 'checkout_android', |
| 1903 | 'dep_type': 'cipd', |
| 1904 | }, |
| 1905 | |
| 1906 | 'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v4': { |
| 1907 | 'packages': [ |
| 1908 | { |
| 1909 | 'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v4', |
| 1910 | 'version': 'version:1.0.0-cr0', |
| 1911 | }, |
| 1912 | ], |
| 1913 | 'condition': 'checkout_android', |
| 1914 | 'dep_type': 'cipd', |
| 1915 | }, |
| 1916 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1917 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 1918 | 'packages': [ |
| 1919 | { |
| 1920 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
| 1921 | 'version': 'version:2.0.0-cr0', |
| 1922 | }, |
| 1923 | ], |
| 1924 | 'condition': 'checkout_android', |
| 1925 | 'dep_type': 'cipd', |
| 1926 | }, |
| 1927 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 1928 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8': { |
| 1929 | 'packages': [ |
| 1930 | { |
| 1931 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8', |
| 1932 | 'version': 'version:2.0.0-cr0', |
| 1933 | }, |
| 1934 | ], |
| 1935 | 'condition': 'checkout_android', |
| 1936 | 'dep_type': 'cipd', |
| 1937 | }, |
| 1938 | |
| 1939 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata': { |
| 1940 | 'packages': [ |
| 1941 | { |
| 1942 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata', |
| 1943 | 'version': 'version:2.0.0-cr0', |
| 1944 | }, |
| 1945 | ], |
| 1946 | 'condition': 'checkout_android', |
| 1947 | 'dep_type': 'cipd', |
| 1948 | }, |
| 1949 | |
| 1950 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core': { |
| 1951 | 'packages': [ |
| 1952 | { |
| 1953 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core', |
| 1954 | 'version': 'version:2.0.0-cr0', |
| 1955 | }, |
| 1956 | ], |
| 1957 | 'condition': 'checkout_android', |
| 1958 | 'dep_type': 'cipd', |
| 1959 | }, |
| 1960 | |
| 1961 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime': { |
| 1962 | 'packages': [ |
| 1963 | { |
| 1964 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime', |
| 1965 | 'version': 'version:2.0.0-cr0', |
| 1966 | }, |
| 1967 | ], |
| 1968 | 'condition': 'checkout_android', |
| 1969 | 'dep_type': 'cipd', |
| 1970 | }, |
| 1971 | |
| 1972 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel': { |
| 1973 | 'packages': [ |
| 1974 | { |
| 1975 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel', |
| 1976 | 'version': 'version:2.0.0-cr0', |
| 1977 | }, |
| 1978 | ], |
| 1979 | 'condition': 'checkout_android', |
| 1980 | 'dep_type': 'cipd', |
| 1981 | }, |
| 1982 | |
| 1983 | 'src/third_party/android_deps/libs/androidx_loader_loader': { |
| 1984 | 'packages': [ |
| 1985 | { |
| 1986 | 'package': 'chromium/third_party/android_deps/libs/androidx_loader_loader', |
| 1987 | 'version': 'version:1.0.0-cr0', |
| 1988 | }, |
| 1989 | ], |
| 1990 | 'condition': 'checkout_android', |
| 1991 | 'dep_type': 'cipd', |
| 1992 | }, |
| 1993 | |
| 1994 | 'src/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager': { |
| 1995 | 'packages': [ |
| 1996 | { |
| 1997 | 'package': 'chromium/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager', |
| 1998 | 'version': 'version:1.0.0-cr0', |
| 1999 | }, |
| 2000 | ], |
| 2001 | 'condition': 'checkout_android', |
| 2002 | 'dep_type': 'cipd', |
| 2003 | }, |
| 2004 | |
| 2005 | 'src/third_party/android_deps/libs/androidx_media_media': { |
| 2006 | 'packages': [ |
| 2007 | { |
| 2008 | 'package': 'chromium/third_party/android_deps/libs/androidx_media_media', |
| 2009 | 'version': 'version:1.0.0-cr0', |
| 2010 | }, |
| 2011 | ], |
| 2012 | 'condition': 'checkout_android', |
| 2013 | 'dep_type': 'cipd', |
| 2014 | }, |
| 2015 | |
| 2016 | 'src/third_party/android_deps/libs/androidx_mediarouter_mediarouter': { |
| 2017 | 'packages': [ |
| 2018 | { |
| 2019 | 'package': 'chromium/third_party/android_deps/libs/androidx_mediarouter_mediarouter', |
| 2020 | 'version': 'version:1.0.0-cr0', |
| 2021 | }, |
| 2022 | ], |
| 2023 | 'condition': 'checkout_android', |
| 2024 | 'dep_type': 'cipd', |
| 2025 | }, |
| 2026 | |
| 2027 | 'src/third_party/android_deps/libs/androidx_multidex_multidex': { |
| 2028 | 'packages': [ |
| 2029 | { |
| 2030 | 'package': 'chromium/third_party/android_deps/libs/androidx_multidex_multidex', |
| 2031 | 'version': 'version:2.0.0-cr0', |
| 2032 | }, |
| 2033 | ], |
| 2034 | 'condition': 'checkout_android', |
| 2035 | 'dep_type': 'cipd', |
| 2036 | }, |
| 2037 | |
| 2038 | 'src/third_party/android_deps/libs/androidx_palette_palette': { |
| 2039 | 'packages': [ |
| 2040 | { |
| 2041 | 'package': 'chromium/third_party/android_deps/libs/androidx_palette_palette', |
| 2042 | 'version': 'version:1.0.0-cr0', |
| 2043 | }, |
| 2044 | ], |
| 2045 | 'condition': 'checkout_android', |
| 2046 | 'dep_type': 'cipd', |
| 2047 | }, |
| 2048 | |
| 2049 | 'src/third_party/android_deps/libs/androidx_preference_preference': { |
| 2050 | 'packages': [ |
| 2051 | { |
| 2052 | 'package': 'chromium/third_party/android_deps/libs/androidx_preference_preference', |
| 2053 | 'version': 'version:1.0.0-cr0', |
| 2054 | }, |
| 2055 | ], |
| 2056 | 'condition': 'checkout_android', |
| 2057 | 'dep_type': 'cipd', |
| 2058 | }, |
| 2059 | |
| 2060 | 'src/third_party/android_deps/libs/androidx_print_print': { |
| 2061 | 'packages': [ |
| 2062 | { |
| 2063 | 'package': 'chromium/third_party/android_deps/libs/androidx_print_print', |
| 2064 | 'version': 'version:1.0.0-cr0', |
| 2065 | }, |
| 2066 | ], |
| 2067 | 'condition': 'checkout_android', |
| 2068 | 'dep_type': 'cipd', |
| 2069 | }, |
| 2070 | |
| 2071 | 'src/third_party/android_deps/libs/androidx_recyclerview_recyclerview': { |
| 2072 | 'packages': [ |
| 2073 | { |
| 2074 | 'package': 'chromium/third_party/android_deps/libs/androidx_recyclerview_recyclerview', |
| 2075 | 'version': 'version:1.0.0-cr0', |
| 2076 | }, |
| 2077 | ], |
| 2078 | 'condition': 'checkout_android', |
| 2079 | 'dep_type': 'cipd', |
| 2080 | }, |
| 2081 | |
| 2082 | 'src/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout': { |
| 2083 | 'packages': [ |
| 2084 | { |
| 2085 | 'package': 'chromium/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout', |
| 2086 | 'version': 'version:1.0.0-cr0', |
| 2087 | }, |
| 2088 | ], |
| 2089 | 'condition': 'checkout_android', |
| 2090 | 'dep_type': 'cipd', |
| 2091 | }, |
| 2092 | |
| 2093 | 'src/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout': { |
| 2094 | 'packages': [ |
| 2095 | { |
| 2096 | 'package': 'chromium/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout', |
| 2097 | 'version': 'version:1.0.0-cr0', |
| 2098 | }, |
| 2099 | ], |
| 2100 | 'condition': 'checkout_android', |
| 2101 | 'dep_type': 'cipd', |
| 2102 | }, |
| 2103 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2104 | 'src/third_party/android_deps/libs/androidx_test_core': { |
| 2105 | 'packages': [ |
| 2106 | { |
| 2107 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2108 | 'version': 'version:1.2.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2109 | }, |
| 2110 | ], |
| 2111 | 'condition': 'checkout_android', |
| 2112 | 'dep_type': 'cipd', |
| 2113 | }, |
| 2114 | |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 2115 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_core': { |
| 2116 | 'packages': [ |
| 2117 | { |
| 2118 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_core', |
| 2119 | 'version': 'version:3.1.0-cr0', |
| 2120 | }, |
| 2121 | ], |
| 2122 | 'condition': 'checkout_android', |
| 2123 | 'dep_type': 'cipd', |
| 2124 | }, |
| 2125 | |
| 2126 | 'src/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource': { |
| 2127 | 'packages': [ |
| 2128 | { |
| 2129 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_espresso_espresso_idling_resource', |
| 2130 | 'version': 'version:3.1.0-cr0', |
| 2131 | }, |
| 2132 | ], |
| 2133 | 'condition': 'checkout_android', |
| 2134 | 'dep_type': 'cipd', |
| 2135 | }, |
| 2136 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2137 | 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 2138 | 'packages': [ |
| 2139 | { |
| 2140 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2141 | 'version': 'version:1.1.1-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2142 | }, |
| 2143 | ], |
| 2144 | 'condition': 'checkout_android', |
| 2145 | 'dep_type': 'cipd', |
| 2146 | }, |
| 2147 | |
| 2148 | 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 2149 | 'packages': [ |
| 2150 | { |
| 2151 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2152 | 'version': 'version:1.2.0-cr0', |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 2153 | }, |
| 2154 | ], |
| 2155 | 'condition': 'checkout_android', |
| 2156 | 'dep_type': 'cipd', |
| 2157 | }, |
| 2158 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2159 | 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 2160 | 'packages': [ |
| 2161 | { |
| 2162 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2163 | 'version': 'version:1.2.0-cr0', |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2164 | }, |
| 2165 | ], |
| 2166 | 'condition': 'checkout_android', |
| 2167 | 'dep_type': 'cipd', |
| 2168 | }, |
| 2169 | |
| 2170 | 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 2171 | 'packages': [ |
| 2172 | { |
| 2173 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
Ben Joyce | 47af1c51 | 2020-02-12 23:07:51 | [diff] [blame] | 2174 | 'version': 'version:1.2.0-cr0', |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2175 | }, |
| 2176 | ], |
| 2177 | 'condition': 'checkout_android', |
| 2178 | 'dep_type': 'cipd', |
| 2179 | }, |
| 2180 | |
Ben Joyce | 6508d42 | 2019-09-21 00:23:48 | [diff] [blame] | 2181 | 'src/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator': { |
| 2182 | 'packages': [ |
| 2183 | { |
| 2184 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator', |
| 2185 | 'version': 'version:2.2.0-cr0', |
| 2186 | }, |
| 2187 | ], |
| 2188 | 'condition': 'checkout_android', |
| 2189 | 'dep_type': 'cipd', |
| 2190 | }, |
| 2191 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2192 | 'src/third_party/android_deps/libs/androidx_transition_transition': { |
| 2193 | 'packages': [ |
| 2194 | { |
| 2195 | 'package': 'chromium/third_party/android_deps/libs/androidx_transition_transition', |
| 2196 | 'version': 'version:1.0.0-rc02-cr0', |
| 2197 | }, |
| 2198 | ], |
| 2199 | 'condition': 'checkout_android', |
| 2200 | 'dep_type': 'cipd', |
| 2201 | }, |
| 2202 | |
| 2203 | 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable': { |
| 2204 | 'packages': [ |
| 2205 | { |
| 2206 | 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable', |
| 2207 | 'version': 'version:1.0.0-cr0', |
| 2208 | }, |
| 2209 | ], |
| 2210 | 'condition': 'checkout_android', |
| 2211 | 'dep_type': 'cipd', |
| 2212 | }, |
| 2213 | |
| 2214 | 'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated': { |
| 2215 | 'packages': [ |
| 2216 | { |
| 2217 | 'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated', |
| 2218 | 'version': 'version:1.0.0-cr0', |
| 2219 | }, |
| 2220 | ], |
| 2221 | 'condition': 'checkout_android', |
| 2222 | 'dep_type': 'cipd', |
| 2223 | }, |
| 2224 | |
| 2225 | 'src/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable': { |
| 2226 | 'packages': [ |
| 2227 | { |
| 2228 | 'package': 'chromium/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable', |
| 2229 | 'version': 'version:1.0.0-cr0', |
| 2230 | }, |
| 2231 | ], |
| 2232 | 'condition': 'checkout_android', |
| 2233 | 'dep_type': 'cipd', |
| 2234 | }, |
| 2235 | |
| 2236 | 'src/third_party/android_deps/libs/androidx_viewpager_viewpager': { |
| 2237 | 'packages': [ |
| 2238 | { |
| 2239 | 'package': 'chromium/third_party/android_deps/libs/androidx_viewpager_viewpager', |
| 2240 | 'version': 'version:1.0.0-cr0', |
| 2241 | }, |
| 2242 | ], |
| 2243 | 'condition': 'checkout_android', |
| 2244 | 'dep_type': 'cipd', |
| 2245 | }, |
| 2246 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2247 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2248 | 'packages': [ |
| 2249 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2250 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2251 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2252 | }, |
| 2253 | ], |
| 2254 | 'condition': 'checkout_android', |
| 2255 | 'dep_type': 'cipd', |
| 2256 | }, |
| 2257 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2258 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2259 | 'packages': [ |
| 2260 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2261 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2262 | 'version': 'version:28.0.0-cr0', |
| 2263 | }, |
| 2264 | ], |
| 2265 | 'condition': 'checkout_android', |
| 2266 | 'dep_type': 'cipd', |
| 2267 | }, |
| 2268 | |
| 2269 | 'src/third_party/android_deps/libs/com_android_support_asynclayoutinflater': { |
| 2270 | 'packages': [ |
| 2271 | { |
| 2272 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_asynclayoutinflater', |
| 2273 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2274 | }, |
| 2275 | ], |
| 2276 | 'condition': 'checkout_android', |
| 2277 | 'dep_type': 'cipd', |
| 2278 | }, |
| 2279 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2280 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2281 | 'packages': [ |
| 2282 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2283 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2284 | 'version': 'version:28.0.0-cr0', |
| 2285 | }, |
| 2286 | ], |
| 2287 | 'condition': 'checkout_android', |
| 2288 | 'dep_type': 'cipd', |
| 2289 | }, |
| 2290 | |
| 2291 | 'src/third_party/android_deps/libs/com_android_support_collections': { |
| 2292 | 'packages': [ |
| 2293 | { |
| 2294 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_collections', |
| 2295 | 'version': 'version:28.0.0-cr0', |
| 2296 | }, |
| 2297 | ], |
| 2298 | 'condition': 'checkout_android', |
| 2299 | 'dep_type': 'cipd', |
| 2300 | }, |
| 2301 | |
| 2302 | 'src/third_party/android_deps/libs/com_android_support_coordinatorlayout': { |
| 2303 | 'packages': [ |
| 2304 | { |
| 2305 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_coordinatorlayout', |
| 2306 | 'version': 'version:28.0.0-cr0', |
| 2307 | }, |
| 2308 | ], |
| 2309 | 'condition': 'checkout_android', |
| 2310 | 'dep_type': 'cipd', |
| 2311 | }, |
| 2312 | |
| 2313 | 'src/third_party/android_deps/libs/com_android_support_cursoradapter': { |
| 2314 | 'packages': [ |
| 2315 | { |
| 2316 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cursoradapter', |
| 2317 | 'version': 'version:28.0.0-cr0', |
| 2318 | }, |
| 2319 | ], |
| 2320 | 'condition': 'checkout_android', |
| 2321 | 'dep_type': 'cipd', |
| 2322 | }, |
| 2323 | |
| 2324 | 'src/third_party/android_deps/libs/com_android_support_customview': { |
| 2325 | 'packages': [ |
| 2326 | { |
| 2327 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_customview', |
| 2328 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2329 | }, |
| 2330 | ], |
| 2331 | 'condition': 'checkout_android', |
| 2332 | 'dep_type': 'cipd', |
| 2333 | }, |
| 2334 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2335 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2336 | 'packages': [ |
| 2337 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2338 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2339 | 'version': 'version:28.0.0-cr0', |
| 2340 | }, |
| 2341 | ], |
| 2342 | 'condition': 'checkout_android', |
| 2343 | 'dep_type': 'cipd', |
| 2344 | }, |
| 2345 | |
| 2346 | 'src/third_party/android_deps/libs/com_android_support_documentfile': { |
| 2347 | 'packages': [ |
| 2348 | { |
| 2349 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_documentfile', |
| 2350 | 'version': 'version:28.0.0-cr0', |
| 2351 | }, |
| 2352 | ], |
| 2353 | 'condition': 'checkout_android', |
| 2354 | 'dep_type': 'cipd', |
| 2355 | }, |
| 2356 | |
| 2357 | 'src/third_party/android_deps/libs/com_android_support_drawerlayout': { |
| 2358 | 'packages': [ |
| 2359 | { |
| 2360 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_drawerlayout', |
| 2361 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2362 | }, |
| 2363 | ], |
| 2364 | 'condition': 'checkout_android', |
| 2365 | 'dep_type': 'cipd', |
| 2366 | }, |
| 2367 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2368 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2369 | 'packages': [ |
| 2370 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2371 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2372 | 'version': 'version:28.0.0-cr0', |
| 2373 | }, |
| 2374 | ], |
| 2375 | 'condition': 'checkout_android', |
| 2376 | 'dep_type': 'cipd', |
| 2377 | }, |
| 2378 | |
| 2379 | 'src/third_party/android_deps/libs/com_android_support_interpolator': { |
| 2380 | 'packages': [ |
| 2381 | { |
| 2382 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_interpolator', |
| 2383 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2384 | }, |
| 2385 | ], |
| 2386 | 'condition': 'checkout_android', |
| 2387 | 'dep_type': 'cipd', |
| 2388 | }, |
| 2389 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2390 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2391 | 'packages': [ |
| 2392 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2393 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2394 | 'version': 'version:28.0.0-cr0', |
| 2395 | }, |
| 2396 | ], |
| 2397 | 'condition': 'checkout_android', |
| 2398 | 'dep_type': 'cipd', |
| 2399 | }, |
| 2400 | |
| 2401 | 'src/third_party/android_deps/libs/com_android_support_loader': { |
| 2402 | 'packages': [ |
| 2403 | { |
| 2404 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_loader', |
| 2405 | 'version': 'version:28.0.0-cr0', |
| 2406 | }, |
| 2407 | ], |
| 2408 | 'condition': 'checkout_android', |
| 2409 | 'dep_type': 'cipd', |
| 2410 | }, |
| 2411 | |
| 2412 | 'src/third_party/android_deps/libs/com_android_support_localbroadcastmanager': { |
| 2413 | 'packages': [ |
| 2414 | { |
| 2415 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_localbroadcastmanager', |
| 2416 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2417 | }, |
| 2418 | ], |
| 2419 | 'condition': 'checkout_android', |
| 2420 | 'dep_type': 'cipd', |
| 2421 | }, |
| 2422 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2423 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2424 | 'packages': [ |
| 2425 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2426 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2427 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2428 | }, |
| 2429 | ], |
| 2430 | 'condition': 'checkout_android', |
| 2431 | 'dep_type': 'cipd', |
| 2432 | }, |
| 2433 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2434 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2435 | 'packages': [ |
| 2436 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2437 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 2438 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2439 | }, |
| 2440 | ], |
| 2441 | 'condition': 'checkout_android', |
| 2442 | 'dep_type': 'cipd', |
| 2443 | }, |
| 2444 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2445 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2446 | 'packages': [ |
| 2447 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2448 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2449 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2450 | }, |
| 2451 | ], |
| 2452 | 'condition': 'checkout_android', |
| 2453 | 'dep_type': 'cipd', |
| 2454 | }, |
| 2455 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2456 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2457 | 'packages': [ |
| 2458 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2459 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2460 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2461 | }, |
| 2462 | ], |
| 2463 | 'condition': 'checkout_android', |
| 2464 | 'dep_type': 'cipd', |
| 2465 | }, |
| 2466 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2467 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2468 | 'packages': [ |
| 2469 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2470 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2471 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2472 | }, |
| 2473 | ], |
| 2474 | 'condition': 'checkout_android', |
| 2475 | 'dep_type': 'cipd', |
| 2476 | }, |
| 2477 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2478 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2479 | 'packages': [ |
| 2480 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2481 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2482 | 'version': 'version:28.0.0-cr0', |
| 2483 | }, |
| 2484 | ], |
| 2485 | 'condition': 'checkout_android', |
| 2486 | 'dep_type': 'cipd', |
| 2487 | }, |
| 2488 | |
| 2489 | 'src/third_party/android_deps/libs/com_android_support_print': { |
| 2490 | 'packages': [ |
| 2491 | { |
| 2492 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_print', |
| 2493 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2494 | }, |
| 2495 | ], |
| 2496 | 'condition': 'checkout_android', |
| 2497 | 'dep_type': 'cipd', |
| 2498 | }, |
| 2499 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2500 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2501 | 'packages': [ |
| 2502 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2503 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2504 | 'version': 'version:28.0.0-cr0', |
| 2505 | }, |
| 2506 | ], |
| 2507 | 'condition': 'checkout_android', |
| 2508 | 'dep_type': 'cipd', |
| 2509 | }, |
| 2510 | |
| 2511 | 'src/third_party/android_deps/libs/com_android_support_slidingpanelayout': { |
| 2512 | 'packages': [ |
| 2513 | { |
| 2514 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_slidingpanelayout', |
| 2515 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2516 | }, |
| 2517 | ], |
| 2518 | 'condition': 'checkout_android', |
| 2519 | 'dep_type': 'cipd', |
| 2520 | }, |
| 2521 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2522 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2523 | 'packages': [ |
| 2524 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2525 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2526 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2527 | }, |
| 2528 | ], |
| 2529 | 'condition': 'checkout_android', |
| 2530 | 'dep_type': 'cipd', |
| 2531 | }, |
| 2532 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2533 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2534 | 'packages': [ |
| 2535 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2536 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2537 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2538 | }, |
| 2539 | ], |
| 2540 | 'condition': 'checkout_android', |
| 2541 | 'dep_type': 'cipd', |
| 2542 | }, |
| 2543 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2544 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2545 | 'packages': [ |
| 2546 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2547 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2548 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2549 | }, |
| 2550 | ], |
| 2551 | 'condition': 'checkout_android', |
| 2552 | 'dep_type': 'cipd', |
| 2553 | }, |
| 2554 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2555 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2556 | 'packages': [ |
| 2557 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2558 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2559 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2560 | }, |
| 2561 | ], |
| 2562 | 'condition': 'checkout_android', |
| 2563 | 'dep_type': 'cipd', |
| 2564 | }, |
| 2565 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2566 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2567 | 'packages': [ |
| 2568 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2569 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2570 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2571 | }, |
| 2572 | ], |
| 2573 | 'condition': 'checkout_android', |
| 2574 | 'dep_type': 'cipd', |
| 2575 | }, |
| 2576 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2577 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2578 | 'packages': [ |
| 2579 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2580 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2581 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2582 | }, |
| 2583 | ], |
| 2584 | 'condition': 'checkout_android', |
| 2585 | 'dep_type': 'cipd', |
| 2586 | }, |
| 2587 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2588 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2589 | 'packages': [ |
| 2590 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2591 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2592 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2593 | }, |
| 2594 | ], |
| 2595 | 'condition': 'checkout_android', |
| 2596 | 'dep_type': 'cipd', |
| 2597 | }, |
| 2598 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2599 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2600 | 'packages': [ |
| 2601 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2602 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2603 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2604 | }, |
| 2605 | ], |
| 2606 | 'condition': 'checkout_android', |
| 2607 | 'dep_type': 'cipd', |
| 2608 | }, |
| 2609 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2610 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2611 | 'packages': [ |
| 2612 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2613 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2614 | 'version': 'version:28.0.0-cr0', |
| 2615 | }, |
| 2616 | ], |
| 2617 | 'condition': 'checkout_android', |
| 2618 | 'dep_type': 'cipd', |
| 2619 | }, |
| 2620 | |
| 2621 | 'src/third_party/android_deps/libs/com_android_support_swiperefreshlayout': { |
| 2622 | 'packages': [ |
| 2623 | { |
| 2624 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_swiperefreshlayout', |
| 2625 | 'version': 'version:28.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2626 | }, |
| 2627 | ], |
| 2628 | 'condition': 'checkout_android', |
| 2629 | 'dep_type': 'cipd', |
| 2630 | }, |
| 2631 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2632 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2633 | 'packages': [ |
| 2634 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2635 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
Ben Joyce | e779ce6 | 2019-08-15 22:57:37 | [diff] [blame] | 2636 | 'version': 'version:28.0.0-cr0', |
| 2637 | }, |
| 2638 | ], |
| 2639 | 'condition': 'checkout_android', |
| 2640 | 'dep_type': 'cipd', |
| 2641 | }, |
| 2642 | |
| 2643 | 'src/third_party/android_deps/libs/com_android_support_versionedparcelable': { |
| 2644 | 'packages': [ |
| 2645 | { |
| 2646 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_versionedparcelable', |
| 2647 | 'version': 'version:28.0.0-cr0', |
| 2648 | }, |
| 2649 | ], |
| 2650 | 'condition': 'checkout_android', |
| 2651 | 'dep_type': 'cipd', |
| 2652 | }, |
| 2653 | |
| 2654 | 'src/third_party/android_deps/libs/com_android_support_viewpager': { |
| 2655 | 'packages': [ |
| 2656 | { |
| 2657 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_viewpager', |
| 2658 | 'version': 'version:28.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2659 | }, |
| 2660 | ], |
| 2661 | 'condition': 'checkout_android', |
| 2662 | 'dep_type': 'cipd', |
| 2663 | }, |
| 2664 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 2665 | 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core': { |
| 2666 | 'packages': [ |
| 2667 | { |
| 2668 | 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core', |
| 2669 | 'version': 'version:1.0.0-beta08-cr0', |
| 2670 | }, |
| 2671 | ], |
| 2672 | 'condition': 'checkout_android', |
| 2673 | 'dep_type': 'cipd', |
| 2674 | }, |
| 2675 | |
| 2676 | 'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor': { |
| 2677 | 'packages': [ |
| 2678 | { |
| 2679 | 'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor', |
| 2680 | 'version': 'version:1.0.0-beta08-cr0', |
| 2681 | }, |
| 2682 | ], |
| 2683 | 'condition': 'checkout_android', |
| 2684 | 'dep_type': 'cipd', |
| 2685 | }, |
| 2686 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2687 | 'src/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine': { |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2688 | 'packages': [ |
| 2689 | { |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2690 | 'package': 'chromium/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine', |
| 2691 | 'version': 'version:2.7.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2692 | }, |
| 2693 | ], |
| 2694 | 'condition': 'checkout_android', |
| 2695 | 'dep_type': 'cipd', |
| 2696 | }, |
| 2697 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2698 | 'src/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms': { |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2699 | 'packages': [ |
| 2700 | { |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 2701 | 'package': 'chromium/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms', |
| 2702 | 'version': 'version:1.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2703 | }, |
| 2704 | ], |
| 2705 | 'condition': 'checkout_android', |
| 2706 | 'dep_type': 'cipd', |
| 2707 | }, |
| 2708 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2709 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 2710 | 'packages': [ |
| 2711 | { |
| 2712 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2713 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2714 | }, |
| 2715 | ], |
| 2716 | 'condition': 'checkout_android', |
| 2717 | 'dep_type': 'cipd', |
| 2718 | }, |
| 2719 | |
| 2720 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 2721 | 'packages': [ |
| 2722 | { |
| 2723 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2724 | 'version': 'version:17.1.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2725 | }, |
| 2726 | ], |
| 2727 | 'condition': 'checkout_android', |
| 2728 | 'dep_type': 'cipd', |
| 2729 | }, |
| 2730 | |
| 2731 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 2732 | 'packages': [ |
| 2733 | { |
| 2734 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2735 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2736 | }, |
| 2737 | ], |
| 2738 | 'condition': 'checkout_android', |
| 2739 | 'dep_type': 'cipd', |
| 2740 | }, |
| 2741 | |
| 2742 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 2743 | 'packages': [ |
| 2744 | { |
| 2745 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_base', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2746 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2747 | }, |
| 2748 | ], |
| 2749 | 'condition': 'checkout_android', |
| 2750 | 'dep_type': 'cipd', |
| 2751 | }, |
| 2752 | |
| 2753 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 2754 | 'packages': [ |
| 2755 | { |
| 2756 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_basement', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2757 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2758 | }, |
| 2759 | ], |
| 2760 | 'condition': 'checkout_android', |
| 2761 | 'dep_type': 'cipd', |
| 2762 | }, |
| 2763 | |
| 2764 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 2765 | 'packages': [ |
| 2766 | { |
| 2767 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2768 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2769 | }, |
| 2770 | ], |
| 2771 | 'condition': 'checkout_android', |
| 2772 | 'dep_type': 'cipd', |
| 2773 | }, |
| 2774 | |
| 2775 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 2776 | 'packages': [ |
| 2777 | { |
| 2778 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2779 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2780 | }, |
| 2781 | ], |
| 2782 | 'condition': 'checkout_android', |
| 2783 | 'dep_type': 'cipd', |
| 2784 | }, |
| 2785 | |
| 2786 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 2787 | 'packages': [ |
| 2788 | { |
| 2789 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2790 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2791 | }, |
| 2792 | ], |
| 2793 | 'condition': 'checkout_android', |
| 2794 | 'dep_type': 'cipd', |
| 2795 | }, |
| 2796 | |
| 2797 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 2798 | 'packages': [ |
| 2799 | { |
| 2800 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_fido', |
Sam Maier | cc58f08 | 2020-03-11 19:09:33 | [diff] [blame] | 2801 | 'version': 'version:18.1.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2802 | }, |
| 2803 | ], |
| 2804 | 'condition': 'checkout_android', |
| 2805 | 'dep_type': 'cipd', |
| 2806 | }, |
| 2807 | |
| 2808 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 2809 | 'packages': [ |
| 2810 | { |
| 2811 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2812 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2813 | }, |
| 2814 | ], |
| 2815 | 'condition': 'checkout_android', |
| 2816 | 'dep_type': 'cipd', |
| 2817 | }, |
| 2818 | |
| 2819 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 2820 | 'packages': [ |
| 2821 | { |
| 2822 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_gcm', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2823 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2824 | }, |
| 2825 | ], |
| 2826 | 'condition': 'checkout_android', |
| 2827 | 'dep_type': 'cipd', |
| 2828 | }, |
| 2829 | |
| 2830 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 2831 | 'packages': [ |
| 2832 | { |
| 2833 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_iid', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2834 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2835 | }, |
| 2836 | ], |
| 2837 | 'condition': 'checkout_android', |
| 2838 | 'dep_type': 'cipd', |
| 2839 | }, |
| 2840 | |
| 2841 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 2842 | 'packages': [ |
| 2843 | { |
| 2844 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2845 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2846 | }, |
| 2847 | ], |
| 2848 | 'condition': 'checkout_android', |
| 2849 | 'dep_type': 'cipd', |
| 2850 | }, |
| 2851 | |
| 2852 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 2853 | 'packages': [ |
| 2854 | { |
| 2855 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_location', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2856 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2857 | }, |
| 2858 | ], |
| 2859 | 'condition': 'checkout_android', |
| 2860 | 'dep_type': 'cipd', |
| 2861 | }, |
| 2862 | |
| 2863 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 2864 | 'packages': [ |
| 2865 | { |
| 2866 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2867 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2868 | }, |
| 2869 | ], |
| 2870 | 'condition': 'checkout_android', |
| 2871 | 'dep_type': 'cipd', |
| 2872 | }, |
| 2873 | |
| 2874 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 2875 | 'packages': [ |
| 2876 | { |
| 2877 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2878 | 'version': 'version:17.0.0-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 2879 | }, |
| 2880 | ], |
| 2881 | 'condition': 'checkout_android', |
| 2882 | 'dep_type': 'cipd', |
| 2883 | }, |
| 2884 | |
| 2885 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 2886 | 'packages': [ |
| 2887 | { |
| 2888 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2889 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2890 | }, |
| 2891 | ], |
| 2892 | 'condition': 'checkout_android', |
| 2893 | 'dep_type': 'cipd', |
| 2894 | }, |
| 2895 | |
| 2896 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 2897 | 'packages': [ |
| 2898 | { |
| 2899 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_tasks', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2900 | 'version': 'version:17.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2901 | }, |
| 2902 | ], |
| 2903 | 'condition': 'checkout_android', |
| 2904 | 'dep_type': 'cipd', |
| 2905 | }, |
| 2906 | |
| 2907 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 2908 | 'packages': [ |
| 2909 | { |
| 2910 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2911 | 'version': 'version:18.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2912 | }, |
| 2913 | ], |
| 2914 | 'condition': 'checkout_android', |
| 2915 | 'dep_type': 'cipd', |
| 2916 | }, |
| 2917 | |
| 2918 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 2919 | 'packages': [ |
| 2920 | { |
| 2921 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common', |
Sam Maier | 8207845 | 2020-03-03 11:22:44 | [diff] [blame] | 2922 | 'version': 'version:18.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2923 | }, |
| 2924 | ], |
| 2925 | 'condition': 'checkout_android', |
| 2926 | 'dep_type': 'cipd', |
| 2927 | }, |
| 2928 | |
Ben Joyce | 5274e3d | 2019-09-03 19:19:04 | [diff] [blame] | 2929 | 'src/third_party/android_deps/libs/com_google_android_material_material': { |
| 2930 | 'packages': [ |
| 2931 | { |
| 2932 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_material_material', |
| 2933 | 'version': 'version:1.0.0-rc02-cr0', |
| 2934 | }, |
| 2935 | ], |
| 2936 | 'condition': 'checkout_android', |
| 2937 | 'dep_type': 'cipd', |
| 2938 | }, |
| 2939 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2940 | 'src/third_party/android_deps/libs/com_google_auto_auto_common': { |
| 2941 | 'packages': [ |
| 2942 | { |
| 2943 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_auto_common', |
| 2944 | 'version': 'version:0.10-cr0', |
| 2945 | }, |
| 2946 | ], |
| 2947 | 'condition': 'checkout_android', |
| 2948 | 'dep_type': 'cipd', |
| 2949 | }, |
| 2950 | |
| 2951 | 'src/third_party/android_deps/libs/com_google_auto_service_auto_service': { |
| 2952 | 'packages': [ |
| 2953 | { |
| 2954 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service', |
| 2955 | 'version': 'version:1.0-rc6-cr0', |
| 2956 | }, |
| 2957 | ], |
| 2958 | 'condition': 'checkout_android', |
| 2959 | 'dep_type': 'cipd', |
| 2960 | }, |
| 2961 | |
| 2962 | 'src/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations': { |
| 2963 | 'packages': [ |
| 2964 | { |
| 2965 | 'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations', |
| 2966 | 'version': 'version:1.0-rc6-cr0', |
| 2967 | }, |
| 2968 | ], |
| 2969 | 'condition': 'checkout_android', |
| 2970 | 'dep_type': 'cipd', |
| 2971 | }, |
| 2972 | |
| 2973 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jFormatString': { |
| 2974 | 'packages': [ |
| 2975 | { |
| 2976 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jformatstring', |
| 2977 | 'version': 'version:3.0.0-cr0', |
| 2978 | }, |
| 2979 | ], |
| 2980 | 'condition': 'checkout_android', |
| 2981 | 'dep_type': 'cipd', |
| 2982 | }, |
| 2983 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2984 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 2985 | 'packages': [ |
| 2986 | { |
| 2987 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 2988 | 'version': 'version:3.0.2-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2989 | }, |
| 2990 | ], |
| 2991 | 'condition': 'checkout_android', |
| 2992 | 'dep_type': 'cipd', |
| 2993 | }, |
| 2994 | |
Andrew Grieve | ec7ec421 | 2020-02-03 22:15:50 | [diff] [blame] | 2995 | 'src/third_party/android_deps/libs/com_google_code_gson_gson': { |
| 2996 | 'packages': [ |
| 2997 | { |
| 2998 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_gson_gson', |
| 2999 | 'version': 'version:2.8.0-cr0', |
| 3000 | }, |
| 3001 | ], |
| 3002 | 'condition': 'checkout_android', |
| 3003 | 'dep_type': 'cipd', |
| 3004 | }, |
| 3005 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3006 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 3007 | 'packages': [ |
| 3008 | { |
| 3009 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3010 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3011 | }, |
| 3012 | ], |
| 3013 | 'condition': 'checkout_android', |
| 3014 | 'dep_type': 'cipd', |
| 3015 | }, |
| 3016 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3017 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 3018 | 'packages': [ |
| 3019 | { |
| 3020 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3021 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3022 | }, |
| 3023 | ], |
| 3024 | 'condition': 'checkout_android', |
| 3025 | 'dep_type': 'cipd', |
| 3026 | }, |
| 3027 | |
| 3028 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 3029 | 'packages': [ |
| 3030 | { |
| 3031 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3032 | 'version': 'version:2.26-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3033 | }, |
| 3034 | ], |
| 3035 | 'condition': 'checkout_android', |
| 3036 | 'dep_type': 'cipd', |
| 3037 | }, |
| 3038 | |
| 3039 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3040 | 'packages': [ |
| 3041 | { |
| 3042 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3043 | 'version': 'version:2.26-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3044 | }, |
| 3045 | ], |
| 3046 | 'condition': 'checkout_android', |
| 3047 | 'dep_type': 'cipd', |
| 3048 | }, |
| 3049 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3050 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation': { |
| 3051 | 'packages': [ |
| 3052 | { |
| 3053 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3054 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3055 | }, |
| 3056 | ], |
| 3057 | 'condition': 'checkout_android', |
| 3058 | 'dep_type': 'cipd', |
| 3059 | }, |
| 3060 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3061 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 3062 | 'packages': [ |
| 3063 | { |
| 3064 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3065 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3066 | }, |
| 3067 | ], |
| 3068 | 'condition': 'checkout_android', |
| 3069 | 'dep_type': 'cipd', |
| 3070 | }, |
| 3071 | |
| 3072 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api': { |
| 3073 | 'packages': [ |
| 3074 | { |
| 3075 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3076 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3077 | }, |
| 3078 | ], |
| 3079 | 'condition': 'checkout_android', |
| 3080 | 'dep_type': 'cipd', |
| 3081 | }, |
| 3082 | |
| 3083 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_core': { |
| 3084 | 'packages': [ |
| 3085 | { |
| 3086 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_core', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3087 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3088 | }, |
| 3089 | ], |
| 3090 | 'condition': 'checkout_android', |
| 3091 | 'dep_type': 'cipd', |
| 3092 | }, |
| 3093 | |
| 3094 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations': { |
| 3095 | 'packages': [ |
| 3096 | { |
| 3097 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3098 | 'version': 'version:2.3.4-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3099 | }, |
| 3100 | ], |
| 3101 | 'condition': 'checkout_android', |
| 3102 | 'dep_type': 'cipd', |
| 3103 | }, |
| 3104 | |
| 3105 | 'src/third_party/android_deps/libs/com_google_errorprone_javac': { |
| 3106 | 'packages': [ |
| 3107 | { |
| 3108 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac', |
| 3109 | 'version': 'version:9+181-r4173-1-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3110 | }, |
| 3111 | ], |
| 3112 | 'condition': 'checkout_android', |
| 3113 | 'dep_type': 'cipd', |
| 3114 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3115 | |
| 3116 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 3117 | 'packages': [ |
| 3118 | { |
| 3119 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 3120 | 'version': 'version:9-dev-r4023-3-cr0', |
| 3121 | }, |
| 3122 | ], |
| 3123 | 'condition': 'checkout_android', |
| 3124 | 'dep_type': 'cipd', |
| 3125 | }, |
| 3126 | |
| 3127 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 3128 | 'packages': [ |
| 3129 | { |
| 3130 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 3131 | 'version': 'version:1.5-cr0', |
| 3132 | }, |
| 3133 | ], |
| 3134 | 'condition': 'checkout_android', |
| 3135 | 'dep_type': 'cipd', |
| 3136 | }, |
| 3137 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3138 | 'src/third_party/android_deps/libs/com_google_guava_failureaccess': { |
| 3139 | 'packages': [ |
| 3140 | { |
| 3141 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_failureaccess', |
| 3142 | 'version': 'version:1.0.1-cr0', |
| 3143 | }, |
| 3144 | ], |
| 3145 | 'condition': 'checkout_android', |
| 3146 | 'dep_type': 'cipd', |
| 3147 | }, |
| 3148 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3149 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 3150 | 'packages': [ |
| 3151 | { |
| 3152 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3153 | 'version': 'version:27.1-jre-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3154 | }, |
| 3155 | ], |
| 3156 | 'condition': 'checkout_android', |
| 3157 | 'dep_type': 'cipd', |
| 3158 | }, |
| 3159 | |
Ben Joyce | bd0d9e5 | 2019-11-12 09:01:50 | [diff] [blame] | 3160 | 'src/third_party/android_deps/libs/com_google_guava_listenablefuture': { |
| 3161 | 'packages': [ |
| 3162 | { |
| 3163 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_listenablefuture', |
| 3164 | 'version': 'version:1.0-cr0', |
| 3165 | }, |
| 3166 | ], |
| 3167 | 'condition': 'checkout_android', |
| 3168 | 'dep_type': 'cipd', |
| 3169 | }, |
| 3170 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3171 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 3172 | 'packages': [ |
| 3173 | { |
| 3174 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 3175 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3176 | }, |
| 3177 | ], |
| 3178 | 'condition': 'checkout_android', |
| 3179 | 'dep_type': 'cipd', |
| 3180 | }, |
| 3181 | |
Andrew Grieve | bddebf7 | 2019-11-25 17:59:10 | [diff] [blame] | 3182 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_java': { |
| 3183 | 'packages': [ |
| 3184 | { |
| 3185 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_java', |
| 3186 | 'version': 'version:3.4.0-cr0', |
| 3187 | }, |
| 3188 | ], |
| 3189 | 'condition': 'checkout_android', |
| 3190 | 'dep_type': 'cipd', |
| 3191 | }, |
| 3192 | |
Mohamed Heikal | 0221b0c | 2020-03-06 02:48:50 | [diff] [blame] | 3193 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_javalite': { |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 3194 | 'packages': [ |
| 3195 | { |
Mohamed Heikal | 0221b0c | 2020-03-06 02:48:50 | [diff] [blame] | 3196 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_javalite', |
| 3197 | 'version': 'version:3.11.4-cr0', |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 3198 | }, |
| 3199 | ], |
| 3200 | 'condition': 'checkout_android', |
| 3201 | 'dep_type': 'cipd', |
| 3202 | }, |
| 3203 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3204 | 'src/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils': { |
| 3205 | 'packages': [ |
| 3206 | { |
| 3207 | 'package': 'chromium/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils', |
| 3208 | 'version': 'version:1.3.0-cr0', |
| 3209 | }, |
| 3210 | ], |
| 3211 | 'condition': 'checkout_android', |
| 3212 | 'dep_type': 'cipd', |
| 3213 | }, |
| 3214 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3215 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 3216 | 'packages': [ |
| 3217 | { |
| 3218 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3219 | 'version': 'version:1.11.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3220 | }, |
| 3221 | ], |
| 3222 | 'condition': 'checkout_android', |
| 3223 | 'dep_type': 'cipd', |
| 3224 | }, |
| 3225 | |
Ben Joyce | 5ce169f0 | 2020-03-20 13:07:12 | [diff] [blame] | 3226 | 'src/third_party/android_deps/libs/com_squareup_javawriter': { |
| 3227 | 'packages': [ |
| 3228 | { |
| 3229 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javawriter', |
| 3230 | 'version': 'version:2.1.1-cr0', |
| 3231 | }, |
| 3232 | ], |
| 3233 | 'condition': 'checkout_android', |
| 3234 | 'dep_type': 'cipd', |
| 3235 | }, |
| 3236 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3237 | 'src/third_party/android_deps/libs/commons_cli_commons_cli': { |
| 3238 | 'packages': [ |
| 3239 | { |
| 3240 | 'package': 'chromium/third_party/android_deps/libs/commons_cli_commons_cli', |
| 3241 | 'version': 'version:1.3.1-cr0', |
| 3242 | }, |
| 3243 | ], |
| 3244 | 'condition': 'checkout_android', |
| 3245 | 'dep_type': 'cipd', |
| 3246 | }, |
| 3247 | |
Ben Joyce | 18c0132 | 2020-01-03 23:07:59 | [diff] [blame] | 3248 | 'src/third_party/android_deps/libs/javax_annotation_javax_annotation_api': { |
| 3249 | 'packages': [ |
| 3250 | { |
| 3251 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_javax_annotation_api', |
| 3252 | 'version': 'version:1.3.2-cr0', |
| 3253 | }, |
| 3254 | ], |
| 3255 | 'condition': 'checkout_android', |
| 3256 | 'dep_type': 'cipd', |
| 3257 | }, |
| 3258 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3259 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 3260 | 'packages': [ |
| 3261 | { |
| 3262 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 3263 | 'version': 'version:1.0-cr0', |
| 3264 | }, |
| 3265 | ], |
| 3266 | 'condition': 'checkout_android', |
| 3267 | 'dep_type': 'cipd', |
| 3268 | }, |
| 3269 | |
| 3270 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3271 | 'packages': [ |
| 3272 | { |
| 3273 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 3274 | 'version': 'version:1-cr0', |
| 3275 | }, |
| 3276 | ], |
| 3277 | 'condition': 'checkout_android', |
| 3278 | 'dep_type': 'cipd', |
| 3279 | }, |
| 3280 | |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3281 | 'src/third_party/android_deps/libs/net_ltgt_gradle_incap_incap': { |
| 3282 | 'packages': [ |
| 3283 | { |
| 3284 | 'package': 'chromium/third_party/android_deps/libs/net_ltgt_gradle_incap_incap', |
| 3285 | 'version': 'version:0.2-cr0', |
| 3286 | }, |
| 3287 | ], |
| 3288 | 'condition': 'checkout_android', |
| 3289 | 'dep_type': 'cipd', |
| 3290 | }, |
| 3291 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 3292 | 'src/third_party/android_deps/libs/net_sf_kxml_kxml2': { |
| 3293 | 'packages': [ |
| 3294 | { |
| 3295 | 'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2', |
| 3296 | 'version': 'version:2.3.0-cr0', |
| 3297 | }, |
| 3298 | ], |
| 3299 | 'condition': 'checkout_android', |
| 3300 | 'dep_type': 'cipd', |
| 3301 | }, |
| 3302 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3303 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 3304 | 'packages': [ |
| 3305 | { |
| 3306 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3307 | 'version': 'version:2.5.3-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3308 | }, |
| 3309 | ], |
| 3310 | 'condition': 'checkout_android', |
| 3311 | 'dep_type': 'cipd', |
| 3312 | }, |
| 3313 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3314 | 'src/third_party/android_deps/libs/org_checkerframework_checker_qual': { |
| 3315 | 'packages': [ |
| 3316 | { |
| 3317 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_qual', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3318 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3319 | }, |
| 3320 | ], |
| 3321 | 'condition': 'checkout_android', |
| 3322 | 'dep_type': 'cipd', |
| 3323 | }, |
| 3324 | |
| 3325 | 'src/third_party/android_deps/libs/org_checkerframework_dataflow': { |
| 3326 | 'packages': [ |
| 3327 | { |
| 3328 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_dataflow', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3329 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3330 | }, |
| 3331 | ], |
| 3332 | 'condition': 'checkout_android', |
| 3333 | 'dep_type': 'cipd', |
| 3334 | }, |
| 3335 | |
| 3336 | 'src/third_party/android_deps/libs/org_checkerframework_javacutil': { |
| 3337 | 'packages': [ |
| 3338 | { |
| 3339 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_javacutil', |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3340 | 'version': 'version:3.0.0-cr0', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3341 | }, |
| 3342 | ], |
| 3343 | 'condition': 'checkout_android', |
| 3344 | 'dep_type': 'cipd', |
| 3345 | }, |
| 3346 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3347 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 3348 | 'packages': [ |
| 3349 | { |
| 3350 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3351 | 'version': 'version:1.17-cr0', |
| 3352 | }, |
| 3353 | ], |
| 3354 | 'condition': 'checkout_android', |
| 3355 | 'dep_type': 'cipd', |
| 3356 | }, |
| 3357 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3358 | 'src/third_party/android_deps/libs/org_jdom_jdom2': { |
| 3359 | 'packages': [ |
| 3360 | { |
| 3361 | 'package': 'chromium/third_party/android_deps/libs/org_jdom_jdom2', |
| 3362 | 'version': 'version:2.0.6-cr0', |
| 3363 | }, |
| 3364 | ], |
| 3365 | 'condition': 'checkout_android', |
| 3366 | 'dep_type': 'cipd', |
| 3367 | }, |
| 3368 | |
Andrew Grieve | 177c82f | 2020-02-03 19:35:17 | [diff] [blame] | 3369 | 'src/third_party/android_deps/libs/org_jetbrains_annotations': { |
| 3370 | 'packages': [ |
| 3371 | { |
| 3372 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_annotations', |
| 3373 | 'version': 'version:13.0-cr0', |
| 3374 | }, |
| 3375 | ], |
| 3376 | 'condition': 'checkout_android', |
| 3377 | 'dep_type': 'cipd', |
| 3378 | }, |
| 3379 | |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3380 | 'src/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib': { |
| 3381 | 'packages': [ |
| 3382 | { |
| 3383 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3384 | 'version': 'version:1.3.50-cr0', |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3385 | }, |
| 3386 | ], |
| 3387 | 'condition': 'checkout_android', |
| 3388 | 'dep_type': 'cipd', |
| 3389 | }, |
| 3390 | |
| 3391 | 'src/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common': { |
| 3392 | 'packages': [ |
| 3393 | { |
| 3394 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common', |
Peter Wen | 414bfbc | 2020-02-19 20:02:00 | [diff] [blame] | 3395 | 'version': 'version:1.3.50-cr0', |
| 3396 | }, |
| 3397 | ], |
| 3398 | 'condition': 'checkout_android', |
| 3399 | 'dep_type': 'cipd', |
| 3400 | }, |
| 3401 | |
| 3402 | 'src/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm': { |
| 3403 | 'packages': [ |
| 3404 | { |
| 3405 | 'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm', |
| 3406 | 'version': 'version:0.1.0-cr0', |
Ben Joyce | b1d4e5d | 2020-01-22 23:45:17 | [diff] [blame] | 3407 | }, |
| 3408 | ], |
| 3409 | 'condition': 'checkout_android', |
| 3410 | 'dep_type': 'cipd', |
| 3411 | }, |
| 3412 | |
Andrew Grieve | 177c82f | 2020-02-03 19:35:17 | [diff] [blame] | 3413 | 'src/third_party/android_deps/libs/org_ow2_asm_asm': { |
| 3414 | 'packages': [ |
| 3415 | { |
| 3416 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm', |
| 3417 | 'version': 'version:7.0-cr0', |
| 3418 | }, |
| 3419 | ], |
| 3420 | 'condition': 'checkout_android', |
| 3421 | 'dep_type': 'cipd', |
| 3422 | }, |
| 3423 | |
| 3424 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_analysis': { |
| 3425 | 'packages': [ |
| 3426 | { |
| 3427 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_analysis', |
| 3428 | 'version': 'version:7.0-cr0', |
| 3429 | }, |
| 3430 | ], |
| 3431 | 'condition': 'checkout_android', |
| 3432 | 'dep_type': 'cipd', |
| 3433 | }, |
| 3434 | |
| 3435 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_commons': { |
| 3436 | 'packages': [ |
| 3437 | { |
| 3438 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_commons', |
| 3439 | 'version': 'version:7.0-cr0', |
| 3440 | }, |
| 3441 | ], |
| 3442 | 'condition': 'checkout_android', |
| 3443 | 'dep_type': 'cipd', |
| 3444 | }, |
| 3445 | |
| 3446 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_tree': { |
| 3447 | 'packages': [ |
| 3448 | { |
| 3449 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_tree', |
| 3450 | 'version': 'version:7.0-cr0', |
| 3451 | }, |
| 3452 | ], |
| 3453 | 'condition': 'checkout_android', |
| 3454 | 'dep_type': 'cipd', |
| 3455 | }, |
| 3456 | |
| 3457 | 'src/third_party/android_deps/libs/org_ow2_asm_asm_util': { |
| 3458 | 'packages': [ |
| 3459 | { |
| 3460 | 'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_util', |
| 3461 | 'version': 'version:7.0-cr0', |
| 3462 | }, |
| 3463 | ], |
| 3464 | 'condition': 'checkout_android', |
| 3465 | 'dep_type': 'cipd', |
| 3466 | }, |
| 3467 | |
Andrew Grieve | 8b5b046 | 2019-11-13 21:07:36 | [diff] [blame] | 3468 | 'src/third_party/android_deps/libs/org_pcollections_pcollections': { |
| 3469 | 'packages': [ |
| 3470 | { |
| 3471 | 'package': 'chromium/third_party/android_deps/libs/org_pcollections_pcollections', |
| 3472 | 'version': 'version:2.1.2-cr0', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 3473 | }, |
| 3474 | ], |
| 3475 | 'condition': 'checkout_android', |
| 3476 | 'dep_type': 'cipd', |
| 3477 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 3478 | |
Peter Wen | b1434387b | 2020-01-23 17:34:17 | [diff] [blame] | 3479 | 'src/third_party/android_deps/libs/org_plumelib_plume_util': { |
| 3480 | 'packages': [ |
| 3481 | { |
| 3482 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_plume_util', |
| 3483 | 'version': 'version:1.0.6-cr0', |
| 3484 | }, |
| 3485 | ], |
| 3486 | 'condition': 'checkout_android', |
| 3487 | 'dep_type': 'cipd', |
| 3488 | }, |
| 3489 | |
| 3490 | 'src/third_party/android_deps/libs/org_plumelib_reflection_util': { |
| 3491 | 'packages': [ |
| 3492 | { |
| 3493 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_reflection_util', |
| 3494 | 'version': 'version:0.0.2-cr0', |
| 3495 | }, |
| 3496 | ], |
| 3497 | 'condition': 'checkout_android', |
| 3498 | 'dep_type': 'cipd', |
| 3499 | }, |
| 3500 | |
| 3501 | 'src/third_party/android_deps/libs/org_plumelib_require_javadoc': { |
| 3502 | 'packages': [ |
| 3503 | { |
| 3504 | 'package': 'chromium/third_party/android_deps/libs/org_plumelib_require_javadoc', |
| 3505 | 'version': 'version:0.1.0-cr0', |
| 3506 | }, |
| 3507 | ], |
| 3508 | 'condition': 'checkout_android', |
| 3509 | 'dep_type': 'cipd', |
| 3510 | }, |
| 3511 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 3512 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 3513 | } |
| 3514 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 3515 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 3516 | include_rules = [ |
| 3517 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 3518 | # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3519 | '+base', |
| 3520 | '+build', |
| 3521 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 3522 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 3523 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3524 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 3525 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3526 | '+testing', |
| 3527 | '+third_party/icu/source/common/unicode', |
| 3528 | '+third_party/icu/source/i18n/unicode', |
| 3529 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 3530 | |
| 3531 | # Chromium cannot directly depend on Abseil. |
| 3532 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 3533 | ] |
| 3534 | |
| 3535 | |
| 3536 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 3537 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3538 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 3539 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3540 | 'skia', |
| 3541 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 3542 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3543 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 3544 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 3545 | |
| 3546 | |
| 3547 | hooks = [ |
| 3548 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 3549 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 3550 | # first hook so that other things that get/generate into the output |
| 3551 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3552 | 'name': 'landmines', |
| 3553 | 'pattern': '.', |
| 3554 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3555 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3556 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 3557 | ], |
| 3558 | }, |
| 3559 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 3560 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 3561 | # disabled. |
| 3562 | 'name': 'disable_depot_tools_selfupdate', |
| 3563 | 'pattern': '.', |
| 3564 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3565 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 3566 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 3567 | '--disable', |
| 3568 | ], |
| 3569 | }, |
| 3570 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 3571 | # Ensure that we don't accidentally reference any .pyc files whose |
| 3572 | # corresponding .py files have since been deleted. |
| 3573 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 3574 | 'name': 'remove_stale_pyc_files', |
| 3575 | 'pattern': '.', |
| 3576 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3577 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 3578 | 'src/tools/remove_stale_pyc_files.py', |
| 3579 | 'src/android_webview/tools', |
| 3580 | 'src/build/android', |
| 3581 | 'src/gpu/gles2_conform_support', |
| 3582 | 'src/infra', |
| 3583 | 'src/ppapi', |
| 3584 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 3585 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 3586 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 3587 | 'src/third_party/catapult', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 3588 | 'src/tools', |
| 3589 | ], |
| 3590 | }, |
| 3591 | { |
Dirk Pranke | cbff2fc | 2019-03-22 21:53:44 | [diff] [blame] | 3592 | # Verify that we have the right GN binary and force-install it if we |
| 3593 | # don't, in order to work around crbug.com/944367. |
| 3594 | # TODO(crbug.com/944667) Get rid of this when cipd is ensuring we |
| 3595 | # have the right binary more carefully and we no longer need this. |
| 3596 | 'name': 'ensure_gn_version', |
| 3597 | 'pattern': '.', |
| 3598 | 'action': [ |
| 3599 | 'python', |
| 3600 | 'src/buildtools/ensure_gn_version.py', |
| 3601 | Var('gn_version') |
| 3602 | ], |
| 3603 | }, |
| 3604 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 3605 | # This downloads binaries for Native Client's newlib toolchain. |
| 3606 | # Done in lieu of building the toolchain from scratch as it can take |
| 3607 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3608 | 'name': 'nacltools', |
| 3609 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 3610 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3611 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3612 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 3613 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 3614 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 3615 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 3616 | ], |
| 3617 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 3618 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 3619 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3620 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 3621 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3622 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 3623 | '--arch=arm'], |
| 3624 | }, |
| 3625 | { |
| 3626 | 'name': 'sysroot_arm64', |
| 3627 | 'pattern': '.', |
| 3628 | 'condition': 'checkout_linux and checkout_arm64', |
| 3629 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 3630 | '--arch=arm64'], |
| 3631 | }, |
| 3632 | { |
| 3633 | 'name': 'sysroot_x86', |
| 3634 | 'pattern': '.', |
| 3635 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 3636 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 3637 | '--arch=x86'], |
| 3638 | }, |
| 3639 | { |
| 3640 | 'name': 'sysroot_mips', |
| 3641 | 'pattern': '.', |
| 3642 | 'condition': 'checkout_linux and checkout_mips', |
| 3643 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 3644 | '--arch=mips'], |
| 3645 | }, |
| 3646 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 3647 | 'name': 'sysroot_mips64', |
| 3648 | 'pattern': '.', |
| 3649 | 'condition': 'checkout_linux and checkout_mips64', |
| 3650 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 3651 | '--arch=mips64el'], |
| 3652 | }, |
| 3653 | |
| 3654 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 3655 | 'name': 'sysroot_x64', |
| 3656 | 'pattern': '.', |
| 3657 | 'condition': 'checkout_linux and checkout_x64', |
| 3658 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 3659 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 3660 | }, |
| 3661 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 3662 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 3663 | 'name': 'ciopfs_linux', |
| 3664 | 'pattern': '.', |
| 3665 | 'condition': 'checkout_win and host_os == "linux"', |
| 3666 | 'action': [ 'python', |
| 3667 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3668 | '--no_resume', |
| 3669 | '--no_auth', |
| 3670 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 3671 | '-s', 'src/build/ciopfs.sha1', |
| 3672 | ] |
| 3673 | }, |
| 3674 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 3675 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3676 | 'name': 'win_toolchain', |
| 3677 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 3678 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3679 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 3680 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 3681 | { |
| 3682 | # Update the Mac toolchain if necessary. |
| 3683 | 'name': 'mac_toolchain', |
| 3684 | 'pattern': '.', |
Michael Achenbach | 0c78efa | 2019-07-30 20:00:02 | [diff] [blame] | 3685 | 'condition': 'checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 3686 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 3687 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 3688 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 3689 | # debugging when used with clang on Ubuntu Precise. |
| 3690 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 3691 | { |
| 3692 | 'name': 'binutils', |
| 3693 | 'pattern': 'src/third_party/binutils', |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 3694 | 'condition': 'host_os == "linux" and host_cpu != "mips64"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 3695 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 3696 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 3697 | 'src/third_party/binutils/download.py', |
| 3698 | ], |
| 3699 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 3700 | { |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 3701 | # Update the prebuilt clang toolchain. |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 3702 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 3703 | 'name': 'clang', |
| 3704 | 'pattern': '.', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 3705 | 'condition': 'not llvm_force_head_revision', |
| 3706 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
| 3707 | }, |
| 3708 | { |
| 3709 | # Build the clang toolchain from tip-of-tree. |
| 3710 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 3711 | 'name': 'clang_tot', |
| 3712 | 'pattern': '.', |
| 3713 | 'condition': 'llvm_force_head_revision', |
Hans Wennborg | d1eec55 | 2019-05-02 14:59:07 | [diff] [blame] | 3714 | 'action': ['python', 'src/tools/clang/scripts/build.py', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 3715 | '--llvm-force-head-revision', |
| 3716 | '--with-android={checkout_android}'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 3717 | }, |
| 3718 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 3719 | # This is supposed to support the same set of platforms as 'clang' above. |
| 3720 | 'name': 'clang_coverage', |
| 3721 | 'pattern': '.', |
| 3722 | 'condition': 'checkout_clang_coverage_tools', |
Hans Wennborg | 8ee64a1 | 2019-11-05 17:31:30 | [diff] [blame] | 3723 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 3724 | '--package=coverage_tools'], |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 3725 | }, |
| 3726 | { |
George Burgess IV | a55e6bed | 2019-12-11 16:24:08 | [diff] [blame] | 3727 | # This is also supposed to support the same set of platforms as 'clang' |
| 3728 | # above. LLVM ToT support isn't provided at the moment. |
| 3729 | 'name': 'clang_tidy', |
| 3730 | 'pattern': '.', |
| 3731 | 'condition': 'checkout_clang_tidy', |
| 3732 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 3733 | '--package=clang-tidy'], |
| 3734 | }, |
| 3735 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 3736 | # Mac doesn't use lld so it's not included in the default clang bundle |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 3737 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 3738 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 3739 | 'name': 'lld/mac', |
| 3740 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 3741 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Hans Wennborg | 8ee64a1 | 2019-11-05 17:31:30 | [diff] [blame] | 3742 | 'action': ['python', 'src/tools/clang/scripts/update.py', |
| 3743 | '--package=lld_mac'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 3744 | }, |
| 3745 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 3746 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3747 | 'name': 'lastchange', |
| 3748 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3749 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3750 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 3751 | }, |
| 3752 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 3753 | # Update GPU lists version string (for gpu/config). |
| 3754 | 'name': 'gpu_lists_version', |
| 3755 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3756 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 3757 | '-m', 'GPU_LISTS_VERSION', |
| 3758 | '--revision-id-only', |
| 3759 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 3760 | }, |
| 3761 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 3762 | # Update skia_commit_hash.h. |
| 3763 | 'name': 'lastchange_skia', |
| 3764 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3765 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 3766 | '-m', 'SKIA_COMMIT_HASH', |
| 3767 | '-s', 'src/third_party/skia', |
| 3768 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 3769 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 3770 | # Pull clang-format binaries using checked-in hashes. |
| 3771 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3772 | 'name': 'clang_format_win', |
| 3773 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3774 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3775 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3776 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3777 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3778 | '--no_auth', |
| 3779 | '--bucket', 'chromium-clang-format', |
| 3780 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 3781 | ], |
| 3782 | }, |
| 3783 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3784 | 'name': 'clang_format_mac', |
| 3785 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3786 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3787 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3788 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3789 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3790 | '--no_auth', |
| 3791 | '--bucket', 'chromium-clang-format', |
| 3792 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 3793 | ], |
| 3794 | }, |
| 3795 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3796 | 'name': 'clang_format_linux', |
| 3797 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3798 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3799 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3800 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3801 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3802 | '--no_auth', |
| 3803 | '--bucket', 'chromium-clang-format', |
| 3804 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 3805 | ], |
| 3806 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 3807 | # Pull rc binaries using checked-in hashes. |
| 3808 | { |
| 3809 | 'name': 'rc_win', |
| 3810 | 'pattern': '.', |
| 3811 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3812 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 3813 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3814 | '--no_resume', |
| 3815 | '--no_auth', |
| 3816 | '--bucket', 'chromium-browser-clang/rc', |
| 3817 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 3818 | ], |
| 3819 | }, |
| 3820 | { |
| 3821 | 'name': 'rc_mac', |
| 3822 | 'pattern': '.', |
| 3823 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3824 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 3825 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3826 | '--no_resume', |
| 3827 | '--no_auth', |
| 3828 | '--bucket', 'chromium-browser-clang/rc', |
| 3829 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 3830 | ], |
| 3831 | }, |
| 3832 | { |
| 3833 | 'name': 'rc_linux', |
| 3834 | 'pattern': '.', |
| 3835 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3836 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 3837 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3838 | '--no_resume', |
| 3839 | '--no_auth', |
| 3840 | '--bucket', 'chromium-browser-clang/rc', |
| 3841 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 3842 | ] |
| 3843 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 3844 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 3845 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 3846 | 'pattern': '.', |
| 3847 | 'action': [ 'download_from_google_storage', |
| 3848 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 3849 | '--extract', |
| 3850 | '--no_auth', |
| 3851 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 3852 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 3853 | ], |
| 3854 | }, |
Yves Gerey | 0e064c4c | 2019-11-06 14:42:09 | [diff] [blame] | 3855 | # Download test resources for opus, i.e. audio files. |
| 3856 | { |
| 3857 | 'name': 'opus_test_files', |
| 3858 | 'pattern': '.', |
| 3859 | 'action': ['download_from_google_storage', |
| 3860 | '--no_auth', |
| 3861 | '--quiet', |
| 3862 | '--bucket', 'chromium-webrtc-resources', |
| 3863 | '-d', 'src/third_party/opus/tests/resources'], |
| 3864 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 3865 | # Pull order files for the win/clang build. |
| 3866 | { |
| 3867 | 'name': 'orderfiles_win', |
| 3868 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 3869 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3870 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 3871 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3872 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 3873 | '--no_auth', |
Nico Weber | be2fc4f | 2019-05-03 13:36:05 | [diff] [blame] | 3874 | '--num_threads=4', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 3875 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 3876 | '-d', 'src/chrome/build', |
| 3877 | ], |
| 3878 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 3879 | { |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 3880 | 'name': 'apache_mac', |
| 3881 | 'pattern': '\\.sha1', |
| 3882 | 'condition': 'checkout_mac', |
| 3883 | 'action': [ 'python', |
| 3884 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 3885 | '--no_resume', |
| 3886 | '--directory', |
| 3887 | '--recursive', |
| 3888 | '--no_auth', |
| 3889 | '--num_threads=16', |
| 3890 | '--bucket', 'chromium-apache-mac', |
| 3891 | 'src/third_party/apache-mac', |
| 3892 | ], |
| 3893 | }, |
| 3894 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3895 | 'name': 'apache_win32', |
| 3896 | 'pattern': '\\.sha1', |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 3897 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3898 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3899 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3900 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 3901 | '--directory', |
| 3902 | '--recursive', |
| 3903 | '--no_auth', |
| 3904 | '--num_threads=16', |
| 3905 | '--bucket', 'chromium-apache-win32', |
| 3906 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 3907 | ], |
| 3908 | }, |
| 3909 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 3910 | 'name': 'msan_chained_origins', |
| 3911 | 'pattern': '.', |
| 3912 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3913 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 3914 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 3915 | '--no_resume', |
| 3916 | '--no_auth', |
| 3917 | '--bucket', 'chromium-instrumented-libraries', |
| 3918 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 3919 | ], |
| 3920 | }, |
| 3921 | { |
| 3922 | 'name': 'msan_no_origins', |
| 3923 | 'pattern': '.', |
| 3924 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3925 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 3926 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 3927 | '--no_resume', |
| 3928 | '--no_auth', |
| 3929 | '--bucket', 'chromium-instrumented-libraries', |
| 3930 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 3931 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 3932 | }, |
| 3933 | { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 3934 | 'name': 'wasm_fuzzer', |
| 3935 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3936 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3937 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 3938 | '--no_resume', |
| 3939 | '--no_auth', |
| 3940 | '-u', |
| 3941 | '--bucket', 'v8-wasm-fuzzer', |
| 3942 | '-s', 'src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 3943 | ], |
| 3944 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3945 | |
| 3946 | # Pull down Node binaries for WebUI toolchain. |
| 3947 | { |
| 3948 | 'name': 'node_linux64', |
| 3949 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3950 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3951 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3952 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3953 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3954 | '--extract', |
| 3955 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 3956 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3957 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 3958 | ], |
| 3959 | }, |
| 3960 | { |
| 3961 | 'name': 'node_mac', |
| 3962 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3963 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3964 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3965 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3966 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3967 | '--extract', |
| 3968 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 3969 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3970 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 3971 | ], |
| 3972 | }, |
| 3973 | { |
| 3974 | 'name': 'node_win', |
| 3975 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 3976 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3977 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3978 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3979 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3980 | '--no_auth', |
Demetrios Papadopoulos | d58d139 | 2020-01-13 19:36:46 | [diff] [blame] | 3981 | '--bucket', 'chromium-nodejs/12.14.1', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3982 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 3983 | ], |
| 3984 | }, |
| 3985 | |
| 3986 | # Pull down NPM dependencies for WebUI toolchain. |
| 3987 | { |
| 3988 | 'name': 'webui_node_modules', |
| 3989 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 3990 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 3991 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 3992 | '--no_resume', |
| 3993 | '--extract', |
| 3994 | '--no_auth', |
| 3995 | '--bucket', 'chromium-nodejs', |
| 3996 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 3997 | ], |
| 3998 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 3999 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4000 | # Download Telemetry's binary dependencies via conditionals |
| 4001 | { |
| 4002 | 'name': 'checkout_telemetry_binary_dependencies', |
| 4003 | 'condition': 'checkout_telemetry_dependencies', |
| 4004 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4005 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4006 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 4007 | ], |
| 4008 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 4009 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 4010 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 4011 | { |
| 4012 | 'name': 'checkout_telemetry_benchmark_deps', |
| 4013 | 'condition': 'checkout_telemetry_dependencies', |
| 4014 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 4015 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 4016 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 4017 | '-f', |
| 4018 | ], |
| 4019 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 4020 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4021 | # This is used to ensure that all network operations are properly |
| 4022 | # annotated so we can document what they're for. |
| 4023 | { |
| 4024 | 'name': 'tools_traffic_annotation_linux', |
| 4025 | 'pattern': '.', |
| 4026 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4027 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4028 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4029 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 4030 | '--no_auth', |
| 4031 | '--num_threads=4', |
| 4032 | '--bucket', 'chromium-tools-traffic_annotation', |
| 4033 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 4034 | ], |
| 4035 | }, |
| 4036 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 4037 | # This is used to ensure that all network operations are properly |
| 4038 | # annotated so we can document what they're for. |
| 4039 | { |
| 4040 | 'name': 'tools_traffic_annotation_windows', |
| 4041 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 4042 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4043 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 4044 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4045 | '--no_resume', |
| 4046 | '--no_auth', |
| 4047 | '--num_threads=4', |
| 4048 | '--bucket', 'chromium-tools-traffic_annotation', |
| 4049 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 4050 | ], |
| 4051 | }, |
| 4052 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4053 | # Pull down Zucchini test data. |
| 4054 | { |
| 4055 | 'name': 'zucchini_testdata', |
| 4056 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4057 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4058 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4059 | '--no_resume', |
| 4060 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 4061 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 4062 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 4063 | '--recursive', |
| 4064 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 4065 | ], |
| 4066 | }, |
bsheedy | 7fbd0a5 | 2019-02-05 19:03:36 | [diff] [blame] | 4067 | # Pull down Android RenderTest goldens |
| 4068 | { |
| 4069 | 'name': 'Fetch Android RenderTest goldens', |
| 4070 | 'pattern': '.', |
| 4071 | 'condition': 'checkout_android', |
| 4072 | 'action': [ 'python', |
| 4073 | 'src/chrome/test/data/android/manage_render_test_goldens.py', |
| 4074 | 'download', |
| 4075 | ], |
| 4076 | }, |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 4077 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 4078 | 'name': 'Fetch Android AFDO profile', |
| 4079 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 4080 | 'condition': 'checkout_android or checkout_linux', |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4081 | 'action': [ 'vpython', |
| 4082 | 'src/tools/download_cros_provided_profile.py', |
| 4083 | '--newest_state=src/chrome/android/profiles/newest.txt', |
| 4084 | '--local_state=src/chrome/android/profiles/local.txt', |
| 4085 | '--output_name=src/chrome/android/profiles/afdo.prof', |
| 4086 | '--gs_url_base=chromeos-prebuilt/afdo-job/llvm', |
| 4087 | ], |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 4088 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4089 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4090 | 'name': 'gvr_static_shim_android_arm_1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4091 | 'pattern': '\\.sha1', |
| 4092 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4093 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4094 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4095 | '--no_resume', |
| 4096 | '--no_auth', |
| 4097 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4098 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_1.a.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4099 | ], |
| 4100 | }, |
| 4101 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4102 | 'name': 'gvr_static_shim_android_arm_Cr', |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 4103 | 'pattern': '\\.sha1', |
| 4104 | 'condition': 'checkout_android', |
| 4105 | 'action': [ 'python', |
| 4106 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4107 | '--no_resume', |
| 4108 | '--no_auth', |
| 4109 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4110 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_Cr.a.sha1', |
| 4111 | ], |
| 4112 | }, |
| 4113 | { |
| 4114 | 'name': 'gvr_static_shim_android_arm64_1', |
| 4115 | 'pattern': '\\.sha1', |
| 4116 | 'condition': 'checkout_android', |
| 4117 | 'action': [ 'python', |
| 4118 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4119 | '--no_resume', |
| 4120 | '--no_auth', |
| 4121 | '--bucket', 'chromium-gvr-static-shim', |
| 4122 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_1.a.sha1', |
| 4123 | ], |
| 4124 | }, |
| 4125 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 4126 | 'name': 'gvr_static_shim_android_arm64_Cr', |
| 4127 | 'pattern': '\\.sha1', |
| 4128 | 'condition': 'checkout_android', |
| 4129 | 'action': [ 'python', |
| 4130 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4131 | '--no_resume', |
| 4132 | '--no_auth', |
| 4133 | '--bucket', 'chromium-gvr-static-shim', |
| 4134 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_Cr.a.sha1', |
| 4135 | ], |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 4136 | }, |
| 4137 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4138 | 'name': 'vr_controller_test_api', |
| 4139 | 'pattern': '\\.sha1', |
| 4140 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4141 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 4142 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4143 | '--no_resume', |
| 4144 | '--no_auth', |
| 4145 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 4146 | '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4147 | ], |
| 4148 | }, |
| 4149 | # Download VR test APKs only if the environment variable is set |
| 4150 | { |
| 4151 | 'name': 'vr_test_apks', |
| 4152 | 'pattern': '.', |
| 4153 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4154 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 4155 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4156 | ], |
| 4157 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 4158 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 4159 | { |
| 4160 | 'name': 'ar_test_apks', |
| 4161 | 'pattern': '.', |
| 4162 | 'condition': 'checkout_android', |
| 4163 | 'action': [ 'python', |
| 4164 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 4165 | ], |
| 4166 | }, |
Mehran Mahmoudi | 7759ba4 | 2020-03-09 15:45:15 | [diff] [blame] | 4167 | # Pull down Paint Preview test data. |
| 4168 | { |
| 4169 | 'name': 'paint_preview_testdata', |
| 4170 | 'pattern': '\\.sha1', |
| 4171 | 'condition': 'checkout_android', |
| 4172 | 'action': [ 'python', |
| 4173 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4174 | '--no_auth', |
| 4175 | '--num_threads=4', |
| 4176 | '--bucket', 'chromium-android-tools/paint-preview-test-data', |
| 4177 | '--recursive', |
| 4178 | '-d', 'src/components/test/data/paint_preview', |
| 4179 | ], |
| 4180 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 4181 | # Download Oculus SDK if appropriate. |
| 4182 | { |
| 4183 | 'name': 'libovr', |
| 4184 | 'pattern': '.', |
| 4185 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4186 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 4187 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4188 | '--bucket', 'chrome-oculus-sdk', |
| 4189 | '--recursive', |
| 4190 | '--num_threads=10', |
| 4191 | '--directory', |
| 4192 | 'src/third_party/libovr/src', |
| 4193 | ], |
| 4194 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 4195 | # Download common ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 4196 | { |
| 4197 | 'name': 'ink-build', |
| 4198 | 'pattern': '.', |
| 4199 | 'condition': 'checkout_chromeos', |
| 4200 | 'action': [ 'python', |
| 4201 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4202 | '--no_resume', |
| 4203 | '--no_auth', |
| 4204 | '--num_threads=4', |
| 4205 | '--bucket', 'chromium-ink', |
| 4206 | '-d', 'src/third_party/ink/build', |
| 4207 | ], |
| 4208 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 4209 | # Download wasm ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 4210 | { |
| 4211 | 'name': 'ink-build-wasm', |
| 4212 | 'pattern': '.', |
| 4213 | 'condition': 'checkout_chromeos', |
| 4214 | 'action': [ 'python', |
| 4215 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4216 | '--no_resume', |
| 4217 | '--no_auth', |
| 4218 | '--num_threads=4', |
| 4219 | '--bucket', 'chromium-ink', |
| 4220 | '-d', 'src/third_party/ink/build/wasm', |
| 4221 | ], |
| 4222 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 4223 | # Download wasm threaded ink resources for chromeos. |
| 4224 | { |
| 4225 | 'name': 'ink-build-wasm', |
| 4226 | 'pattern': '.', |
| 4227 | 'condition': 'checkout_chromeos', |
| 4228 | 'action': [ 'python', |
| 4229 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4230 | '--no_resume', |
| 4231 | '--no_auth', |
| 4232 | '--num_threads=4', |
| 4233 | '--bucket', 'chromium-ink', |
| 4234 | '-d', 'src/third_party/ink/build/wasm-threads', |
| 4235 | ], |
| 4236 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4237 | { |
Alex Turner | 1845317 | 2019-12-12 21:05:43 | [diff] [blame] | 4238 | 'name': 'subresource-filter-ruleset', |
| 4239 | 'pattern': '.', |
| 4240 | 'action': [ 'python', |
| 4241 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 4242 | '--no_resume', |
| 4243 | '--no_auth', |
| 4244 | '--bucket', 'chromium-ads-detection', |
| 4245 | '-s', 'src/third_party/subresource-filter-ruleset/data/UnindexedRules.sha1', |
| 4246 | ], |
| 4247 | }, |
| 4248 | { |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4249 | 'name': 'Fetch ChromeOS-specific orderfile for Chrome', |
| 4250 | 'pattern': '.', |
| 4251 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4252 | 'action': [ 'vpython', |
| 4253 | 'src/tools/download_cros_provided_profile.py', |
| 4254 | '--newest_state=src/chromeos/profiles/orderfile.newest.txt', |
| 4255 | '--local_state=src/chromeos/profiles/orderfile.local.txt', |
| 4256 | '--output_name=src/chromeos/profiles/chromeos.orderfile.txt', |
| 4257 | '--gs_url_base=chromeos-prebuilt/afdo-job/orderfiles/vetted', |
| 4258 | ], |
| 4259 | }, |
Tiancong Wang | 97a8655 | 2019-09-17 22:32:40 | [diff] [blame] | 4260 | # Download AFDO profiles for Chrome OS for each architecture. |
| 4261 | { |
| 4262 | 'name': 'Fetch Chrome OS AFDO profiles (silvermont)', |
| 4263 | 'pattern': '.', |
| 4264 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4265 | 'action': [ 'vpython', |
| 4266 | 'src/tools/download_cros_provided_profile.py', |
| 4267 | '--newest_state=src/chromeos/profiles/silvermont.afdo.newest.txt', |
| 4268 | '--local_state=src/chromeos/profiles/silvermont.afdo.local.txt', |
| 4269 | '--output_name=src/chromeos/profiles/silvermont.afdo.prof', |
| 4270 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4271 | ], |
| 4272 | }, |
| 4273 | { |
| 4274 | 'name': 'Fetch Chrome OS AFDO profiles (airmont)', |
| 4275 | 'pattern': '.', |
| 4276 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4277 | 'action': [ 'vpython', |
| 4278 | 'src/tools/download_cros_provided_profile.py', |
| 4279 | '--newest_state=src/chromeos/profiles/airmont.afdo.newest.txt', |
| 4280 | '--local_state=src/chromeos/profiles/airmont.afdo.local.txt', |
| 4281 | '--output_name=src/chromeos/profiles/airmont.afdo.prof', |
| 4282 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4283 | ], |
| 4284 | }, |
| 4285 | { |
| 4286 | 'name': 'Fetch Chrome OS AFDO profiles (broadwell)', |
| 4287 | 'pattern': '.', |
| 4288 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 4289 | 'action': [ 'vpython', |
| 4290 | 'src/tools/download_cros_provided_profile.py', |
| 4291 | '--newest_state=src/chromeos/profiles/broadwell.afdo.newest.txt', |
| 4292 | '--local_state=src/chromeos/profiles/broadwell.afdo.local.txt', |
| 4293 | '--output_name=src/chromeos/profiles/broadwell.afdo.prof', |
| 4294 | '--gs_url_base=chromeos-prebuilt/afdo-job/vetted/release', |
| 4295 | ], |
| 4296 | }, |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 4297 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4298 | # Pull doclava binaries if building for Android. |
| 4299 | 'name': 'doclava', |
| 4300 | 'pattern': '.', |
| 4301 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4302 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 4303 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4304 | ], |
| 4305 | }, |
| 4306 | |
| 4307 | { |
| 4308 | 'name': 'fuchsia_sdk', |
| 4309 | 'pattern': '.', |
| 4310 | 'condition': 'checkout_fuchsia', |
| 4311 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 4312 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4313 | 'src/build/fuchsia/update_sdk.py', |
Kevin Marshall | 9c4748c8 | 2019-08-23 18:46:50 | [diff] [blame] | 4314 | '--boot-images={checkout_fuchsia_boot_images}', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4315 | ], |
| 4316 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 4317 | |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4318 | # Download public CrOS simplechrome artifacts. The first hooks is for boards |
| 4319 | # that support VM images, the second hook for all other boards. For internal |
| 4320 | # boards, see src-internal's DEPS. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4321 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4322 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4323 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4324 | 'condition': '(checkout_simplechrome and cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4325 | 'action': [ |
| 4326 | 'src/third_party/chromite/bin/cros', |
| 4327 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 4328 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4329 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 4330 | '--fallback-versions=10', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4331 | '--nogn-gen', |
| 4332 | '--download-vm', |
| 4333 | '--board={cros_board}', |
| 4334 | '--cache-dir=src/build/cros_cache/', |
Ben Pastene | 0f169e1 | 2019-11-22 17:57:24 | [diff] [blame] | 4335 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 4336 | # enough to eject old toolchains from the cache. |
| 4337 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4338 | '--log-level=error', |
Ben Pastene | 5610b193 | 2020-03-05 05:30:25 | [diff] [blame] | 4339 | '--no-shell', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4340 | ], |
| 4341 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4342 | { |
| 4343 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 4344 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 4345 | 'condition': '(checkout_simplechrome and not cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4346 | 'action': [ |
| 4347 | 'src/third_party/chromite/bin/cros', |
| 4348 | 'chrome-sdk', |
| 4349 | '--nogoma', |
| 4350 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 4351 | '--fallback-versions=10', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4352 | '--nogn-gen', |
| 4353 | '--board={cros_board}', |
| 4354 | '--cache-dir=src/build/cros_cache/', |
| 4355 | '--log-level=error', |
Ben Pastene | 5610b193 | 2020-03-05 05:30:25 | [diff] [blame] | 4356 | '--no-shell', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 4357 | ], |
| 4358 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 4359 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 4360 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 4361 | { |
| 4362 | 'name': 'vpython_common', |
| 4363 | 'pattern': '.', |
| 4364 | 'action': [ 'vpython', |
| 4365 | '-vpython-spec', 'src/.vpython', |
| 4366 | '-vpython-tool', 'install', |
| 4367 | ], |
| 4368 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 4369 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 4370 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4371 | recursedeps = [ |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4372 | # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 4373 | 'src/third_party/angle', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 4374 | 'src/third_party/openscreen/src', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 4375 | # src-internal has its own DEPS file to pull additional internal repos |
| 4376 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 4377 | ] |