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