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