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 |
| 26 | # git commit -a |
| 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', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 38 | ] |
| 39 | |
[email protected] | ed71194 | 2012-05-19 06:57:06 | [diff] [blame] | 40 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 41 | vars = { |
Edward Lemur | 88678b8 | 2018-05-31 06:01:38 | [diff] [blame] | 42 | # Variable that can be used to support multiple build scenarios, like having |
| 43 | # Chromium specific targets in a client project's GN file or sync dependencies |
| 44 | # conditionally etc. |
| 45 | 'build_with_chromium': True, |
| 46 | |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 47 | # By default, we should check out everything needed to run on the main |
| 48 | # chromium waterfalls. This var can be also be set to "small", in order |
| 49 | # to skip things are not strictly needed to build chromium for development |
Nico Weber | 0602f69 | 2019-07-25 21:39:16 | [diff] [blame] | 50 | # purposes, by adding the following line to src.git's .gclient entry: |
| 51 | # "custom_vars": { "checkout_configuration": "small" }, |
Dirk Pranke | f044b6b0 | 2017-10-05 22:02:03 | [diff] [blame] | 52 | 'checkout_configuration': 'default', |
| 53 | |
Michael Moss | c09fc5c | 2019-01-18 08:00:03 | [diff] [blame] | 54 | # By default, don't check out android. Will be overridden by gclient |
| 55 | # variables. |
| 56 | # TODO(ehmaldonado): Remove this once the bug in gclient is fixed. |
| 57 | 'checkout_android': False, |
| 58 | |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 59 | # Pull in Android native toolchain dependencies for Chrome OS too, so we can |
| 60 | # build ARC++ support libraries. |
| 61 | 'checkout_android_native_support': 'checkout_android or checkout_chromeos', |
| 62 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 63 | # By default, do not check out Chromium autofill captured sites test |
| 64 | # dependencies. These dependencies include very large numbers of very |
| 65 | # large web capture files. Captured sites test dependencies are also |
| 66 | # restricted to Googlers only. |
| 67 | 'checkout_chromium_autofill_test_dependencies': False, |
| 68 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 69 | # By default, do not check out Chromium password manager captured sites test |
| 70 | # dependencies. These dependencies include very large numbers of very |
| 71 | # large web capture files. Captured sites test dependencies are also |
| 72 | # restricted to Googlers only. |
| 73 | 'checkout_chromium_password_manager_test_dependencies': False, |
| 74 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 75 | # Check out and download nacl by default. This can be disabled e.g. with |
| 76 | # custom_vars. |
| 77 | 'checkout_nacl': True, |
| 78 | |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 79 | # By default, do not check out src-internal. This can be overridden e.g. with |
| 80 | # custom_vars. |
Paweł Hajdan, Jr | 41d18fa | 2017-10-09 12:41:57 | [diff] [blame] | 81 | 'checkout_src_internal': False, |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 82 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 83 | # Fetch the additional packages and files needed to run all of the |
| 84 | # telemetry tests. This is false by default as some stuff is only |
| 85 | # privately accessible. |
| 86 | 'checkout_telemetry_dependencies': False, |
| 87 | |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 88 | # Fetch the prebuilt binaries for llvm-cov and llvm-profdata. Needed to |
| 89 | # process the raw profiles produced by instrumented targets (built with |
| 90 | # the gn arg 'use_clang_coverage'). |
| 91 | 'checkout_clang_coverage_tools': False, |
| 92 | |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 93 | # By default do not check out the Oculus SDK. Only available for Googlers. |
Alexander Alekseev | f76b1c0 | 2018-02-16 04:03:14 | [diff] [blame] | 94 | 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 95 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 96 | # By default do not checkout the OpenXR loader library. |
| 97 | 'checkout_openxr' : False, |
| 98 | |
Takuto Ikuta | e306cbad | 2018-12-06 16:43:55 | [diff] [blame] | 99 | 'checkout_traffic_annotation_tools': 'checkout_configuration != "small"', |
| 100 | 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration != "small"', |
Dirk Pranke | 5e95315 | 2017-10-10 16:26:44 | [diff] [blame] | 101 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 102 | # By default, do not check out WebKit for iOS, as it is not needed unless |
| 103 | # running against ToT WebKit rather than system WebKit. This can be overridden |
| 104 | # e.g. with custom_vars. |
| 105 | 'checkout_ios_webkit': False, |
| 106 | |
Ken Rockot | 7339fe5 | 2018-04-30 21:17:17 | [diff] [blame] | 107 | # Default to the empty board. Desktop Chrome OS builds don't need cros SDK |
| 108 | # dependencies. Other Chrome OS builds should always define this explicitly. |
| 109 | 'cros_board': '', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 110 | # Building for CrOS is only supported on linux currently. |
| 111 | 'checkout_simplechrome': '(checkout_chromeos and host_os == "linux") and ("{cros_board}" != "")', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 112 | # Surround the board var in quotes so gclient doesn't try parsing the string |
| 113 | # as an expression. |
John Budorick | e14ee2f3 | 2019-05-24 18:18:08 | [diff] [blame] | 114 | 'cros_download_vm': '("{cros_board}" == "amd64-generic") or ("{cros_board}" == "betty")', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 115 | # Should we build and test for public (ie: full) CrOS images, or private |
| 116 | # (ie: release) images. |
| 117 | 'use_public_cros_config': 'not checkout_src_internal', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 118 | |
Shahbaz Youssefi | 973a1dd | 2018-10-17 17:00:54 | [diff] [blame] | 119 | # ANGLE's deps are relative to the angle_root variable. |
Edward Lemur | 8e0b906 | 2018-06-13 21:36:26 | [diff] [blame] | 120 | 'angle_root': 'src/third_party/angle', |
| 121 | |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 122 | # luci-go CIPD package version. |
Takuto Ikuta | 66c3065 | 2019-07-12 02:43:33 | [diff] [blame] | 123 | # Make sure the revision is uploaded by infra-packagers builder. |
| 124 | # https://ci.chromium.org/p/infra-internal/g/infra-packagers/console |
| 125 | 'luci_go': 'git_revision:7d11fd9e66407c49cb6c8546a2ae45ea993a240c', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 126 | |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 127 | # This can be overridden, e.g. with custom_vars, to build clang from HEAD |
| 128 | # instead of downloading the prebuilt pinned revision. |
| 129 | 'llvm_force_head_revision': False, |
| 130 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 131 | 'android_git': 'https://android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 132 | 'aomedia_git': 'https://aomedia.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 133 | 'boringssl_git': 'https://boringssl.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 134 | 'chromium_git': 'https://chromium.googlesource.com', |
| 135 | 'dawn_git': 'https://dawn.googlesource.com', |
| 136 | 'pdfium_git': 'https://pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 137 | 'quiche_git': 'https://quiche.googlesource.com', |
John Budorick | b5e6f74 | 2018-10-16 00:31:01 | [diff] [blame] | 138 | 'skia_git': 'https://skia.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 139 | 'swiftshader_git': 'https://swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 140 | 'webrtc_git': 'https://webrtc.googlesource.com', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 141 | # Three lines of non-changing comments so that |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 142 | # the commit queue can handle CLs rolling sfntly |
| 143 | # and whatever else without interference from each other. |
Lei Zhang | ea80c5b | 2019-07-19 01:18:47 | [diff] [blame] | 144 | 'sfntly_revision': '48312c98332a4608572459dc71584c2a9dbb1792', |
thestig | 3e7d8e0 | 2015-09-28 23:54:46 | [diff] [blame] | 145 | # Three lines of non-changing comments so that |
| 146 | # the commit queue can handle CLs rolling Skia |
| 147 | # and whatever else without interference from each other. |
chromium-autoroll | c903d63 | 2019-08-13 13:38:46 | [diff] [blame] | 148 | 'skia_revision': '6ef31815a694c7e8555c9217288af19f21af4901', |
[email protected] | 5eb3022e | 2011-11-23 16:42:26 | [diff] [blame] | 149 | # Three lines of non-changing comments so that |
sbc | e2d44aee | 2015-06-09 03:06:04 | [diff] [blame] | 150 | # the commit queue can handle CLs rolling V8 |
| 151 | # and whatever else without interference from each other. |
v8-ci-autoroll-builder | 196492d | 2019-08-13 13:13:10 | [diff] [blame] | 152 | 'v8_revision': '1d37448e10c317e8aa120892ee1c6ec7512130ed', |
[email protected] | 20e0e75 | 2012-09-14 15:56:52 | [diff] [blame] | 153 | # Three lines of non-changing comments so that |
[email protected] | 10d8ac3 | 2013-10-31 13:34:31 | [diff] [blame] | 154 | # the commit queue can handle CLs rolling swarming_client |
[email protected] | 7f4fc41 | 2013-02-24 00:16:51 | [diff] [blame] | 155 | # and whatever else without interference from each other. |
Ben Pastene | 0ab642c | 2019-06-07 20:27:11 | [diff] [blame] | 156 | 'swarming_revision': '96f125709acfd0b48fc1e5dae7d6ea42291726ac', |
[email protected] | d0982f9 | 2013-03-19 10:26:20 | [diff] [blame] | 157 | # Three lines of non-changing comments so that |
[email protected] | 62f23190 | 2014-03-11 10:19:20 | [diff] [blame] | 158 | # the commit queue can handle CLs rolling ANGLE |
| 159 | # and whatever else without interference from each other. |
chromium-autoroll | 5d5855e8 | 2019-08-13 13:26:29 | [diff] [blame] | 160 | 'angle_revision': '956770025c8ca163847b5c21da596f07d024d1dd', |
[email protected] | f58d329 | 2014-05-14 01:56:54 | [diff] [blame] | 161 | # Three lines of non-changing comments so that |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 162 | # the commit queue can handle CLs rolling SwiftShader |
| 163 | # and whatever else without interference from each other. |
chromium-autoroll | 4f575e6c | 2019-08-10 21:42:02 | [diff] [blame] | 164 | 'swiftshader_revision': '34c59c9b88b76564cf534aad2f0033a472182d87', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 165 | # Three lines of non-changing comments so that |
dpranke | 7a694fe | 2015-08-18 05:11:29 | [diff] [blame] | 166 | # the commit queue can handle CLs rolling PDFium |
[email protected] | d6a2e88f1 | 2014-05-19 19:27:03 | [diff] [blame] | 167 | # and whatever else without interference from each other. |
chromium-autoroll | 8016c0d | 2019-08-13 02:01:58 | [diff] [blame] | 168 | 'pdfium_revision': '12c357b447a45e4a10a96426e84c4fa495774108', |
[email protected] | 99e1c5c | 2014-06-20 13:02:29 | [diff] [blame] | 169 | # Three lines of non-changing comments so that |
[email protected] | 7ee3af5 | 2014-07-06 18:16:47 | [diff] [blame] | 170 | # the commit queue can handle CLs rolling BoringSSL |
| 171 | # and whatever else without interference from each other. |
David Benjamin | 0cf6267 | 2019-02-11 20:30:55 | [diff] [blame] | 172 | # |
| 173 | # Note this revision should be updated with |
| 174 | # third_party/boringssl/roll_boringssl.py, not roll-dep. |
David Benjamin | 4a5aaba | 2019-08-08 18:44:17 | [diff] [blame] | 175 | 'boringssl_revision': '81080a729af568f7b5fde92b9170cc17065027c9', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 176 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 177 | # the commit queue can handle CLs rolling google-toolbox-for-mac |
| 178 | # and whatever else without interference from each other. |
Elly Fong-Jones | 86b7e2a | 2019-02-21 17:02:01 | [diff] [blame] | 179 | 'google_toolbox_for_mac_revision': 'aa1a3d2d447905999f119efbb70b3786c5eafa13', |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 180 | # Three lines of non-changing comments so that |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 181 | # the commit queue can handle CLs rolling googletest |
| 182 | # and whatever else without interference from each other. |
chromium-autoroll | e72ba85 | 2019-08-07 21:09:51 | [diff] [blame] | 183 | 'googletest_revision': '90a443f9c2437ca8a682a1ac625eba64e1d74a8a', |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 184 | # Three lines of non-changing comments so that |
szager | 29407eb | 2014-08-26 13:09:31 | [diff] [blame] | 185 | # the commit queue can handle CLs rolling lighttpd |
| 186 | # and whatever else without interference from each other. |
| 187 | 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb', |
| 188 | # Three lines of non-changing comments so that |
| 189 | # the commit queue can handle CLs rolling lss |
| 190 | # and whatever else without interference from each other. |
Mark Seaborn | 0efa4f6 | 2019-07-03 20:37:49 | [diff] [blame] | 191 | 'lss_revision': '8048ece6c16c91acfe0d36d1d3cc0890ab6e945c', |
mseaborn | 851e1bd1 | 2014-09-05 08:00:14 | [diff] [blame] | 192 | # Three lines of non-changing comments so that |
| 193 | # the commit queue can handle CLs rolling NaCl |
| 194 | # and whatever else without interference from each other. |
chromium-autoroll | 558a3c1 | 2019-07-09 02:09:43 | [diff] [blame] | 195 | 'nacl_revision': '058a26f57015051953a727add26e7e26348b9558', |
cwallez | f2b0349 | 2015-08-25 15:08:18 | [diff] [blame] | 196 | # Three lines of non-changing comments so that |
drott | fe896a8 | 2017-03-06 12:12:54 | [diff] [blame] | 197 | # the commit queue can handle CLs rolling freetype |
bcf | 53f862ea | 2016-02-02 05:08:42 | [diff] [blame] | 198 | # and whatever else without interference from each other. |
chromium-autoroll | 0ab640c | 2019-08-06 20:24:15 | [diff] [blame] | 199 | 'freetype_revision': '734d60f63cfa27f9b337ddbb80adb9edd60475bf', |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 200 | # Three lines of non-changing comments so that |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 201 | # the commit queue can handle CLs rolling HarfBuzz |
| 202 | # and whatever else without interference from each other. |
Dominik Röttsches | f4d4d111 | 2019-08-09 14:57:31 | [diff] [blame] | 203 | 'harfbuzz_revision': '60485ab0473630c585bb96fcdc14dbe415edf4f2', |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 204 | # Three lines of non-changing comments so that |
Dominik Röttsches | 191f116 | 2019-01-31 07:25:35 | [diff] [blame] | 205 | # the commit queue can handle CLs rolling Emoji Segmenter |
| 206 | # and whatever else without interference from each other. |
| 207 | 'emoji_segmenter_revision': '9ba6d25d0d9313569665d4a9d2b34f0f39f9a50e', |
| 208 | # Three lines of non-changing comments so that |
robertocn | 4567f4d | 2016-03-23 03:36:07 | [diff] [blame] | 209 | # the commit queue can handle CLs rolling catapult |
| 210 | # and whatever else without interference from each other. |
chromium-autoroll | 5fa517c | 2019-08-13 13:52:24 | [diff] [blame] | 211 | 'catapult_revision': '772d5c6161c59cc8a2815d7c096b4818e06c1d17', |
ochang | cbd1cf20 | 2016-04-01 21:37:37 | [diff] [blame] | 212 | # Three lines of non-changing comments so that |
| 213 | # the commit queue can handle CLs rolling libFuzzer |
| 214 | # and whatever else without interference from each other. |
Max Moroz | 7d3c9376 | 2019-06-21 01:10:20 | [diff] [blame] | 215 | 'libfuzzer_revision': 'b9f51dc8c98065df0c8da13c051046f5bab833db', |
chenwilliam | 56a9038 | 2016-12-09 02:16:28 | [diff] [blame] | 216 | # Three lines of non-changing comments so that |
| 217 | # the commit queue can handle CLs rolling devtools-node-modules |
| 218 | # and whatever else without interference from each other. |
John Emau | e02f9be | 2019-07-16 22:12:30 | [diff] [blame] | 219 | 'devtools_node_modules_revision': '08f835aae2a552cd8b449ec1be9d292cbacbfb8b', |
kmarshall | 520f951 | 2017-01-24 23:25:01 | [diff] [blame] | 220 | # Three lines of non-changing comments so that |
aizatsky | 8904f9c | 2017-03-03 19:50:05 | [diff] [blame] | 221 | # the commit queue can handle CLs rolling libprotobuf-mutator |
| 222 | # and whatever else without interference from each other. |
Jonathan Metzman | 85809f64 | 2019-01-24 22:55:58 | [diff] [blame] | 223 | 'libprotobuf-mutator': '439e81f8f4847ec6e2bf11b3aa634a5d8485633d', |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 224 | # Three lines of non-changing comments so that |
| 225 | # the commit queue can handle CLs rolling feed |
| 226 | # and whatever else without interference from each other. |
Sky Malice | 2e075ed | 2019-08-07 18:12:32 | [diff] [blame] | 227 | 'feed_revision': 'f4372718f4cabd57efeab02f5726ed147f29768f', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 228 | # Three lines of non-changing comments so that |
| 229 | # the commit queue can handle CLs rolling android_sdk_build-tools_version |
| 230 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 231 | 'android_sdk_build-tools_version': 'DLK621q5_Bga5EsOr7cp6bHWWxFKx6UHLu_Ix_m3AckC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 232 | # Three lines of non-changing comments so that |
| 233 | # the commit queue can handle CLs rolling android_sdk_emulator_version |
| 234 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 235 | 'android_sdk_emulator_version': 'xhyuoquVvBTcJelgRjMKZeoBVSQRjB7pLVJPt5C9saIC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 236 | # Three lines of non-changing comments so that |
| 237 | # the commit queue can handle CLs rolling android_sdk_extras_version |
| 238 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 239 | 'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC', |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 240 | # Three lines of non-changing comments so that |
| 241 | # the commit queue can handle CLs rolling android_sdk_patcher_version |
| 242 | # and whatever else without interference from each other. |
| 243 | 'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 244 | # Three lines of non-changing comments so that |
| 245 | # the commit queue can handle CLs rolling android_sdk_platform-tools_version |
| 246 | # and whatever else without interference from each other. |
Andrew Grieve | cdb1c85 | 2019-06-17 18:14:04 | [diff] [blame] | 247 | 'android_sdk_platform-tools_version': 'MSnxgXN7IurL-MQs1RrTkSFSb8Xd1UtZjLArI8Ty1FgC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 248 | # Three lines of non-changing comments so that |
| 249 | # the commit queue can handle CLs rolling android_sdk_platforms_version |
| 250 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 251 | 'android_sdk_platforms_version': 'Kg2t9p0YnQk8bldUv4VA3o156uPXLUfIFAmVZ-Gm5ewC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 252 | # Three lines of non-changing comments so that |
| 253 | # the commit queue can handle CLs rolling android_sdk_sources_version |
| 254 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 255 | 'android_sdk_sources_version': 'K9uEn3JvNELEVjjVK_GQD3ZQD3rqAnJSxCWxjmUmRkgC', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 256 | # Three lines of non-changing comments so that |
| 257 | # the commit queue can handle CLs rolling android_sdk_tools_version |
| 258 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 259 | 'android_sdk_tools_version': 'wYcRQC2WHsw2dKWs4EA7fw9Qsyzu1ds1_fRjKmGxe5QC', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 260 | # Three lines of non-changing comments so that |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 261 | # the commit queue can handle CLs rolling android_sdk_tools-lint_version |
| 262 | # and whatever else without interference from each other. |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 263 | 'android_sdk_tools-lint_version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC', |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 264 | # Three lines of non-changing comments so that |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 265 | # the commit queue can handle CLs rolling feed |
| 266 | # and whatever else without interference from each other. |
chromium-autoroll | e2c4a5c | 2019-08-13 13:25:27 | [diff] [blame] | 267 | 'spv_tools_revision': 'f701237f2d88af13fe9f920f29f288dc7157c262', |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 268 | # Three lines of non-changing comments so that |
| 269 | # the commit queue can handle CLs rolling feed |
| 270 | # and whatever else without interference from each other. |
chromium-autoroll | 204b4939 | 2019-07-12 13:04:02 | [diff] [blame] | 271 | 'spv_headers_revision': '123dc278f204f8e833e1a88d31c46d0edf81d4b2', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 272 | # Three lines of non-changing comments so that |
| 273 | # the commit queue can handle CLs rolling feed |
| 274 | # and whatever else without interference from each other. |
Corentin Wallez | f1ed6a8 | 2019-07-29 15:56:26 | [diff] [blame] | 275 | 'spirv_cross_revision': 'ffca8735ff42a9e7a3d1dbb984cf3bf2ca724ebc', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 276 | # Three lines of non-changing comments so that |
| 277 | # the commit queue can handle CLs rolling feed |
| 278 | # and whatever else without interference from each other. |
chromium-autoroll | cf2aecb | 2019-08-07 20:44:44 | [diff] [blame] | 279 | 'shaderc_revision': 'b3b228c60d635b44b0f2035cfb3ac31cf5567120', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 280 | # Three lines of non-changing comments so that |
| 281 | # the commit queue can handle CLs rolling feed |
| 282 | # and whatever else without interference from each other. |
chromium-autoroll | a88626f | 2019-08-13 14:09:15 | [diff] [blame] | 283 | 'dawn_revision': 'b6d7c537088835c386bc7850d85300f9f72d4cf6', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 284 | # Three lines of non-changing comments so that |
| 285 | # the commit queue can handle CLs rolling feed |
| 286 | # and whatever else without interference from each other. |
Bence Béky | 1c0aaae | 2019-08-11 03:41:55 | [diff] [blame] | 287 | 'quiche_revision': '4ff606217c21e4498176a096566278466a758aa5', |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 288 | # Three lines of non-changing comments so that |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 289 | # the commit queue can handle CLs rolling ios_webkit |
| 290 | # and whatever else without interference from each other. |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 291 | 'ios_webkit_revision': '59e9de61b7b36507836fa8b098e8839d7d995b13', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 292 | |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 293 | # TODO(crbug.com/941824): The values below need to be kept in sync |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 294 | # between //DEPS and //buildtools/DEPS, so if you're updating one, |
| 295 | # update the other. There is a presubmit check that checks that |
| 296 | # you've done so; if you are adding new tools to //buildtools and |
| 297 | # hence new revisions to this list, make sure you update the |
| 298 | # _CheckBuildtoolsRevsAreInSync in PRESUBMIT.py to include the additional |
| 299 | # revisions. |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 300 | |
| 301 | # GN CIPD package version. |
Takuto Ikuta | 87eab51 | 2019-07-23 19:44:53 | [diff] [blame] | 302 | 'gn_version': 'git_revision:152c5144ceed9592c20f0c8fd55769646077569b', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 303 | |
Nico Weber | 4647fbba | 2019-04-04 07:38:59 | [diff] [blame] | 304 | # Also, if you change these, update buildtools/DEPS too. Also update the |
| 305 | # libc++ svn_revision in //buildtools/deps_revisions.gni. |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 306 | 'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917', |
Morten Stenshorne | 8738e5b | 2019-06-14 10:40:23 | [diff] [blame] | 307 | 'libcxx_revision': '5938e0582bac570a41edb3d6a2217c299adc1bc6', |
Dirk Pranke | 3c18a38 | 2019-03-15 01:07:51 | [diff] [blame] | 308 | 'libcxxabi_revision': '0d529660e32d77d9111912d73f2c74fc5fa2a858', |
| 309 | 'libunwind_revision': '69d9b84cca8354117b9fe9705a4430d789ee599b', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 310 | } |
| 311 | |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 312 | # Only these hosts are allowed for dependencies in this DEPS file. |
| 313 | # If you need to add a new host, contact chrome infrastracture team. |
| 314 | allowed_hosts = [ |
tandrii | cb12c64 | 2015-03-27 19:00:55 | [diff] [blame] | 315 | 'android.googlesource.com', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 316 | 'aomedia.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 317 | 'boringssl.googlesource.com', |
Achuith Bhandarkar | f6a944c8 | 2018-02-22 21:56:04 | [diff] [blame] | 318 | 'chrome-infra-packages.appspot.com', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 319 | 'chrome-internal.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 320 | 'chromium.googlesource.com', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 321 | 'dawn.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 322 | 'pdfium.googlesource.com', |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 323 | 'quiche.googlesource.com', |
agable | 851c6f725 | 2016-11-04 17:17:39 | [diff] [blame] | 324 | 'skia.googlesource.com', |
capn | e3976c2 | 2016-08-12 22:06:17 | [diff] [blame] | 325 | 'swiftshader.googlesource.com', |
Henrik Kjellander | 7c0b28b | 2017-09-13 20:25:02 | [diff] [blame] | 326 | 'webrtc.googlesource.com', |
tandrii | 74b7e42 | 2014-09-23 16:45:27 | [diff] [blame] | 327 | ] |
| 328 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 329 | deps = { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 330 | 'src/buildtools/clang_format/script': |
| 331 | Var('chromium_git') + '/chromium/llvm-project/cfe/tools/clang-format.git@' + |
| 332 | Var('clang_format_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 333 | 'src/buildtools/linux64': { |
| 334 | 'packages': [ |
| 335 | { |
| 336 | 'package': 'gn/gn/linux-amd64', |
| 337 | 'version': Var('gn_version'), |
| 338 | } |
| 339 | ], |
| 340 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 341 | 'condition': 'host_os == "linux"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 342 | }, |
| 343 | 'src/buildtools/mac': { |
| 344 | 'packages': [ |
| 345 | { |
| 346 | 'package': 'gn/gn/mac-amd64', |
| 347 | 'version': Var('gn_version'), |
| 348 | } |
| 349 | ], |
| 350 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 351 | 'condition': 'host_os == "mac"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 352 | }, |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 353 | 'src/buildtools/third_party/libc++/trunk': |
| 354 | Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + |
| 355 | Var('libcxx_revision'), |
| 356 | 'src/buildtools/third_party/libc++abi/trunk': |
| 357 | Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + |
| 358 | Var('libcxxabi_revision'), |
| 359 | 'src/buildtools/third_party/libunwind/trunk': |
| 360 | Var('chromium_git') + '/external/llvm.org/libunwind.git' + '@' + |
| 361 | Var('libunwind_revision'), |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 362 | 'src/buildtools/win': { |
| 363 | 'packages': [ |
| 364 | { |
| 365 | 'package': 'gn/gn/windows-amd64', |
| 366 | 'version': Var('gn_version'), |
| 367 | } |
| 368 | ], |
| 369 | 'dep_type': 'cipd', |
Olivier Robin | 93b2626 | 2019-03-18 18:01:02 | [diff] [blame] | 370 | 'condition': 'host_os == "win"', |
Dirk Pranke | 6d095b4 | 2019-03-15 23:44:01 | [diff] [blame] | 371 | }, |
Tom Anderson | e7001969 | 2019-02-06 01:38:04 | [diff] [blame] | 372 | |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 373 | 'src/chrome/browser/resources/media_router/extension/src': |
mark a. foltz | 10d6bece | 2018-11-02 21:23:09 | [diff] [blame] | 374 | Var('chromium_git') + '/media_router.git' + '@' + '29324b698ccd8920bc81c71d42dadc6310f0ad0f', |
John Williams | ff7a08d | 2018-02-01 03:20:21 | [diff] [blame] | 375 | |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 376 | 'src/android_webview/tools/cts_archive': { |
| 377 | 'packages': [ |
| 378 | { |
| 379 | 'package': 'chromium/android_webview/tools/cts_archive', |
Andrew Luo | 5310745b | 2019-05-24 22:46:14 | [diff] [blame] | 380 | 'version': '5-mDBex75LGRj8ezea7057l5cu4pIXy6pjgdU1X3F78C', |
Andrew Luo | 96e2fef8d | 2018-08-22 20:18:24 | [diff] [blame] | 381 | }, |
| 382 | ], |
| 383 | 'condition': 'checkout_android', |
| 384 | 'dep_type': 'cipd', |
| 385 | }, |
| 386 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 387 | 'src/chrome/installer/mac/third_party/xz/xz': { |
| 388 | 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7', |
| 389 | 'condition': 'checkout_mac', |
| 390 | }, |
| 391 | |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 392 | 'src/tools/clang/dsymutil': { |
| 393 | 'packages': [ |
| 394 | { |
| 395 | 'package': 'chromium/llvm-build-tools/dsymutil', |
Elly Fong-Jones | 3a4d4e26 | 2019-03-20 14:42:14 | [diff] [blame] | 396 | 'version': 'OWlhXkmj18li3yhJk59Kmjbc5KdgLh56TwCd1qBdzlIC', |
Brad Hall | 2d33cbf | 2019-02-27 21:48:04 | [diff] [blame] | 397 | } |
| 398 | ], |
| 399 | 'condition': 'checkout_mac', |
| 400 | 'dep_type': 'cipd', |
| 401 | }, |
| 402 | |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 403 | 'src/chrome/test/data/autofill/captured_sites': { |
| 404 | 'packages': [ |
| 405 | { |
| 406 | 'package': 'chromium/chrome/test/data/autofill/captured_sites', |
Ian Struiksma | fe87bf2 | 2019-08-07 10:09:53 | [diff] [blame] | 407 | 'version': '27xauHcZofjRobU1o1UZrUuYaK_No7r2SSaMT6gzwd0C', |
Yiming Zhou | d369d9f | 2018-12-18 00:24:01 | [diff] [blame] | 408 | } |
| 409 | ], |
| 410 | 'condition': 'checkout_chromium_autofill_test_dependencies', |
| 411 | 'dep_type': 'cipd', |
| 412 | }, |
| 413 | |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 414 | 'src/chrome/test/data/password/captured_sites': { |
| 415 | 'packages': [ |
| 416 | { |
| 417 | 'package': 'chromium/chrome/test/data/password/captured_sites', |
Ian Struiksma | fe87bf2 | 2019-08-07 10:09:53 | [diff] [blame] | 418 | 'version': '484POXsN4YniZtOU5CH6WWuVHJK82SmGIjbpxvEHaR0C', |
Yiming Zhou | 7fa0ef4 | 2019-03-06 00:57:48 | [diff] [blame] | 419 | } |
| 420 | ], |
| 421 | 'condition': 'checkout_chromium_password_manager_test_dependencies', |
| 422 | 'dep_type': 'cipd', |
| 423 | }, |
| 424 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 425 | 'src/chrome/test/data/perf/canvas_bench': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 426 | Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732', |
[email protected] | 700e7e3 | 2012-02-22 17:04:38 | [diff] [blame] | 427 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 428 | 'src/chrome/test/data/perf/frame_rate/content': |
dpranke | 4778c71 | 2016-09-23 01:15:56 | [diff] [blame] | 429 | Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9', |
[email protected] | 40646b01 | 2011-07-26 02:30:26 | [diff] [blame] | 430 | |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 431 | 'src/chrome/test/data/safe_browsing/dmg': { |
| 432 | 'packages': [ |
| 433 | { |
| 434 | 'package': 'chromium/chrome/test/data/safe_browsing/dmg', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 435 | 'version': 'a543ae3f0b3e67dd5a1c75f63317231a1d242912', |
Robert Sesek | 1a726e0 | 2018-08-17 18:39:43 | [diff] [blame] | 436 | }, |
| 437 | ], |
| 438 | 'condition': 'checkout_mac', |
| 439 | 'dep_type': 'cipd', |
| 440 | }, |
| 441 | |
bsheedy | a9ced4c4 | 2018-07-14 00:28:00 | [diff] [blame] | 442 | 'src/chrome/test/data/xr/webvr_info': |
bsheedy | ac7c01a | 2017-11-07 18:53:12 | [diff] [blame] | 443 | Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248', |
bsheedy | 01d9394 | 2017-07-27 22:49:38 | [diff] [blame] | 444 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 445 | 'src/ios/third_party/earl_grey/src': { |
Rohit Rao | bf444774 | 2019-07-01 21:40:32 | [diff] [blame] | 446 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '498c7945364ed83c9edd46a81b64ebcb06a2fdb9', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 447 | 'condition': 'checkout_ios', |
| 448 | }, |
| 449 | |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 450 | 'src/ios/third_party/earl_grey2/src': { |
Rohit Rao | 4fed4daa | 2019-07-18 21:50:51 | [diff] [blame] | 451 | 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '1139ce0d7c9bb280b89acf6d7c0ef8255884e906', |
Lindsay Pasricha | b31f6c6 | 2018-10-11 00:09:44 | [diff] [blame] | 452 | 'condition': 'checkout_ios', |
| 453 | }, |
| 454 | |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 455 | 'src/ios/third_party/edo/src': { |
Rohit Rao | 76e3f160 | 2019-03-15 02:22:48 | [diff] [blame] | 456 | 'url': Var('chromium_git') + '/external/github.com/google/eDistantObject.git' + '@' + '57586e7213892461228ca5543fd37f89ca0e7591', |
Lindsay Pasricha | b0d775f | 2018-10-12 22:04:35 | [diff] [blame] | 457 | 'condition': 'checkout_ios', |
| 458 | }, |
| 459 | |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 460 | 'src/ios/third_party/gtx/src': { |
Lindsay Pasricha | a36c8c9 | 2018-10-10 18:44:33 | [diff] [blame] | 461 | 'url': Var('chromium_git') + '/external/github.com/google/GTXiLib.git' + '@' + '3e09baa61b2c13fe98029d53b1783f4ca9edaabf', |
Lindsay Pasricha | be000ae2 | 2018-08-22 15:21:49 | [diff] [blame] | 462 | 'condition': 'checkout_ios', |
| 463 | }, |
| 464 | |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 465 | 'src/ios/third_party/firebase': { |
| 466 | 'packages': [ |
| 467 | { |
| 468 | 'package': 'chromium/third_party/firebase_ios', |
Peter K. Lee | 4f7d3be | 2019-03-11 18:52:09 | [diff] [blame] | 469 | 'version': 'QmLncusdxHhHwXryoNEHHUGacx1Tg5ij449uwZL2dpAC', |
Peter K. Lee | 8c44751 | 2018-06-01 16:06:03 | [diff] [blame] | 470 | }, |
| 471 | ], |
| 472 | 'condition': 'checkout_ios', |
| 473 | 'dep_type': 'cipd', |
| 474 | }, |
| 475 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 476 | 'src/ios/third_party/fishhook/src': { |
| 477 | 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c', |
| 478 | 'condition': 'checkout_ios', |
| 479 | }, |
| 480 | |
| 481 | 'src/ios/third_party/gcdwebserver/src': { |
| 482 | 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0', |
| 483 | 'condition': 'checkout_ios', |
| 484 | }, |
| 485 | |
| 486 | 'src/ios/third_party/material_components_ios/src': { |
chromium-autoroll | aa31503 | 2019-07-25 16:26:55 | [diff] [blame] | 487 | 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'e5a70e02cd24d86f9c3e1a9298c4ddca4555bd40', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 488 | 'condition': 'checkout_ios', |
| 489 | }, |
| 490 | |
| 491 | 'src/ios/third_party/material_font_disk_loader_ios/src': { |
iOS Autoroller | ed4c9f7 | 2017-12-21 15:01:19 | [diff] [blame] | 492 | '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] | 493 | 'condition': 'checkout_ios', |
| 494 | }, |
| 495 | |
Gauthier Ambard | 8d03446 | 2017-10-25 16:39:55 | [diff] [blame] | 496 | 'src/ios/third_party/material_internationalization_ios/src': { |
iOS Autoroller | e05fdaf | 2018-12-13 05:28:55 | [diff] [blame] | 497 | '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] | 498 | 'condition': 'checkout_ios', |
| 499 | }, |
| 500 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 501 | 'src/ios/third_party/material_roboto_font_loader_ios/src': { |
iOS Autoroller | e6956864 | 2019-04-10 22:10:09 | [diff] [blame] | 502 | '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] | 503 | 'condition': 'checkout_ios', |
| 504 | }, |
| 505 | |
| 506 | 'src/ios/third_party/material_sprited_animation_view_ios/src': { |
iOS Autoroller | 97e4174 | 2018-09-28 18:04:05 | [diff] [blame] | 507 | '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] | 508 | 'condition': 'checkout_ios', |
| 509 | }, |
| 510 | |
| 511 | 'src/ios/third_party/material_text_accessibility_ios/src': { |
iOS Autoroller | efb260a | 2018-12-06 02:20:00 | [diff] [blame] | 512 | '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] | 513 | 'condition': 'checkout_ios', |
| 514 | }, |
| 515 | |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 516 | 'src/ios/third_party/motion_interchange_objc/src': { |
iOS Autoroller | d5b8633f | 2019-03-08 21:07:25 | [diff] [blame] | 517 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '8e25f1ca599543dc77e4016b588763dcba6cbac8', |
mrefaat | 070940d | 2017-12-01 02:59:38 | [diff] [blame] | 518 | 'condition': 'checkout_ios', |
| 519 | }, |
| 520 | |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 521 | 'src/ios/third_party/motion_animator_objc/src': { |
iOS Autoroller | 0193585 | 2019-03-12 12:33:45 | [diff] [blame] | 522 | 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '0581bc3dfacd34e40381e9cf45a15070b3868ba7', |
mrefaat | b4b86231 | 2017-12-01 20:03:05 | [diff] [blame] | 523 | 'condition': 'checkout_ios', |
| 524 | }, |
| 525 | |
Louis Romero | e1d7329 | 2017-12-07 01:28:17 | [diff] [blame] | 526 | 'src/ios/third_party/motion_transitioning_objc/src': { |
chromium-autoroll | c52e680 | 2019-06-26 20:47:26 | [diff] [blame] | 527 | '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] | 528 | 'condition': 'checkout_ios', |
| 529 | }, |
| 530 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 531 | 'src/ios/third_party/ochamcrest/src': { |
Eric Noyau | daabeb5 | 2017-10-13 16:29:11 | [diff] [blame] | 532 | 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 533 | 'condition': 'checkout_ios', |
| 534 | }, |
| 535 | |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 536 | 'src/ios/third_party/webkit/src': { |
Rohit Rao | bfb3bf8 | 2019-02-15 18:45:11 | [diff] [blame] | 537 | 'url': Var('chromium_git') + '/external/github.com/WebKit/webkit.git' + |
| 538 | '@' + Var('ios_webkit_revision'), |
Rohit Rao | 5b416041 | 2019-02-05 20:12:54 | [diff] [blame] | 539 | 'condition': 'checkout_ios and checkout_ios_webkit' |
| 540 | }, |
| 541 | |
jrummell | f715b169 | 2015-10-21 23:26:26 | [diff] [blame] | 542 | 'src/media/cdm/api': |
Xiaohan Wang | e1491e7 | 2019-06-04 02:07:50 | [diff] [blame] | 543 | Var('chromium_git') + '/chromium/cdm.git' + '@' + 'bc262e26cd2dca812f05bdad3b37398839e63007', |
[email protected] | 255c43f | 2013-06-07 08:54:11 | [diff] [blame] | 544 | |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 545 | 'src/native_client': { |
| 546 | 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'), |
| 547 | 'condition': 'checkout_nacl', |
| 548 | }, |
[email protected] | bba1c0dd | 2013-08-19 10:33:31 | [diff] [blame] | 549 | |
Victor Vasiliev | 92c06acc | 2018-12-08 10:16:27 | [diff] [blame] | 550 | 'src/net/third_party/quiche/src': |
| 551 | Var('quiche_git') + '/quiche.git' + '@' + Var('quiche_revision'), |
| 552 | |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 553 | 'src/tools/luci-go': { |
| 554 | 'packages': [ |
| 555 | { |
| 556 | 'package': 'infra/tools/luci/isolate/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 557 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 558 | }, |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 559 | { |
| 560 | 'package': 'infra/tools/luci/isolated/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 561 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 562 | }, |
| 563 | { |
| 564 | 'package': 'infra/tools/luci/swarming/${{platform}}', |
Takuto Ikuta | 409e0ff6 | 2018-12-06 14:58:11 | [diff] [blame] | 565 | 'version': Var('luci_go'), |
Marc-Antoine Ruel | cff3ea2 | 2018-10-19 20:56:08 | [diff] [blame] | 566 | }, |
Marc-Antoine Ruel | 8181595 | 2018-07-13 00:26:44 | [diff] [blame] | 567 | ], |
| 568 | 'dep_type': 'cipd', |
| 569 | }, |
| 570 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 571 | # SPIRV-Cross is in third_party/spirv-cross/spirv-cross instead of |
| 572 | # third_party/spirv-cross/src because its header files are at the root of |
| 573 | # the repository and dependencies include them like so: |
| 574 | # #include "spirv-cross/spirv_glsl.hpp" |
| 575 | 'src/third_party/spirv-cross/spirv-cross': |
| 576 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Cross.git@' + |
| 577 | Var('spirv_cross_revision'), |
| 578 | |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 579 | 'src/third_party/spirv-headers/src': |
| 580 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Headers.git@' + |
| 581 | Var('spv_headers_revision'), |
| 582 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 583 | 'src/third_party/SPIRV-Tools/src': |
dan sinclair | c99b824 | 2018-08-01 20:09:36 | [diff] [blame] | 584 | Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git@' + |
| 585 | Var('spv_tools_revision'), |
jinsukkim | 21d3369fc | 2016-06-21 06:16:03 | [diff] [blame] | 586 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 587 | 'src/third_party/shaderc/src': |
| 588 | Var('chromium_git') + '/external/github.com/google/shaderc.git@' + |
| 589 | Var('shaderc_revision'), |
| 590 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 591 | 'src/third_party/accessibility_test_framework': { |
| 592 | 'packages': [ |
| 593 | { |
| 594 | 'package': 'chromium/third_party/accessibility-test-framework', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 595 | 'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 596 | }, |
| 597 | ], |
| 598 | 'condition': 'checkout_android', |
| 599 | 'dep_type': 'cipd', |
| 600 | }, |
| 601 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 602 | 'src/third_party/android_protobuf/src': { |
Aaron Gable | 6fcf006 | 2018-02-22 20:28:57 | [diff] [blame] | 603 | 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 604 | 'condition': 'checkout_android', |
| 605 | }, |
| 606 | |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 607 | 'src/third_party/android_ndk': { |
Peter Collingbourne | 69af524 | 2018-08-16 03:30:15 | [diff] [blame] | 608 | 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '4e2cea441bfd43f0863d14f57b1e1844260b9884', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 609 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | 0c102b1 | 2018-01-11 00:25:57 | [diff] [blame] | 610 | }, |
| 611 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 612 | 'src/third_party/android_support_test_runner': { |
| 613 | 'packages': [ |
| 614 | { |
| 615 | 'package': 'chromium/third_party/android_support_test_runner', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 616 | 'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 617 | }, |
| 618 | ], |
| 619 | 'condition': 'checkout_android', |
| 620 | 'dep_type': 'cipd', |
| 621 | }, |
| 622 | |
| 623 | 'src/third_party/android_system_sdk': { |
| 624 | 'packages': [ |
| 625 | { |
| 626 | 'package': 'chromium/third_party/android_system_sdk', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 627 | 'version': '0c0a94a9326c045c8aabb7fc418ea9c849b782f2', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 628 | }, |
| 629 | ], |
| 630 | 'condition': 'checkout_android', |
| 631 | 'dep_type': 'cipd', |
| 632 | }, |
| 633 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 634 | 'src/third_party/android_build_tools/aapt2': { |
| 635 | 'packages': [ |
| 636 | { |
Mohamed Heikal | 2747b4b | 2018-10-31 22:20:42 | [diff] [blame] | 637 | 'package': 'chromium/third_party/android_build_tools/aapt2', |
Mohamed Heikal | edaafe6 | 2019-08-13 15:20:33 | [diff] [blame^] | 638 | 'version': 'by7YdhjwRQYtrv0Q_q_fPsqptrm5ib-SXmiNfgJYp50C', |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 639 | }, |
| 640 | ], |
| 641 | 'condition': 'checkout_android', |
| 642 | 'dep_type': 'cipd', |
| 643 | }, |
| 644 | |
Matthew Cary | 775dab7 | 2018-09-20 06:19:03 | [diff] [blame] | 645 | 'src/third_party/android_build_tools/art': { |
| 646 | 'packages': [ |
| 647 | { |
| 648 | 'package': 'chromium/third_party/android_build_tools/art', |
| 649 | 'version': '87169fbc701d244c311e6aa8843591a7f1710bc0', |
| 650 | }, |
| 651 | ], |
| 652 | 'condition': 'checkout_android', |
| 653 | 'dep_type': 'cipd', |
| 654 | }, |
| 655 | |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 656 | 'src/third_party/android_build_tools/bundletool': { |
| 657 | 'packages': [ |
| 658 | { |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 659 | 'package': 'chromium/third_party/android_tools_bundletool', |
Mohamed Heikal | df05dd9 | 2019-06-20 21:01:39 | [diff] [blame] | 660 | 'version': 'sZ4fDz_PUiCe1yvyheO_yjeET3eVhFTFTmGaXsnrH9IC', |
depot-tools-chromium-autoroll | 78adb83d | 2018-06-22 14:23:21 | [diff] [blame] | 661 | }, |
David 'Digit' Turner | 4ff35dfa | 2018-06-22 11:31:03 | [diff] [blame] | 662 | ], |
| 663 | 'condition': 'checkout_android', |
| 664 | 'dep_type': 'cipd', |
| 665 | }, |
| 666 | |
Peter Conn | 6eb0e1d | 2019-08-08 07:39:05 | [diff] [blame] | 667 | 'src/third_party/android_sdk/androidx_browser/src': { |
| 668 | 'url': Var('chromium_git') + '/external/gob/android/platform/frameworks/support/browser.git' + '@' + 'aeeea8bd0a6703bc4a148e9bcd6998553def74ab', |
| 669 | 'condition': 'checkout_android', |
| 670 | }, |
| 671 | |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 672 | 'src/third_party/android_sdk/public': { |
| 673 | 'packages': [ |
| 674 | { |
| 675 | 'package': 'chromium/third_party/android_sdk/public/build-tools', |
| 676 | 'version': Var('android_sdk_build-tools_version'), |
| 677 | }, |
| 678 | { |
| 679 | 'package': 'chromium/third_party/android_sdk/public/emulator', |
| 680 | 'version': Var('android_sdk_emulator_version'), |
| 681 | }, |
| 682 | { |
| 683 | 'package': 'chromium/third_party/android_sdk/public/extras', |
| 684 | 'version': Var('android_sdk_extras_version'), |
| 685 | }, |
| 686 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 687 | 'package': 'chromium/third_party/android_sdk/public/patcher', |
| 688 | 'version': Var('android_sdk_patcher_version'), |
| 689 | }, |
| 690 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 691 | 'package': 'chromium/third_party/android_sdk/public/platform-tools', |
| 692 | 'version': Var('android_sdk_platform-tools_version'), |
| 693 | }, |
| 694 | { |
| 695 | 'package': 'chromium/third_party/android_sdk/public/platforms', |
| 696 | 'version': Var('android_sdk_platforms_version'), |
| 697 | }, |
| 698 | { |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 699 | 'package': 'chromium/third_party/android_sdk/public/sources', |
| 700 | 'version': Var('android_sdk_sources_version'), |
| 701 | }, |
| 702 | { |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 703 | 'package': 'chromium/third_party/android_sdk/public/tools', |
| 704 | 'version': Var('android_sdk_tools_version'), |
| 705 | }, |
Yun Liu | 161d3768 | 2019-03-11 17:04:11 | [diff] [blame] | 706 | { |
| 707 | 'package': 'chromium/third_party/android_sdk/public/tools-lint', |
| 708 | 'version': Var('android_sdk_tools-lint_version'), |
| 709 | }, |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 710 | ], |
Yun Liu | f57cceaf | 2019-03-18 21:31:23 | [diff] [blame] | 711 | 'condition': 'checkout_android_native_support', |
Shenghua Zhang | cbe64ba | 2018-04-12 19:11:49 | [diff] [blame] | 712 | 'dep_type': 'cipd', |
| 713 | }, |
| 714 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 715 | 'src/third_party/angle': |
| 716 | Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 717 | |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 718 | 'src/third_party/dav1d/libdav1d': |
Dale Curtis | 04d1b6e | 2019-07-12 01:07:20 | [diff] [blame] | 719 | Var('chromium_git') + '/external/github.com/videolan/dav1d.git' + '@' + '6ef9a030145eef79fdeab6d4d38e00423ae7a83d', |
Dale Curtis | 9e73ba9 | 2019-02-05 21:49:23 | [diff] [blame] | 720 | |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 721 | 'src/third_party/dawn': |
| 722 | Var('dawn_git') + '/dawn.git' + '@' + Var('dawn_revision'), |
| 723 | |
| 724 | 'src/third_party/glfw/src': |
Corentin Wallez | 3a71757 | 2018-11-19 12:37:30 | [diff] [blame] | 725 | Var('chromium_git') + '/external/github.com/glfw/glfw.git@' + '2de2589f910b1a85905f425be4d32f33cec092df', |
Corentin Wallez | 955059ff | 2018-10-21 10:47:39 | [diff] [blame] | 726 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 727 | 'src/third_party/apache-portable-runtime/src': { |
bsheedy | 2a59f25 | 2018-01-03 21:30:05 | [diff] [blame] | 728 | 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 729 | 'condition': 'checkout_android', |
| 730 | }, |
| 731 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 732 | 'src/third_party/apk-patch-size-estimator': { |
| 733 | 'packages': [ |
| 734 | { |
| 735 | 'package': 'chromium/third_party/apk-patch-size-estimator', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 736 | 'version': 'b603e99dca9b90d6a99519c232cd811878283b08', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 737 | }, |
| 738 | ], |
| 739 | 'condition': 'checkout_android', |
| 740 | 'dep_type': 'cipd', |
| 741 | }, |
| 742 | |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 743 | 'src/third_party/auto/src': { |
Peter Wen | 4689398 | 2018-01-18 16:53:46 | [diff] [blame] | 744 | 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82', |
Peter Wen | d0cc6d6 | 2017-11-02 16:32:30 | [diff] [blame] | 745 | 'condition': 'checkout_android', |
| 746 | }, |
| 747 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 748 | 'src/third_party/bazel': { |
| 749 | 'packages': [ |
| 750 | { |
| 751 | 'package': 'chromium/third_party/bazel', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 752 | 'version': '1794576f65a721eb0af320a0701e48d31f1b2415', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 753 | }, |
| 754 | ], |
| 755 | 'condition': 'checkout_android', |
| 756 | 'dep_type': 'cipd', |
| 757 | }, |
| 758 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 759 | 'src/third_party/bison': { |
| 760 | 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3', |
| 761 | 'condition': 'checkout_win', |
| 762 | }, |
| 763 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 764 | 'src/third_party/boringssl/src': |
| 765 | Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'), |
| 766 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 767 | 'src/third_party/bouncycastle': { |
| 768 | 'packages': [ |
| 769 | { |
| 770 | 'package': 'chromium/third_party/bouncycastle', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 771 | 'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 772 | }, |
| 773 | ], |
| 774 | 'condition': 'checkout_android', |
| 775 | 'dep_type': 'cipd', |
| 776 | }, |
| 777 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 778 | 'src/third_party/breakpad/breakpad': |
Nelson Billing | d1aea362 | 2019-07-01 21:13:23 | [diff] [blame] | 779 | Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'c46151db0ffd1a8dae914e45f1212ef427f61ed3', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 780 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 781 | 'src/third_party/byte_buddy': { |
| 782 | 'packages': [ |
| 783 | { |
| 784 | 'package': 'chromium/third_party/byte_buddy', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 785 | 'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 786 | }, |
| 787 | ], |
| 788 | 'condition': 'checkout_android', |
| 789 | 'dep_type': 'cipd', |
| 790 | }, |
| 791 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 792 | 'src/third_party/catapult': |
| 793 | Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'), |
| 794 | |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 795 | 'src/third_party/cct_dynamic_module/src': { |
Anna Malova | 0a90106 | 2019-01-23 16:27:31 | [diff] [blame] | 796 | 'url': Var('chromium_git') + '/dynamicmodule' + '@' + '441bbbf3ab849b8816bb2c827a51df9a81b83a4f', |
Anna Malova | 330612f | 2018-09-07 14:08:55 | [diff] [blame] | 797 | 'condition': 'checkout_android', |
| 798 | }, |
| 799 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 800 | 'src/third_party/ced/src': |
Jinsuk Kim | 69fae80a | 2019-02-22 01:26:38 | [diff] [blame] | 801 | Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + 'ba412eaaacd3186085babcd901679a48863c7dd5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 802 | |
Andrew Grieve | 0fa8787 | 2019-03-15 22:21:12 | [diff] [blame] | 803 | 'src/third_party/checkstyle': { |
| 804 | 'packages': [ |
| 805 | { |
| 806 | 'package': 'chromium/third_party/checkstyle', |
| 807 | 'version': 'y17J5dqst1qkBcbJyie8jltB2oFOgaQjFZ5k9UpbbbwC', |
| 808 | }, |
| 809 | ], |
| 810 | # Must also be downloaded on linux for use on chromium_presubmit. |
| 811 | 'condition': 'checkout_android or checkout_linux', |
| 812 | 'dep_type': 'cipd', |
| 813 | }, |
| 814 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 815 | # Build tools for Chrome OS. Note: This depends on third_party/pyelftools. |
| 816 | 'src/third_party/chromite': { |
chromium-autoroll | c8d23a5 | 2019-08-13 13:46:08 | [diff] [blame] | 817 | 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '7588713317d681bbf37e7df716c691bfbecd3524', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 818 | 'condition': 'checkout_linux', |
| 819 | }, |
| 820 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 821 | 'src/third_party/cld_3/src': |
Akihiro Ota | 1fb5ba9 | 2019-04-25 02:23:20 | [diff] [blame] | 822 | Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '06f695f1c8ee530104416aab5dcf2d6a1414a56a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 823 | |
| 824 | 'src/third_party/colorama/src': |
| 825 | Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8', |
| 826 | |
| 827 | 'src/third_party/crc32c/src': |
Staphany Park | 5a0eb9a | 2019-03-02 01:39:31 | [diff] [blame] | 828 | Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '5998f8451548244de8cde7fab387a550e7c4497d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 829 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 830 | # For Linux and Chromium OS. |
| 831 | 'src/third_party/cros_system_api': { |
Zakhar Voit | cf3bbcc1 | 2019-08-07 08:24:53 | [diff] [blame] | 832 | 'url': Var('chromium_git') + '/chromiumos/platform2/system_api.git' + '@' + 'c267899484bac0f024a10b32452d4cee6ffa6068', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 833 | 'condition': 'checkout_linux', |
| 834 | }, |
| 835 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 836 | 'src/third_party/custom_tabs_client/src': { |
Pavel Shmakov | 4ea4dac | 2019-05-30 20:46:45 | [diff] [blame] | 837 | 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a633542d9854151eb4f0bfd1d93da88f5934a11a', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 838 | 'condition': 'checkout_android', |
| 839 | }, |
| 840 | |
| 841 | 'src/third_party/depot_tools': |
chromium-autoroll | 1979c7f | 2019-08-13 05:21:09 | [diff] [blame] | 842 | Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '9fc459b69c7840c3c67d2359cd8931e962bcae84', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 843 | |
Will Chen | 48fbfe0f | 2018-01-03 01:26:35 | [diff] [blame] | 844 | 'src/third_party/devtools-node-modules': |
| 845 | Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'), |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 846 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 847 | 'src/third_party/dom_distiller_js/dist': |
Wei-Yin Chen (陳威尹) | 4649962 | 2018-08-16 01:29:57 | [diff] [blame] | 848 | Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '3093c3e238768ab27ff756bd7563ccbb12129d9f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 849 | |
| 850 | 'src/third_party/elfutils/src': { |
| 851 | 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7', |
Ken Rockot | 027d7fa | 2018-05-01 03:10:06 | [diff] [blame] | 852 | 'condition': 'checkout_android_native_support', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 853 | }, |
| 854 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 855 | 'src/third_party/errorprone/lib': { |
Peter Wen | a9d8462a | 2018-04-25 17:18:12 | [diff] [blame] | 856 | 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '980d49e839aa4984015efed34b0134d4b2c9b6d7', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 857 | 'condition': 'checkout_android', |
| 858 | }, |
| 859 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 860 | 'src/third_party/espresso': { |
| 861 | 'packages': [ |
| 862 | { |
| 863 | 'package': 'chromium/third_party/espresso', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 864 | 'version': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 865 | }, |
| 866 | ], |
| 867 | 'condition': 'checkout_android', |
| 868 | 'dep_type': 'cipd', |
| 869 | }, |
| 870 | |
Filip Gorski | 796be85 | 2018-03-02 19:36:36 | [diff] [blame] | 871 | 'src/third_party/feed/src': { |
| 872 | 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'), |
| 873 | 'condition': 'checkout_android', |
| 874 | }, |
| 875 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 876 | 'src/third_party/ffmpeg': |
Matt Wolenetz | 983a0eb | 2019-07-25 20:27:13 | [diff] [blame] | 877 | Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'e0e3133c40fbca0032a2d9400da736e4b933882f', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 878 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 879 | 'src/third_party/flac': |
Philip Jägenstedt | dfc96c1 | 2018-05-04 14:46:37 | [diff] [blame] | 880 | Var('chromium_git') + '/chromium/deps/flac.git' + '@' + 'af862024c8c8fa0ae07ced05e89013d881b00596', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 881 | |
| 882 | 'src/third_party/flatbuffers/src': |
Nico Weber | 3d8d4b6 | 2019-02-25 21:46:43 | [diff] [blame] | 883 | Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '9bf9b18f0a705dfd6d50b98056463a55de6a1bf9', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 884 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 885 | # Used for embedded builds. CrOS & Linux use the system version. |
| 886 | 'src/third_party/fontconfig/src': { |
Tom Anderson | d9d67cb2 | 2018-09-13 00:46:29 | [diff] [blame] | 887 | 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'ba206df9b9a7ca300265f650842c1459ff7c634a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 888 | 'condition': 'checkout_linux', |
| 889 | }, |
| 890 | |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 891 | 'src/third_party/grpc/src': { |
Yuwei Huang | 58e95e2 | 2019-07-16 21:35:22 | [diff] [blame] | 892 | 'url': Var('chromium_git') + '/external/github.com/grpc/grpc.git' + '@' + '74b981a6a3d9ba17f3acae1d72b9109325ef656d', |
Yuwei Huang | a38af698d | 2019-02-19 22:00:58 | [diff] [blame] | 893 | }, |
| 894 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 895 | 'src/third_party/freetype/src': |
| 896 | Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'), |
| 897 | |
Dominik Röttsches | 60dab7e1 | 2018-03-20 09:55:47 | [diff] [blame] | 898 | 'src/third_party/harfbuzz-ng/src': |
| 899 | Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'), |
| 900 | |
Joey Scarr | 28fc3009 | 2019-02-04 10:10:20 | [diff] [blame] | 901 | 'src/third_party/emoji-segmenter/src': |
Lei Zhang | b3ce3d1 | 2019-07-19 01:01:16 | [diff] [blame] | 902 | 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] | 903 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 904 | # Chrome OS touchpad gestures library. |
| 905 | 'src/third_party/gestures/gestures': { |
David Reveman | e25bd88e | 2017-10-02 21:06:05 | [diff] [blame] | 906 | 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 907 | 'condition': 'checkout_linux', |
| 908 | }, |
| 909 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 910 | 'src/third_party/glslang/src': |
chromium-autoroll | 8f1ff9d | 2019-08-10 12:35:09 | [diff] [blame] | 911 | Var('chromium_git') + '/external/github.com/KhronosGroup/glslang.git' + '@' + '37fc4d27d612d3b0c916933e16dab3da5bb7ab34', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 912 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 913 | 'src/third_party/google_toolbox_for_mac/src': { |
| 914 | 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'), |
| 915 | 'condition': 'checkout_ios or checkout_mac', |
| 916 | }, |
| 917 | |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 918 | 'src/third_party/google-truth': { |
| 919 | 'packages': [ |
| 920 | { |
| 921 | 'package': 'chromium/third_party/google-truth', |
Gang Wu | d2b9c11 | 2019-06-06 15:24:00 | [diff] [blame] | 922 | 'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC', |
Andrew Luo | 82d0e9f | 2018-05-24 20:46:36 | [diff] [blame] | 923 | }, |
| 924 | ], |
| 925 | 'condition': 'checkout_android', |
| 926 | 'dep_type': 'cipd', |
| 927 | }, |
| 928 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 929 | 'src/third_party/googletest/src': |
Victor Costan | 97d0cebe | 2019-03-23 00:24:02 | [diff] [blame] | 930 | Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + Var('googletest_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 931 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 932 | # GNU binutils assembler for x86-32. |
| 933 | 'src/third_party/gnu_binutils': { |
| 934 | 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 935 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 936 | }, |
| 937 | |
| 938 | 'src/third_party/gperf': { |
| 939 | 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1', |
| 940 | 'condition': 'checkout_win', |
| 941 | }, |
| 942 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 943 | 'src/third_party/gson': { |
| 944 | 'packages': [ |
| 945 | { |
| 946 | 'package': 'chromium/third_party/gson', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 947 | 'version': '681931c9778045903a0ed59856ce2dd8dd7bf7ca', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 948 | }, |
| 949 | ], |
| 950 | 'condition': 'checkout_android', |
| 951 | 'dep_type': 'cipd', |
| 952 | }, |
| 953 | |
| 954 | 'src/third_party/guava': { |
| 955 | 'packages': [ |
| 956 | { |
| 957 | 'package': 'chromium/third_party/guava', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 958 | 'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 959 | }, |
| 960 | ], |
| 961 | 'condition': 'checkout_android', |
| 962 | 'dep_type': 'cipd', |
| 963 | }, |
| 964 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 965 | 'src/third_party/gvr-android-sdk/src': { |
Michael Thiessen | 9b0bf72 | 2018-03-01 22:41:52 | [diff] [blame] | 966 | '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] | 967 | 'condition': 'checkout_android', |
| 968 | }, |
| 969 | |
Ian Vollick | 244bd88 | 2018-04-27 01:12:53 | [diff] [blame] | 970 | 'src/third_party/arcore-android-sdk/src': { |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 971 | '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] | 972 | 'condition': 'checkout_android', |
| 973 | }, |
| 974 | |
Piotr Bialecki | e1b6bfb | 2019-07-18 23:43:29 | [diff] [blame] | 975 | 'src/third_party/arcore-android-sdk-client': { |
| 976 | 'packages': [ |
| 977 | { |
| 978 | 'package': 'chromium/third_party/arcore-android-sdk-client', |
| 979 | 'version': 'Ki3Nxeov-cyGeHGIxrhG1teX7zYstsUtg1k-SAQ8CpAC', |
| 980 | }, |
| 981 | ], |
| 982 | |
| 983 | 'condition': 'checkout_android', |
| 984 | 'dep_type': 'cipd', |
| 985 | }, |
| 986 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 987 | 'src/third_party/hamcrest': { |
| 988 | 'packages': [ |
| 989 | { |
| 990 | 'package': 'chromium/third_party/hamcrest', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 991 | 'version': '37eccfc658fe79695d6abb6dd497463c4372032f', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 992 | }, |
| 993 | ], |
| 994 | 'condition': 'checkout_android', |
| 995 | 'dep_type': 'cipd', |
| 996 | }, |
| 997 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 998 | 'src/third_party/hunspell_dictionaries': |
Mohamed Mansour | 566c268 | 2019-08-08 19:30:50 | [diff] [blame] | 999 | Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'ecb3c4f4ce2c13278699489bd6356a31e1ee4d11', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1000 | |
| 1001 | 'src/third_party/icu': |
Frank Tang | afad3d1 | 2019-08-13 00:20:43 | [diff] [blame] | 1002 | Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '9a5af81f58a2bc2ea7a887505e38b50021496194', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1003 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1004 | 'src/third_party/icu4j': { |
| 1005 | 'packages': [ |
| 1006 | { |
| 1007 | 'package': 'chromium/third_party/icu4j', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1008 | 'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1009 | }, |
| 1010 | ], |
| 1011 | 'condition': 'checkout_android', |
| 1012 | 'dep_type': 'cipd', |
| 1013 | }, |
| 1014 | |
| 1015 | 'src/third_party/intellij': { |
| 1016 | 'packages': [ |
| 1017 | { |
| 1018 | 'package': 'chromium/third_party/intellij', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1019 | 'version': '77c2721b024b36ee073402c08e6d8428c0295336', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1020 | }, |
| 1021 | ], |
| 1022 | 'condition': 'checkout_android', |
| 1023 | 'dep_type': 'cipd', |
| 1024 | }, |
| 1025 | |
Ben Joyce | dde37c2 | 2019-04-12 19:36:19 | [diff] [blame] | 1026 | 'src/third_party/jacoco': { |
| 1027 | 'packages': [ |
| 1028 | { |
| 1029 | 'package': 'chromium/third_party/jacoco', |
| 1030 | 'version': 'O8mNUqIbFxvOcBsSNfbvpdUFvY4nfrPY0QA2kHoO2pQC', |
| 1031 | }, |
| 1032 | ], |
| 1033 | 'condition': 'checkout_android', |
| 1034 | 'dep_type': 'cipd', |
| 1035 | }, |
| 1036 | |
Tibor Goldschwendt | 38cc208 | 2019-06-03 21:59:28 | [diff] [blame] | 1037 | 'src/third_party/javalang/src': { |
| 1038 | 'url': Var('chromium_git') + '/external/github.com/c2nes/javalang.git' + '@' + 'f98ffcb31d1daa57fbe5bd6def8ad7c3126d8242', |
| 1039 | 'condition': 'checkout_android', |
| 1040 | }, |
| 1041 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1042 | 'src/third_party/jsoncpp/source': |
Jordan Bayles | d4a7c4e | 2019-07-12 01:09:04 | [diff] [blame] | 1043 | Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' |
| 1044 | + '@' + '645250b6690785be60ab6780ce4b58698d884d11', # release 1.9.1 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1045 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1046 | 'src/third_party/jsr-305/src': { |
| 1047 | 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919', |
| 1048 | 'condition': 'checkout_android', |
| 1049 | }, |
| 1050 | |
| 1051 | 'src/third_party/junit/src': { |
| 1052 | 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481', |
| 1053 | 'condition': 'checkout_android', |
| 1054 | }, |
| 1055 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1056 | 'src/third_party/leveldatabase/src': |
Victor Costan | 5ea6354 | 2019-07-12 23:15:42 | [diff] [blame] | 1057 | Var('chromium_git') + '/external/leveldb.git' + '@' + '53e280b56866ac4c90a9f5fcfe02ebdfd4a19832', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1058 | |
| 1059 | 'src/third_party/libFuzzer/src': |
Max Moroz | 1ee969e | 2017-10-04 16:27:26 | [diff] [blame] | 1060 | 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] | 1061 | |
| 1062 | 'src/third_party/libaddressinput/src': |
Parastoo Geranmayeh | e822ba9 | 2019-04-02 14:46:43 | [diff] [blame] | 1063 | Var('chromium_git') + '/external/libaddressinput.git' + '@' + '56c60affb5de83c10ebf5f11d9adcdd70648ab71', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1064 | |
Johann | 987d153 | 2018-11-19 22:07:27 | [diff] [blame] | 1065 | 'src/third_party/libaom/source/libaom': |
Wan-Teh Chang | 594b4733 | 2019-02-13 13:46:17 | [diff] [blame] | 1066 | Var('aomedia_git') + '/aom.git' + '@' + '625cded0550bb79efd10d98a9809a7ccd72a8f60', |
Johann | cf5bb4c6 | 2017-10-30 23:21:34 | [diff] [blame] | 1067 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1068 | # Userspace interface to kernel DRM services. |
| 1069 | 'src/third_party/libdrm/src': { |
Robert Kroeger | 43841d2 | 2018-06-01 20:48:35 | [diff] [blame] | 1070 | 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '0061b1f244574e615c415479725046ab2951f09a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1071 | 'condition': 'checkout_linux', |
| 1072 | }, |
| 1073 | |
| 1074 | # The libevdev library (Chrome OS version). |
| 1075 | 'src/third_party/libevdev/src': { |
| 1076 | 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744', |
| 1077 | 'condition': 'checkout_linux', |
| 1078 | }, |
| 1079 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1080 | 'src/third_party/libjpeg_turbo': |
Jonathan Wright | 10e48c5b | 2019-08-10 08:01:17 | [diff] [blame] | 1081 | Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'cd241207cb905ff768837208e84bd0808835089d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1082 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1083 | 'src/third_party/liblouis/src': { |
David Tseng | 9b9ad8e | 2019-01-09 03:40:15 | [diff] [blame] | 1084 | 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '97ce1c67fccbd3668291b7e63c06161c095d49f2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1085 | 'condition': 'checkout_linux', |
| 1086 | }, |
| 1087 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1088 | 'src/third_party/libphonenumber/dist': |
| 1089 | Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4', |
| 1090 | |
| 1091 | 'src/third_party/libprotobuf-mutator/src': |
| 1092 | Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'), |
| 1093 | |
| 1094 | 'src/third_party/libsrtp': |
Mirko Bonadei | cd60481 | 2018-09-14 11:41:11 | [diff] [blame] | 1095 | Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '650611720ecc23e0e6b32b0e3100f8b4df91696c', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1096 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1097 | # Android Explicit Synchronization. |
| 1098 | 'src/third_party/libsync/src': { |
Alexandros Frantzis | 3ad9a22 | 2018-01-25 17:09:54 | [diff] [blame] | 1099 | 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1100 | 'condition': 'checkout_linux', |
| 1101 | }, |
| 1102 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1103 | 'src/third_party/libvpx/source/libvpx': |
Jerome Jiang | aa189c92 | 2019-07-25 17:26:22 | [diff] [blame] | 1104 | Var('chromium_git') + '/webm/libvpx.git' + '@' + '18d309c12734d2f06d54ad1716e512153a13ab9d', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1105 | |
| 1106 | 'src/third_party/libwebm/source': |
James Zern | 62ef4ae | 2019-02-21 21:17:03 | [diff] [blame] | 1107 | Var('chromium_git') + '/webm/libwebm.git' + '@' + '51ca718c3adf0ddedacd7df25fe45f67dc5a9ce1', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1108 | |
| 1109 | 'src/third_party/libyuv': |
Frank Barchard | 62073b0 | 2019-07-03 19:01:37 | [diff] [blame] | 1110 | Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'f9aacffa029ff3a32f0408f78e2588663271f1b1', # from r1714 |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1111 | |
Paweł Hajdan, Jr | c3ae085 | 2017-10-02 16:46:22 | [diff] [blame] | 1112 | 'src/third_party/lighttpd': { |
| 1113 | 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'), |
| 1114 | 'condition': 'checkout_mac or checkout_win', |
| 1115 | }, |
| 1116 | |
| 1117 | 'src/third_party/lss': { |
| 1118 | 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'), |
| 1119 | 'condition': 'checkout_android or checkout_linux', |
| 1120 | }, |
| 1121 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1122 | 'src/third_party/material_design_icons/src': { |
| 1123 | 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' + |
| 1124 | '5ab428852e35dc177a8c37a2df9dc9ccf768c65a', |
| 1125 | 'condition': 'checkout_ios', |
| 1126 | }, |
| 1127 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1128 | # GNU binutils assembler for x86-64. |
| 1129 | 'src/third_party/mingw-w64/mingw/bin': { |
| 1130 | '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] | 1131 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1132 | }, |
| 1133 | |
| 1134 | # Graphics buffer allocator for Chrome OS. |
| 1135 | 'src/third_party/minigbm/src': { |
Maksim Sisov | dc34577 | 2019-02-20 15:43:33 | [diff] [blame] | 1136 | 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '4fe3038be586d5db8e44e452f5ed6a93c8ccf50a', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1137 | 'condition': 'checkout_linux', |
| 1138 | }, |
| 1139 | |
| 1140 | # Minizip library. Used on Chrome OS. |
| 1141 | 'src/third_party/minizip/src': { |
Anand K. Mistry | bdd979e4 | 2018-12-17 04:38:59 | [diff] [blame] | 1142 | 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '1ff40343b55e738d941abb51c70eddb803db16e2', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1143 | 'condition': 'checkout_linux', |
| 1144 | }, |
| 1145 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1146 | 'src/third_party/mockito/src': { |
John Budorick | 6c26c23 | 2018-06-22 00:11:28 | [diff] [blame] | 1147 | 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '04a2a289a4222f80ad20717c25144981210d2eac', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1148 | 'condition': 'checkout_android', |
| 1149 | }, |
| 1150 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1151 | # Binaries for nacl sdk. |
| 1152 | 'src/third_party/nacl_sdk_binaries': { |
| 1153 | 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 1154 | 'condition': 'checkout_nacl and checkout_win', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1155 | }, |
| 1156 | |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1157 | 'src/third_party/nasm': { |
| 1158 | 'url': Var('chromium_git') + '/chromium/deps/nasm.git' + '@' + |
Reid Kleckner | 36df61e4 | 2019-08-08 22:16:45 | [diff] [blame] | 1159 | '21eb595319746a669a742d210eaa413c728e7fad' |
Dale Curtis | 7d284af | 2018-11-08 01:27:52 | [diff] [blame] | 1160 | }, |
| 1161 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1162 | 'src/third_party/netty-tcnative/src': { |
| 1163 | 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463', |
| 1164 | 'condition': 'checkout_android', |
| 1165 | }, |
| 1166 | |
| 1167 | 'src/third_party/netty4/src': { |
| 1168 | 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120', |
| 1169 | 'condition': 'checkout_android', |
| 1170 | }, |
| 1171 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1172 | 'src/third_party/objenesis': { |
| 1173 | 'packages': [ |
| 1174 | { |
| 1175 | 'package': 'chromium/third_party/objenesis', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1176 | 'version': '9e367f55e5a65781ee77bfcbaa88fb82b30e75c0', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1177 | }, |
| 1178 | ], |
| 1179 | 'condition': 'checkout_android', |
| 1180 | 'dep_type': 'cipd', |
| 1181 | }, |
| 1182 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1183 | 'src/third_party/openh264/src': |
Tom Anderson | f688af0 | 2018-11-29 23:45:22 | [diff] [blame] | 1184 | Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '6f26bce0b1c4e8ce0e13332f7c0083788def5fdf', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1185 | |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1186 | 'src/third_party/openscreen/src': |
Jordan Bayles | d6572c1 | 2019-07-29 22:16:10 | [diff] [blame] | 1187 | Var('chromium_git') + '/openscreen' + '@' + '5c4739296aaa68a75dd7b06b6441f4abdc24360c', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 1188 | |
Kevin Qin | 78ff68c8 | 2019-06-26 01:43:36 | [diff] [blame] | 1189 | 'src/third_party/openxr/src': { |
| 1190 | 'url': Var('chromium_git') + '/external/github.com/KhronosGroup/OpenXR-SDK' + '@' + 'c52d3b40dd802353c1f2ceec139922b374c1373a', |
| 1191 | 'condition': 'checkout_openxr', |
| 1192 | }, |
| 1193 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1194 | 'src/third_party/ow2_asm': { |
| 1195 | 'packages': [ |
| 1196 | { |
| 1197 | 'package': 'chromium/third_party/ow2_asm', |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1198 | 'version': 'NNAhdJzMdnutUVqfSJm5v0tVazA9l3Dd6CRwH6N4Q5kC', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1199 | }, |
| 1200 | ], |
| 1201 | 'condition': 'checkout_android', |
| 1202 | 'dep_type': 'cipd', |
| 1203 | }, |
| 1204 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1205 | 'src/third_party/pdfium': |
| 1206 | Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'), |
| 1207 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1208 | # Parses Windows PE/COFF executable format. |
| 1209 | 'src/third_party/pefile': { |
| 1210 | 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1', |
| 1211 | 'condition': 'checkout_win', |
| 1212 | }, |
| 1213 | |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1214 | 'src/third_party/perfetto': |
chromium-autoroll | 8f4d404 | 2019-08-13 13:27:19 | [diff] [blame] | 1215 | Var('android_git') + '/platform/external/perfetto.git' + '@' + '827c26f6435e3515ee54d0f4fb5846ec51e2811e', |
Oystein Eftevaag | a9439b92 | 2018-01-08 19:30:14 | [diff] [blame] | 1216 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1217 | 'src/third_party/perl': { |
Robert Ma | 3deb10c | 2019-06-05 15:23:29 | [diff] [blame] | 1218 | 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + '6f3e5028eb65d0b4c5fdd792106ac4c84eee1eb3', |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1219 | 'condition': 'checkout_win', |
| 1220 | }, |
| 1221 | |
Andrew Grieve | 40dece27 | 2018-08-27 17:59:40 | [diff] [blame] | 1222 | 'src/third_party/proguard': { |
| 1223 | 'packages': [ |
| 1224 | { |
| 1225 | 'package': 'chromium/third_party/proguard', |
| 1226 | 'version': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca', |
| 1227 | }, |
| 1228 | ], |
| 1229 | 'condition': 'checkout_android', |
| 1230 | 'dep_type': 'cipd', |
| 1231 | }, |
| 1232 | |
Mohamed Heikal | 5c48859 | 2018-11-26 23:32:15 | [diff] [blame] | 1233 | 'src/third_party/protoc_javalite': { |
| 1234 | 'packages': [ |
| 1235 | { |
| 1236 | 'package': 'chromium/third_party/protoc_javalite', |
| 1237 | 'version': 'version:3.0.0-cr1', |
| 1238 | }, |
| 1239 | ], |
| 1240 | 'condition': 'checkout_android', |
| 1241 | 'dep_type': 'cipd', |
| 1242 | }, |
| 1243 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1244 | # Dependency of chromite.git and skia. |
| 1245 | 'src/third_party/pyelftools': { |
| 1246 | 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae', |
| 1247 | 'condition': 'checkout_linux', |
| 1248 | }, |
| 1249 | |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1250 | 'src/third_party/quic_trace/src': |
Bence Béky | 3e38655 | 2019-04-29 23:44:46 | [diff] [blame] | 1251 | Var('chromium_git') + '/external/github.com/google/quic-trace.git' + '@' + '8415c22f0ca2485bd8a16eff64075f4361f3878e', |
Victor Vasiliev | 3b5cf15 | 2018-07-02 18:47:41 | [diff] [blame] | 1252 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1253 | 'src/third_party/pywebsocket/src': |
| 1254 | Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |
| 1255 | |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1256 | 'src/third_party/qemu-linux-x64': { |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1257 | 'packages': [ |
| 1258 | { |
| 1259 | 'package': 'fuchsia/qemu/linux-amd64', |
| 1260 | 'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994' |
| 1261 | }, |
| 1262 | ], |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 1263 | 'condition': 'host_os == "linux" and checkout_fuchsia', |
| 1264 | 'dep_type': 'cipd', |
| 1265 | }, |
| 1266 | |
| 1267 | 'src/third_party/qemu-mac-x64': { |
| 1268 | 'packages': [ |
| 1269 | { |
| 1270 | 'package': 'fuchsia/qemu/mac-amd64', |
| 1271 | 'version': '2d3358ae9a569b2d4a474f498b32b202a152134f' |
| 1272 | }, |
| 1273 | ], |
| 1274 | 'condition': 'host_os == "mac" and checkout_fuchsia', |
Kevin Marshall | e6a59a6b | 2018-08-17 23:37:22 | [diff] [blame] | 1275 | 'dep_type': 'cipd', |
| 1276 | }, |
| 1277 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1278 | 'src/third_party/re2/src': |
Paul Wankadia | 7b7a686 | 2019-08-08 14:20:30 | [diff] [blame] | 1279 | Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '67bce690decdb507b13e14050661f8b9ebfcfe6c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1280 | |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1281 | 'src/third_party/r8': { |
| 1282 | 'packages': [ |
| 1283 | { |
| 1284 | 'package': 'chromium/third_party/r8', |
Sam Maier | d10e5d8 | 2019-08-06 16:05:18 | [diff] [blame] | 1285 | 'version': '6mmxCrRGY15GNu1r-XmGVxohZfruF6_XjiKSCZakkN4C', |
Tiger Oakes | 95b7b7d | 2018-05-28 15:43:49 | [diff] [blame] | 1286 | }, |
| 1287 | ], |
| 1288 | 'condition': 'checkout_android', |
| 1289 | 'dep_type': 'cipd', |
| 1290 | }, |
| 1291 | |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1292 | 'src/third_party/requests/src': { |
| 1293 | 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 1294 | 'condition': 'checkout_android', |
| 1295 | }, |
| 1296 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1297 | 'src/third_party/robolectric': { |
| 1298 | 'packages': [ |
| 1299 | { |
| 1300 | 'package': 'chromium/third_party/robolectric', |
Sam Maier | f756b38 | 2019-05-17 19:23:24 | [diff] [blame] | 1301 | 'version': '1KXoOiNP1a_uZNdM2ybWKwAQNow1dHTXTig-ZK4Xgq8C', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1302 | }, |
| 1303 | ], |
| 1304 | 'condition': 'checkout_android', |
| 1305 | 'dep_type': 'cipd', |
| 1306 | }, |
| 1307 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1308 | 'src/third_party/robolectric/robolectric': { |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1309 | 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '3d6dcabf5521e028c8efc2778ab6bd8c7b6d923c', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1310 | 'condition': 'checkout_android', |
| 1311 | }, |
| 1312 | |
Yun Liu | b121ada | 2019-02-16 04:11:01 | [diff] [blame] | 1313 | 'src/third_party/androidx': { |
| 1314 | 'packages': [ |
| 1315 | { |
| 1316 | 'package': 'chromium/third_party/androidx', |
| 1317 | 'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC', |
| 1318 | }, |
| 1319 | ], |
| 1320 | 'condition': 'checkout_android', |
| 1321 | 'dep_type': 'cipd', |
| 1322 | }, |
| 1323 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1324 | 'src/third_party/sfntly/src': |
Lei Zhang | b3ce3d1 | 2019-07-19 01:01:16 | [diff] [blame] | 1325 | Var('chromium_git') + '/external/github.com/googlefonts/sfntly.git' + '@' + Var('sfntly_revision'), |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1326 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1327 | 'src/third_party/skia': |
| 1328 | Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'), |
| 1329 | |
| 1330 | 'src/third_party/smhasher/src': |
| 1331 | Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f', |
| 1332 | |
| 1333 | 'src/third_party/snappy/src': |
Victor Costan | 259832e | 2019-07-10 08:13:19 | [diff] [blame] | 1334 | Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + '156cd8939c5fba7fa68ae08db843377ecc07b4b5', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1335 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1336 | 'src/third_party/sqlite4java': { |
| 1337 | 'packages': [ |
| 1338 | { |
| 1339 | 'package': 'chromium/third_party/sqlite4java', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1340 | 'version': '889660698187baa7c8b0d79f7bf58563125fbd66', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1341 | }, |
| 1342 | ], |
| 1343 | 'condition': 'checkout_android', |
| 1344 | 'dep_type': 'cipd', |
| 1345 | }, |
| 1346 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1347 | 'src/third_party/swiftshader': |
| 1348 | Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'), |
| 1349 | |
| 1350 | 'src/third_party/ub-uiautomator/lib': { |
| 1351 | 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434', |
Paweł Hajdan, Jr | 78b426d0 | 2017-09-29 07:49:16 | [diff] [blame] | 1352 | 'condition': 'checkout_android', |
| 1353 | }, |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1354 | |
| 1355 | 'src/third_party/usrsctp/usrsctplib': |
Taylor Brandstetter | 462adb2 | 2018-06-25 18:56:57 | [diff] [blame] | 1356 | Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '7a8bc9a90ca96634aa56ee712856d97f27d903f8', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1357 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1358 | # Display server protocol for Linux. |
| 1359 | 'src/third_party/wayland/src': { |
| 1360 | 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25', |
| 1361 | 'condition': 'checkout_linux', |
| 1362 | }, |
| 1363 | |
| 1364 | # Wayland protocols that add functionality not available in the core protocol. |
| 1365 | 'src/third_party/wayland-protocols/src': { |
Alexandros Frantzis | e05fa0a | 2019-01-15 05:17:12 | [diff] [blame] | 1366 | '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] | 1367 | 'condition': 'checkout_linux', |
| 1368 | }, |
| 1369 | |
| 1370 | # Wireless Display Software. Used on Chrome OS. |
| 1371 | 'src/third_party/wds/src': { |
| 1372 | 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5', |
| 1373 | 'condition': 'checkout_linux', |
| 1374 | }, |
| 1375 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1376 | 'src/third_party/webdriver/pylib': |
Aaron Gable | 5a63017 | 2019-04-30 20:59:01 | [diff] [blame] | 1377 | Var('chromium_git') + '/external/github.com/SeleniumHQ/selenium/py.git' + '@' + 'd0045ec570c1a77612db35d1e92f05e1d27b4d53', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1378 | |
| 1379 | 'src/third_party/webgl/src': |
Vikas Soni | 9537664 | 2019-07-18 18:00:09 | [diff] [blame] | 1380 | Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'abaae129d9a0c6e1e092067e0b105475df43352e', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1381 | |
| 1382 | 'src/third_party/webrtc': |
chromium-autoroll | 3711362 | 2019-08-13 13:10:30 | [diff] [blame] | 1383 | Var('webrtc_git') + '/src.git' + '@' + '34aee67c11454e6c20c1a48702e92b48062cd2bf', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1384 | |
Paweł Hajdan, Jr | 7af36895 | 2017-10-02 12:25:36 | [diff] [blame] | 1385 | 'src/third_party/xdg-utils': { |
| 1386 | 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d', |
| 1387 | 'condition': 'checkout_linux', |
| 1388 | }, |
| 1389 | |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1390 | 'src/third_party/xstream': { |
| 1391 | 'packages': [ |
| 1392 | { |
| 1393 | 'package': 'chromium/third_party/xstream', |
John Budorick | 1427629 | 2018-11-29 19:07:09 | [diff] [blame] | 1394 | 'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe', |
John Budorick | e9aa27c | 2018-03-24 00:23:27 | [diff] [blame] | 1395 | }, |
| 1396 | ], |
| 1397 | 'condition': 'checkout_android', |
| 1398 | 'dep_type': 'cipd', |
| 1399 | }, |
| 1400 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1401 | 'src/third_party/yasm/source/patched-yasm': |
Mostyn Bramley-Moore | 2be9a9d0 | 2018-07-07 00:35:17 | [diff] [blame] | 1402 | Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + '720b70524a4424b15fc57e82263568c8ba0496ad', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1403 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1404 | 'src/tools/page_cycler/acid3': |
| 1405 | Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521', |
| 1406 | |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1407 | 'src/tools/skia_goldctl': { |
| 1408 | 'packages': [ |
| 1409 | { |
| 1410 | 'package': 'skia/tools/goldctl/${{platform}}', |
Brian Sheedy | 4bcccabe | 2019-07-23 00:03:45 | [diff] [blame] | 1411 | 'version': 'git_revision:343c20ec0539c9d390d11dc566eab245561234f9', |
bsheedy | 0e0f26df | 2019-01-09 22:17:16 | [diff] [blame] | 1412 | }, |
| 1413 | ], |
| 1414 | 'dep_type': 'cipd', |
| 1415 | }, |
| 1416 | |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1417 | 'src/tools/swarming_client': |
| 1418 | Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'), |
| 1419 | |
| 1420 | 'src/v8': |
| 1421 | Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
| 1422 | |
| 1423 | 'src-internal': { |
chromium-internal-autoroll | 09cf3681 | 2019-08-13 14:16:36 | [diff] [blame] | 1424 | 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@7741db7456bc7c76d7a91975efa47a8292a6d90b', |
Paweł Hajdan, Jr | f5e7996a | 2017-09-29 11:37:42 | [diff] [blame] | 1425 | 'condition': 'checkout_src_internal', |
| 1426 | }, |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1427 | |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1428 | 'src/third_party/google_android_play_core': { |
| 1429 | 'packages': [ |
| 1430 | { |
| 1431 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core_verification', |
Tibor Goldschwendt | 5453bde | 2019-07-03 17:56:19 | [diff] [blame] | 1432 | 'version': '4hAx_nDBLvvQHfRMqLEB4ot_jERn_Wpuwxuap5Ii4PsC', |
Tibor Goldschwendt | a117da0 | 2018-11-16 22:25:27 | [diff] [blame] | 1433 | }, |
| 1434 | ], |
| 1435 | 'condition': 'checkout_android', |
| 1436 | 'dep_type': 'cipd', |
| 1437 | }, |
| 1438 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 1439 | # === ANDROID_DEPS Generated Code Start === |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1440 | # Generated by //tools/android/roll/android_deps/fetch_all.py |
| 1441 | 'src/third_party/android_deps/libs/android_arch_core_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1442 | 'packages': [ |
| 1443 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1444 | 'package': 'chromium/third_party/android_deps/libs/android_arch_core_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1445 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1446 | }, |
| 1447 | ], |
| 1448 | 'condition': 'checkout_android', |
| 1449 | 'dep_type': 'cipd', |
| 1450 | }, |
| 1451 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1452 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1453 | 'packages': [ |
| 1454 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1455 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1456 | 'version': 'version:1.1.1-cr0', |
| 1457 | }, |
| 1458 | ], |
| 1459 | 'condition': 'checkout_android', |
| 1460 | 'dep_type': 'cipd', |
| 1461 | }, |
| 1462 | |
| 1463 | 'src/third_party/android_deps/libs/android_arch_lifecycle_common_java8': { |
| 1464 | 'packages': [ |
| 1465 | { |
| 1466 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8', |
| 1467 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1468 | }, |
| 1469 | ], |
| 1470 | 'condition': 'checkout_android', |
| 1471 | 'dep_type': 'cipd', |
| 1472 | }, |
| 1473 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1474 | 'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1475 | 'packages': [ |
| 1476 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1477 | 'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime', |
Boris Sazonov | ff83e6c | 2019-04-03 15:52:03 | [diff] [blame] | 1478 | 'version': 'version:1.1.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1479 | }, |
| 1480 | ], |
| 1481 | 'condition': 'checkout_android', |
| 1482 | 'dep_type': 'cipd', |
| 1483 | }, |
| 1484 | |
Yun Liu | d0a3e81 | 2019-02-22 20:53:12 | [diff] [blame] | 1485 | 'src/third_party/android_deps/libs/androidx_annotation_annotation': { |
| 1486 | 'packages': [ |
| 1487 | { |
| 1488 | 'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation', |
| 1489 | 'version': 'version:1.0.0-cr0', |
| 1490 | }, |
| 1491 | ], |
| 1492 | 'condition': 'checkout_android', |
| 1493 | 'dep_type': 'cipd', |
| 1494 | }, |
| 1495 | |
| 1496 | 'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': { |
| 1497 | 'packages': [ |
| 1498 | { |
| 1499 | 'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common', |
| 1500 | 'version': 'version:2.0.0-cr0', |
| 1501 | }, |
| 1502 | ], |
| 1503 | 'condition': 'checkout_android', |
| 1504 | 'dep_type': 'cipd', |
| 1505 | }, |
| 1506 | |
| 1507 | 'src/third_party/android_deps/libs/androidx_test_core': { |
| 1508 | 'packages': [ |
| 1509 | { |
| 1510 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_core', |
| 1511 | 'version': 'version:1.0.0-cr0', |
| 1512 | }, |
| 1513 | ], |
| 1514 | 'condition': 'checkout_android', |
| 1515 | 'dep_type': 'cipd', |
| 1516 | }, |
| 1517 | |
| 1518 | 'src/third_party/android_deps/libs/androidx_test_ext_junit': { |
| 1519 | 'packages': [ |
| 1520 | { |
| 1521 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit', |
| 1522 | 'version': 'version:1.0.0-cr0', |
| 1523 | }, |
| 1524 | ], |
| 1525 | 'condition': 'checkout_android', |
| 1526 | 'dep_type': 'cipd', |
| 1527 | }, |
| 1528 | |
| 1529 | 'src/third_party/android_deps/libs/androidx_test_monitor': { |
| 1530 | 'packages': [ |
| 1531 | { |
| 1532 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor', |
| 1533 | 'version': 'version:1.1.0-cr0', |
| 1534 | }, |
| 1535 | ], |
| 1536 | 'condition': 'checkout_android', |
| 1537 | 'dep_type': 'cipd', |
| 1538 | }, |
| 1539 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 1540 | 'src/third_party/android_deps/libs/androidx_test_rules': { |
| 1541 | 'packages': [ |
| 1542 | { |
| 1543 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_rules', |
| 1544 | 'version': 'version:1.1.0-cr0', |
| 1545 | }, |
| 1546 | ], |
| 1547 | 'condition': 'checkout_android', |
| 1548 | 'dep_type': 'cipd', |
| 1549 | }, |
| 1550 | |
| 1551 | 'src/third_party/android_deps/libs/androidx_test_runner': { |
| 1552 | 'packages': [ |
| 1553 | { |
| 1554 | 'package': 'chromium/third_party/android_deps/libs/androidx_test_runner', |
| 1555 | 'version': 'version:1.1.0-cr0', |
| 1556 | }, |
| 1557 | ], |
| 1558 | 'condition': 'checkout_android', |
| 1559 | 'dep_type': 'cipd', |
| 1560 | }, |
| 1561 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1562 | 'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1563 | 'packages': [ |
| 1564 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1565 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable', |
| 1566 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1567 | }, |
| 1568 | ], |
| 1569 | 'condition': 'checkout_android', |
| 1570 | 'dep_type': 'cipd', |
| 1571 | }, |
| 1572 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1573 | 'src/third_party/android_deps/libs/com_android_support_appcompat_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1574 | 'packages': [ |
| 1575 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1576 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7', |
| 1577 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1578 | }, |
| 1579 | ], |
| 1580 | 'condition': 'checkout_android', |
| 1581 | 'dep_type': 'cipd', |
| 1582 | }, |
| 1583 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1584 | 'src/third_party/android_deps/libs/com_android_support_cardview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1585 | 'packages': [ |
| 1586 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1587 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7', |
| 1588 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1589 | }, |
| 1590 | ], |
| 1591 | 'condition': 'checkout_android', |
| 1592 | 'dep_type': 'cipd', |
| 1593 | }, |
| 1594 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1595 | 'src/third_party/android_deps/libs/com_android_support_design': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1596 | 'packages': [ |
| 1597 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1598 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_design', |
| 1599 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1600 | }, |
| 1601 | ], |
| 1602 | 'condition': 'checkout_android', |
| 1603 | 'dep_type': 'cipd', |
| 1604 | }, |
| 1605 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1606 | 'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1607 | 'packages': [ |
| 1608 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1609 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7', |
| 1610 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1611 | }, |
| 1612 | ], |
| 1613 | 'condition': 'checkout_android', |
| 1614 | 'dep_type': 'cipd', |
| 1615 | }, |
| 1616 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1617 | 'src/third_party/android_deps/libs/com_android_support_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1618 | 'packages': [ |
| 1619 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1620 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17', |
| 1621 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1622 | }, |
| 1623 | ], |
| 1624 | 'condition': 'checkout_android', |
| 1625 | 'dep_type': 'cipd', |
| 1626 | }, |
| 1627 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1628 | 'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1629 | 'packages': [ |
| 1630 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1631 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7', |
| 1632 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1633 | }, |
| 1634 | ], |
| 1635 | 'condition': 'checkout_android', |
| 1636 | 'dep_type': 'cipd', |
| 1637 | }, |
| 1638 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1639 | 'src/third_party/android_deps/libs/com_android_support_multidex': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1640 | 'packages': [ |
| 1641 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1642 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex', |
| 1643 | 'version': 'version:1.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1644 | }, |
| 1645 | ], |
| 1646 | 'condition': 'checkout_android', |
| 1647 | 'dep_type': 'cipd', |
| 1648 | }, |
| 1649 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1650 | 'src/third_party/android_deps/libs/com_android_support_palette_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1651 | 'packages': [ |
| 1652 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1653 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7', |
| 1654 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1655 | }, |
| 1656 | ], |
| 1657 | 'condition': 'checkout_android', |
| 1658 | 'dep_type': 'cipd', |
| 1659 | }, |
| 1660 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1661 | 'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1662 | 'packages': [ |
| 1663 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1664 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17', |
| 1665 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1666 | }, |
| 1667 | ], |
| 1668 | 'condition': 'checkout_android', |
| 1669 | 'dep_type': 'cipd', |
| 1670 | }, |
| 1671 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1672 | 'src/third_party/android_deps/libs/com_android_support_preference_v14': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1673 | 'packages': [ |
| 1674 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1675 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14', |
| 1676 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1677 | }, |
| 1678 | ], |
| 1679 | 'condition': 'checkout_android', |
| 1680 | 'dep_type': 'cipd', |
| 1681 | }, |
| 1682 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1683 | 'src/third_party/android_deps/libs/com_android_support_preference_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1684 | 'packages': [ |
| 1685 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1686 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7', |
| 1687 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1688 | }, |
| 1689 | ], |
| 1690 | 'condition': 'checkout_android', |
| 1691 | 'dep_type': 'cipd', |
| 1692 | }, |
| 1693 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1694 | 'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1695 | 'packages': [ |
| 1696 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1697 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7', |
| 1698 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1699 | }, |
| 1700 | ], |
| 1701 | 'condition': 'checkout_android', |
| 1702 | 'dep_type': 'cipd', |
| 1703 | }, |
| 1704 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1705 | 'src/third_party/android_deps/libs/com_android_support_support_annotations': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1706 | 'packages': [ |
| 1707 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1708 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations', |
| 1709 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1710 | }, |
| 1711 | ], |
| 1712 | 'condition': 'checkout_android', |
| 1713 | 'dep_type': 'cipd', |
| 1714 | }, |
| 1715 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1716 | 'src/third_party/android_deps/libs/com_android_support_support_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1717 | 'packages': [ |
| 1718 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1719 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat', |
| 1720 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1721 | }, |
| 1722 | ], |
| 1723 | 'condition': 'checkout_android', |
| 1724 | 'dep_type': 'cipd', |
| 1725 | }, |
| 1726 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1727 | 'src/third_party/android_deps/libs/com_android_support_support_core_ui': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1728 | 'packages': [ |
| 1729 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1730 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui', |
| 1731 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1732 | }, |
| 1733 | ], |
| 1734 | 'condition': 'checkout_android', |
| 1735 | 'dep_type': 'cipd', |
| 1736 | }, |
| 1737 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1738 | 'src/third_party/android_deps/libs/com_android_support_support_core_utils': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1739 | 'packages': [ |
| 1740 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1741 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils', |
| 1742 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1743 | }, |
| 1744 | ], |
| 1745 | 'condition': 'checkout_android', |
| 1746 | 'dep_type': 'cipd', |
| 1747 | }, |
| 1748 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1749 | 'src/third_party/android_deps/libs/com_android_support_support_fragment': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1750 | 'packages': [ |
| 1751 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1752 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment', |
| 1753 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1754 | }, |
| 1755 | ], |
| 1756 | 'condition': 'checkout_android', |
| 1757 | 'dep_type': 'cipd', |
| 1758 | }, |
| 1759 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1760 | 'src/third_party/android_deps/libs/com_android_support_support_media_compat': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1761 | 'packages': [ |
| 1762 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1763 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat', |
| 1764 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1765 | }, |
| 1766 | ], |
| 1767 | 'condition': 'checkout_android', |
| 1768 | 'dep_type': 'cipd', |
| 1769 | }, |
| 1770 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1771 | 'src/third_party/android_deps/libs/com_android_support_support_v13': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1772 | 'packages': [ |
| 1773 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1774 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13', |
| 1775 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1776 | }, |
| 1777 | ], |
| 1778 | 'condition': 'checkout_android', |
| 1779 | 'dep_type': 'cipd', |
| 1780 | }, |
| 1781 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1782 | 'src/third_party/android_deps/libs/com_android_support_support_v4': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1783 | 'packages': [ |
| 1784 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1785 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4', |
| 1786 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1787 | }, |
| 1788 | ], |
| 1789 | 'condition': 'checkout_android', |
| 1790 | 'dep_type': 'cipd', |
| 1791 | }, |
| 1792 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1793 | 'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1794 | 'packages': [ |
| 1795 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1796 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable', |
| 1797 | 'version': 'version:27.0.0-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1798 | }, |
| 1799 | ], |
| 1800 | 'condition': 'checkout_android', |
| 1801 | 'dep_type': 'cipd', |
| 1802 | }, |
| 1803 | |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1804 | 'src/third_party/android_deps/libs/com_android_support_transition': { |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 1805 | 'packages': [ |
| 1806 | { |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1807 | 'package': 'chromium/third_party/android_deps/libs/com_android_support_transition', |
| 1808 | 'version': 'version:27.0.0-cr0', |
| 1809 | }, |
| 1810 | ], |
| 1811 | 'condition': 'checkout_android', |
| 1812 | 'dep_type': 'cipd', |
| 1813 | }, |
| 1814 | |
| 1815 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': { |
| 1816 | 'packages': [ |
| 1817 | { |
| 1818 | '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] | 1819 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1820 | }, |
| 1821 | ], |
| 1822 | 'condition': 'checkout_android', |
| 1823 | 'dep_type': 'cipd', |
| 1824 | }, |
| 1825 | |
| 1826 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': { |
| 1827 | 'packages': [ |
| 1828 | { |
| 1829 | '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] | 1830 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1831 | }, |
| 1832 | ], |
| 1833 | 'condition': 'checkout_android', |
| 1834 | 'dep_type': 'cipd', |
| 1835 | }, |
| 1836 | |
| 1837 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': { |
| 1838 | 'packages': [ |
| 1839 | { |
| 1840 | '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] | 1841 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1842 | }, |
| 1843 | ], |
| 1844 | 'condition': 'checkout_android', |
| 1845 | 'dep_type': 'cipd', |
| 1846 | }, |
| 1847 | |
| 1848 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_base': { |
| 1849 | 'packages': [ |
| 1850 | { |
| 1851 | '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] | 1852 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1853 | }, |
| 1854 | ], |
| 1855 | 'condition': 'checkout_android', |
| 1856 | 'dep_type': 'cipd', |
| 1857 | }, |
| 1858 | |
| 1859 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_basement': { |
| 1860 | 'packages': [ |
| 1861 | { |
| 1862 | '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] | 1863 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1864 | }, |
| 1865 | ], |
| 1866 | 'condition': 'checkout_android', |
| 1867 | 'dep_type': 'cipd', |
| 1868 | }, |
| 1869 | |
| 1870 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast': { |
| 1871 | 'packages': [ |
| 1872 | { |
| 1873 | '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] | 1874 | 'version': 'version:16.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1875 | }, |
| 1876 | ], |
| 1877 | 'condition': 'checkout_android', |
| 1878 | 'dep_type': 'cipd', |
| 1879 | }, |
| 1880 | |
| 1881 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': { |
| 1882 | 'packages': [ |
| 1883 | { |
| 1884 | '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] | 1885 | 'version': 'version:16.0.1-cr0', |
Peter Wen | 30b1acde | 2018-08-20 15:01:33 | [diff] [blame] | 1886 | }, |
| 1887 | ], |
| 1888 | 'condition': 'checkout_android', |
| 1889 | 'dep_type': 'cipd', |
| 1890 | }, |
| 1891 | |
| 1892 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': { |
| 1893 | 'packages': [ |
| 1894 | { |
| 1895 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut', |
| 1896 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1897 | }, |
| 1898 | ], |
| 1899 | 'condition': 'checkout_android', |
| 1900 | 'dep_type': 'cipd', |
| 1901 | }, |
| 1902 | |
| 1903 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_fido': { |
| 1904 | 'packages': [ |
| 1905 | { |
| 1906 | '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] | 1907 | 'version': 'version:15.0.1-cr0', |
| 1908 | }, |
| 1909 | ], |
| 1910 | 'condition': 'checkout_android', |
| 1911 | 'dep_type': 'cipd', |
| 1912 | }, |
| 1913 | |
| 1914 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_flags': { |
| 1915 | 'packages': [ |
| 1916 | { |
| 1917 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags', |
| 1918 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1919 | }, |
| 1920 | ], |
| 1921 | 'condition': 'checkout_android', |
| 1922 | 'dep_type': 'cipd', |
| 1923 | }, |
| 1924 | |
| 1925 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_gcm': { |
| 1926 | 'packages': [ |
| 1927 | { |
| 1928 | '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] | 1929 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1930 | }, |
| 1931 | ], |
| 1932 | 'condition': 'checkout_android', |
| 1933 | 'dep_type': 'cipd', |
| 1934 | }, |
| 1935 | |
| 1936 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_iid': { |
| 1937 | 'packages': [ |
| 1938 | { |
| 1939 | '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] | 1940 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1941 | }, |
| 1942 | ], |
| 1943 | 'condition': 'checkout_android', |
| 1944 | 'dep_type': 'cipd', |
| 1945 | }, |
| 1946 | |
| 1947 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': { |
| 1948 | 'packages': [ |
| 1949 | { |
| 1950 | '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] | 1951 | 'version': 'version:16.0.0-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1952 | }, |
| 1953 | ], |
| 1954 | 'condition': 'checkout_android', |
| 1955 | 'dep_type': 'cipd', |
| 1956 | }, |
| 1957 | |
| 1958 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_location': { |
| 1959 | 'packages': [ |
| 1960 | { |
| 1961 | '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] | 1962 | 'version': 'version:15.0.1-cr0', |
| 1963 | }, |
| 1964 | ], |
| 1965 | 'condition': 'checkout_android', |
| 1966 | 'dep_type': 'cipd', |
| 1967 | }, |
| 1968 | |
| 1969 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': { |
| 1970 | 'packages': [ |
| 1971 | { |
| 1972 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype', |
| 1973 | 'version': 'version:15.0.1-cr0', |
| 1974 | }, |
| 1975 | ], |
| 1976 | 'condition': 'checkout_android', |
| 1977 | 'dep_type': 'cipd', |
| 1978 | }, |
| 1979 | |
| 1980 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': { |
| 1981 | 'packages': [ |
| 1982 | { |
| 1983 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport', |
| 1984 | 'version': 'version:15.0.1-cr0', |
| 1985 | }, |
| 1986 | ], |
| 1987 | 'condition': 'checkout_android', |
| 1988 | 'dep_type': 'cipd', |
| 1989 | }, |
| 1990 | |
| 1991 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_stats': { |
| 1992 | 'packages': [ |
| 1993 | { |
| 1994 | 'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats', |
| 1995 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 1996 | }, |
| 1997 | ], |
| 1998 | 'condition': 'checkout_android', |
| 1999 | 'dep_type': 'cipd', |
| 2000 | }, |
| 2001 | |
| 2002 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_tasks': { |
| 2003 | 'packages': [ |
| 2004 | { |
| 2005 | '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] | 2006 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2007 | }, |
| 2008 | ], |
| 2009 | 'condition': 'checkout_android', |
| 2010 | 'dep_type': 'cipd', |
| 2011 | }, |
| 2012 | |
| 2013 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': { |
| 2014 | 'packages': [ |
| 2015 | { |
| 2016 | '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] | 2017 | 'version': 'version:15.0.1-cr0', |
Peter Wen | d340c5e | 2018-07-26 20:55:39 | [diff] [blame] | 2018 | }, |
| 2019 | ], |
| 2020 | 'condition': 'checkout_android', |
| 2021 | 'dep_type': 'cipd', |
| 2022 | }, |
| 2023 | |
| 2024 | 'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': { |
| 2025 | 'packages': [ |
| 2026 | { |
| 2027 | '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] | 2028 | 'version': 'version:15.0.1-cr0', |
Nicolas Dossou-gbete | b8736d8 | 2018-04-05 04:29:24 | [diff] [blame] | 2029 | }, |
| 2030 | ], |
| 2031 | 'condition': 'checkout_android', |
| 2032 | 'dep_type': 'cipd', |
| 2033 | }, |
| 2034 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2035 | 'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': { |
| 2036 | 'packages': [ |
| 2037 | { |
| 2038 | 'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305', |
| 2039 | 'version': 'version:1.3.9-cr0', |
| 2040 | }, |
| 2041 | ], |
| 2042 | 'condition': 'checkout_android', |
| 2043 | 'dep_type': 'cipd', |
| 2044 | }, |
| 2045 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2046 | 'src/third_party/android_deps/libs/com_google_dagger_dagger': { |
| 2047 | 'packages': [ |
| 2048 | { |
| 2049 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger', |
| 2050 | 'version': 'version:2.17-cr0', |
| 2051 | }, |
| 2052 | ], |
| 2053 | 'condition': 'checkout_android', |
| 2054 | 'dep_type': 'cipd', |
| 2055 | }, |
| 2056 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2057 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_compiler': { |
| 2058 | 'packages': [ |
| 2059 | { |
| 2060 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler', |
| 2061 | 'version': 'version:2.17-cr0', |
| 2062 | }, |
| 2063 | ], |
| 2064 | 'condition': 'checkout_android', |
| 2065 | 'dep_type': 'cipd', |
| 2066 | }, |
| 2067 | |
| 2068 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_producers': { |
| 2069 | 'packages': [ |
| 2070 | { |
| 2071 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers', |
| 2072 | 'version': 'version:2.17-cr0', |
| 2073 | }, |
| 2074 | ], |
| 2075 | 'condition': 'checkout_android', |
| 2076 | 'dep_type': 'cipd', |
| 2077 | }, |
| 2078 | |
| 2079 | 'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2080 | 'packages': [ |
| 2081 | { |
| 2082 | 'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi', |
| 2083 | 'version': 'version:2.17-cr0', |
| 2084 | }, |
| 2085 | ], |
| 2086 | 'condition': 'checkout_android', |
| 2087 | 'dep_type': 'cipd', |
| 2088 | }, |
| 2089 | |
| 2090 | 'src/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': { |
| 2091 | 'packages': [ |
| 2092 | { |
| 2093 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations', |
| 2094 | 'version': 'version:2.1.3-cr0', |
| 2095 | }, |
| 2096 | ], |
| 2097 | 'condition': 'checkout_android', |
| 2098 | 'dep_type': 'cipd', |
| 2099 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2100 | |
| 2101 | 'src/third_party/android_deps/libs/com_google_errorprone_javac_shaded': { |
| 2102 | 'packages': [ |
| 2103 | { |
| 2104 | 'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded', |
| 2105 | 'version': 'version:9-dev-r4023-3-cr0', |
| 2106 | }, |
| 2107 | ], |
| 2108 | 'condition': 'checkout_android', |
| 2109 | 'dep_type': 'cipd', |
| 2110 | }, |
| 2111 | |
| 2112 | 'src/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': { |
| 2113 | 'packages': [ |
| 2114 | { |
| 2115 | 'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format', |
| 2116 | 'version': 'version:1.5-cr0', |
| 2117 | }, |
| 2118 | ], |
| 2119 | 'condition': 'checkout_android', |
| 2120 | 'dep_type': 'cipd', |
| 2121 | }, |
| 2122 | |
| 2123 | 'src/third_party/android_deps/libs/com_google_guava_guava': { |
| 2124 | 'packages': [ |
| 2125 | { |
| 2126 | 'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava', |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2127 | 'version': 'version:25.0-jre-cr0', |
| 2128 | }, |
| 2129 | ], |
| 2130 | 'condition': 'checkout_android', |
| 2131 | 'dep_type': 'cipd', |
| 2132 | }, |
| 2133 | |
| 2134 | 'src/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': { |
| 2135 | 'packages': [ |
| 2136 | { |
| 2137 | 'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations', |
| 2138 | 'version': 'version:1.1-cr0', |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2139 | }, |
| 2140 | ], |
| 2141 | 'condition': 'checkout_android', |
| 2142 | 'dep_type': 'cipd', |
| 2143 | }, |
| 2144 | |
Mohamed Heikal | 7dc993cb | 2018-11-20 22:16:34 | [diff] [blame] | 2145 | 'src/third_party/android_deps/libs/com_google_protobuf_protobuf_lite': { |
| 2146 | 'packages': [ |
| 2147 | { |
| 2148 | 'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_lite', |
| 2149 | 'version': 'version:3.0.1-cr0', |
| 2150 | }, |
| 2151 | ], |
| 2152 | 'condition': 'checkout_android', |
| 2153 | 'dep_type': 'cipd', |
| 2154 | }, |
| 2155 | |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2156 | 'src/third_party/android_deps/libs/com_squareup_javapoet': { |
| 2157 | 'packages': [ |
| 2158 | { |
| 2159 | 'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet', |
| 2160 | 'version': 'version:1.11.0-cr0', |
| 2161 | }, |
| 2162 | ], |
| 2163 | 'condition': 'checkout_android', |
| 2164 | 'dep_type': 'cipd', |
| 2165 | }, |
| 2166 | |
| 2167 | 'src/third_party/android_deps/libs/javax_annotation_jsr250_api': { |
| 2168 | 'packages': [ |
| 2169 | { |
| 2170 | 'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api', |
| 2171 | 'version': 'version:1.0-cr0', |
| 2172 | }, |
| 2173 | ], |
| 2174 | 'condition': 'checkout_android', |
| 2175 | 'dep_type': 'cipd', |
| 2176 | }, |
| 2177 | |
| 2178 | 'src/third_party/android_deps/libs/javax_inject_javax_inject': { |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2179 | 'packages': [ |
| 2180 | { |
| 2181 | 'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject', |
| 2182 | 'version': 'version:1-cr0', |
| 2183 | }, |
| 2184 | ], |
| 2185 | 'condition': 'checkout_android', |
| 2186 | 'dep_type': 'cipd', |
| 2187 | }, |
| 2188 | |
Yun Liu | 081719f | 2019-03-20 23:24:02 | [diff] [blame] | 2189 | 'src/third_party/android_deps/libs/net_sf_kxml_kxml2': { |
| 2190 | 'packages': [ |
| 2191 | { |
| 2192 | 'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2', |
| 2193 | 'version': 'version:2.3.0-cr0', |
| 2194 | }, |
| 2195 | ], |
| 2196 | 'condition': 'checkout_android', |
| 2197 | 'dep_type': 'cipd', |
| 2198 | }, |
| 2199 | |
Peter Wen | ee303ae | 2018-09-12 19:41:37 | [diff] [blame] | 2200 | 'src/third_party/android_deps/libs/org_checkerframework_checker_compat_qual': { |
| 2201 | 'packages': [ |
| 2202 | { |
| 2203 | 'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual', |
| 2204 | 'version': 'version:2.3.0-cr0', |
| 2205 | }, |
| 2206 | ], |
| 2207 | 'condition': 'checkout_android', |
| 2208 | 'dep_type': 'cipd', |
| 2209 | }, |
| 2210 | |
| 2211 | 'src/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': { |
| 2212 | 'packages': [ |
| 2213 | { |
| 2214 | 'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations', |
| 2215 | 'version': 'version:1.14-cr0', |
| 2216 | }, |
| 2217 | ], |
| 2218 | 'condition': 'checkout_android', |
| 2219 | 'dep_type': 'cipd', |
| 2220 | }, |
Pavel Shmakov | c1d4701 | 2018-08-24 14:36:22 | [diff] [blame] | 2221 | |
Nicolas Dossou-gbete | 2d6b66c | 2018-02-21 13:58:03 | [diff] [blame] | 2222 | # === ANDROID_DEPS Generated Code End === |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2223 | } |
| 2224 | |
[email protected] | 00c51767 | 2010-11-04 00:27:29 | [diff] [blame] | 2225 | |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2226 | include_rules = [ |
| 2227 | # Everybody can use some things. |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2228 | # 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] | 2229 | '+base', |
| 2230 | '+build', |
| 2231 | '+ipc', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2232 | |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2233 | # Everybody can use headers generated by tools/generate_library_loader. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2234 | '+library_loaders', |
[email protected] | dfbff86 | 2012-11-28 19:08:14 | [diff] [blame] | 2235 | |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2236 | '+testing', |
| 2237 | '+third_party/icu/source/common/unicode', |
| 2238 | '+third_party/icu/source/i18n/unicode', |
| 2239 | '+url', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2240 | |
| 2241 | # Chromium cannot directly depend on Abseil. |
| 2242 | '-absl', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2243 | ] |
| 2244 | |
| 2245 | |
| 2246 | # checkdeps.py shouldn't check include paths for files in these dirs: |
| 2247 | skip_child_includes = [ |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2248 | 'native_client_sdk', |
John Abd-El-Malek | 5b6373f | 2015-04-01 19:44:14 | [diff] [blame] | 2249 | 'out', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2250 | 'skia', |
| 2251 | 'testing', |
Mirko Bonadei | f4f0f0e | 2018-04-12 09:29:41 | [diff] [blame] | 2252 | 'third_party/abseil-cpp', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2253 | 'v8', |
[email protected] | 5f129de | 2009-02-24 23:22:04 | [diff] [blame] | 2254 | ] |
[email protected] | bfa24b96 | 2009-03-02 00:16:16 | [diff] [blame] | 2255 | |
| 2256 | |
| 2257 | hooks = [ |
| 2258 | { |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2259 | # This clobbers when necessary (based on get_landmines.py). It must be the |
| 2260 | # first hook so that other things that get/generate into the output |
| 2261 | # directory will not subsequently be clobbered. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2262 | 'name': 'landmines', |
| 2263 | 'pattern': '.', |
| 2264 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2265 | 'python', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2266 | 'src/build/landmines.py', |
[email protected] | 9372bec | 2014-08-14 14:03:30 | [diff] [blame] | 2267 | ], |
| 2268 | }, |
| 2269 | { |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2270 | # Ensure that the DEPS'd "depot_tools" has its self-update capability |
| 2271 | # disabled. |
| 2272 | 'name': 'disable_depot_tools_selfupdate', |
| 2273 | 'pattern': '.', |
| 2274 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2275 | 'python', |
Dan Jacques | cea92c51 | 2017-06-02 23:59:16 | [diff] [blame] | 2276 | 'src/third_party/depot_tools/update_depot_tools_toggle.py', |
| 2277 | '--disable', |
| 2278 | ], |
| 2279 | }, |
| 2280 | { |
Mostyn Bramley-Moore | 114507a | 2018-04-06 19:42:17 | [diff] [blame] | 2281 | # Ensure that we don't accidentally reference any .pyc files whose |
| 2282 | # corresponding .py files have since been deleted. |
| 2283 | # We could actually try to avoid generating .pyc files, crbug.com/500078. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2284 | 'name': 'remove_stale_pyc_files', |
| 2285 | 'pattern': '.', |
| 2286 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2287 | 'python', |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2288 | 'src/tools/remove_stale_pyc_files.py', |
| 2289 | 'src/android_webview/tools', |
| 2290 | 'src/build/android', |
| 2291 | 'src/gpu/gles2_conform_support', |
| 2292 | 'src/infra', |
| 2293 | 'src/ppapi', |
| 2294 | 'src/printing', |
Kent Tamura | 47769d5 | 2018-05-25 05:46:49 | [diff] [blame] | 2295 | 'src/third_party/blink/renderer/build/scripts', |
Kent Tamura | c04c33d | 2018-04-12 08:28:58 | [diff] [blame] | 2296 | 'src/third_party/blink/tools', # See http://crbug.com/625877. |
jbudorick | 94a712c | 2016-03-09 19:03:52 | [diff] [blame] | 2297 | 'src/third_party/catapult', |
| 2298 | 'src/third_party/closure_compiler/build', |
| 2299 | 'src/tools', |
| 2300 | ], |
| 2301 | }, |
| 2302 | { |
Dirk Pranke | cbff2fc | 2019-03-22 21:53:44 | [diff] [blame] | 2303 | # Verify that we have the right GN binary and force-install it if we |
| 2304 | # don't, in order to work around crbug.com/944367. |
| 2305 | # TODO(crbug.com/944667) Get rid of this when cipd is ensuring we |
| 2306 | # have the right binary more carefully and we no longer need this. |
| 2307 | 'name': 'ensure_gn_version', |
| 2308 | 'pattern': '.', |
| 2309 | 'action': [ |
| 2310 | 'python', |
| 2311 | 'src/buildtools/ensure_gn_version.py', |
| 2312 | Var('gn_version') |
| 2313 | ], |
| 2314 | }, |
| 2315 | { |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2316 | # This downloads binaries for Native Client's newlib toolchain. |
| 2317 | # Done in lieu of building the toolchain from scratch as it can take |
| 2318 | # anywhere from 30 minutes to 4 hours depending on platform to build. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2319 | 'name': 'nacltools', |
| 2320 | 'pattern': '.', |
Dirk Pranke | 4dabe80 | 2017-11-02 07:18:55 | [diff] [blame] | 2321 | 'condition': 'checkout_nacl', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2322 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2323 | 'python', |
dyen | 24988063 | 2014-11-20 23:02:20 | [diff] [blame] | 2324 | 'src/build/download_nacl_toolchains.py', |
ncbray | 474ab32 | 2015-01-05 22:04:22 | [diff] [blame] | 2325 | '--mode', 'nacl_core_sdk', |
ncbray | 4453c50a | 2015-02-18 20:10:55 | [diff] [blame] | 2326 | 'sync', '--extract', |
[email protected] | 89e43f65 | 2011-08-18 00:03:17 | [diff] [blame] | 2327 | ], |
| 2328 | }, |
[email protected] | 3a0b249 | 2011-08-24 20:41:16 | [diff] [blame] | 2329 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2330 | 'name': 'sysroot_arm', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2331 | 'pattern': '.', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2332 | 'condition': 'checkout_linux and checkout_arm', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2333 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2334 | '--arch=arm'], |
| 2335 | }, |
| 2336 | { |
| 2337 | 'name': 'sysroot_arm64', |
| 2338 | 'pattern': '.', |
| 2339 | 'condition': 'checkout_linux and checkout_arm64', |
| 2340 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2341 | '--arch=arm64'], |
| 2342 | }, |
| 2343 | { |
| 2344 | 'name': 'sysroot_x86', |
| 2345 | 'pattern': '.', |
| 2346 | 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)', |
| 2347 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2348 | '--arch=x86'], |
| 2349 | }, |
| 2350 | { |
| 2351 | 'name': 'sysroot_mips', |
| 2352 | 'pattern': '.', |
| 2353 | 'condition': 'checkout_linux and checkout_mips', |
| 2354 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2355 | '--arch=mips'], |
| 2356 | }, |
| 2357 | { |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2358 | 'name': 'sysroot_mips64', |
| 2359 | 'pattern': '.', |
| 2360 | 'condition': 'checkout_linux and checkout_mips64', |
| 2361 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2362 | '--arch=mips64el'], |
| 2363 | }, |
| 2364 | |
| 2365 | { |
Tom Anderson | a07b9fe | 2018-02-09 04:08:26 | [diff] [blame] | 2366 | 'name': 'sysroot_x64', |
| 2367 | 'pattern': '.', |
| 2368 | 'condition': 'checkout_linux and checkout_x64', |
| 2369 | 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py', |
| 2370 | '--arch=x64'], |
sbc | 41d0e08 | 2014-10-22 20:39:29 | [diff] [blame] | 2371 | }, |
| 2372 | { |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2373 | # Case-insensitivity for the Win SDK. Must run before win_toolchain below. |
| 2374 | 'name': 'ciopfs_linux', |
| 2375 | 'pattern': '.', |
| 2376 | 'condition': 'checkout_win and host_os == "linux"', |
| 2377 | 'action': [ 'python', |
| 2378 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2379 | '--no_resume', |
| 2380 | '--no_auth', |
| 2381 | '--bucket', 'chromium-browser-clang/ciopfs', |
| 2382 | '-s', 'src/build/ciopfs.sha1', |
| 2383 | ] |
| 2384 | }, |
| 2385 | { |
Nico Weber | b1943703 | 2017-10-09 02:45:09 | [diff] [blame] | 2386 | # Update the Windows toolchain if necessary. Must run before 'clang' below. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2387 | 'name': 'win_toolchain', |
| 2388 | 'pattern': '.', |
Nico Weber | a13ad93 | 2017-10-12 18:52:40 | [diff] [blame] | 2389 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2390 | 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'], |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2391 | }, |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2392 | { |
| 2393 | # Update the Mac toolchain if necessary. |
| 2394 | 'name': 'mac_toolchain', |
| 2395 | 'pattern': '.', |
Michael Achenbach | 0c78efa | 2019-07-30 20:00:02 | [diff] [blame] | 2396 | 'condition': 'checkout_mac', |
Nodir Turakulov | 52cd53f | 2017-11-14 22:08:02 | [diff] [blame] | 2397 | 'action': ['python', 'src/build/mac_toolchain.py'], |
justincohen | 6a03a3d | 2016-03-26 21:44:38 | [diff] [blame] | 2398 | }, |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2399 | # Pull binutils for linux, enabled debug fission for faster linking / |
| 2400 | # debugging when used with clang on Ubuntu Precise. |
| 2401 | # https://code.google.com/p/chromium/issues/detail?id=352046 |
| 2402 | { |
| 2403 | 'name': 'binutils', |
| 2404 | 'pattern': 'src/third_party/binutils', |
Wang Qing | d25f7cc | 2018-09-05 06:01:04 | [diff] [blame] | 2405 | 'condition': 'host_os == "linux" and host_cpu != "mips64"', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2406 | 'action': [ |
Nodir Turakulov | fec77cd | 2017-11-14 18:22:32 | [diff] [blame] | 2407 | 'python', |
hans | b2eae97 | 2015-05-19 00:53:12 | [diff] [blame] | 2408 | 'src/third_party/binutils/download.py', |
| 2409 | ], |
| 2410 | }, |
[email protected] | c71d328 | 2014-04-09 01:56:20 | [diff] [blame] | 2411 | { |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2412 | # Update the prebuilt clang toolchain. |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2413 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2414 | 'name': 'clang', |
| 2415 | 'pattern': '.', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2416 | 'condition': 'not llvm_force_head_revision', |
| 2417 | 'action': ['python', 'src/tools/clang/scripts/update.py'], |
| 2418 | }, |
| 2419 | { |
| 2420 | # Build the clang toolchain from tip-of-tree. |
| 2421 | # Note: On Win, this should run after win_toolchain, as it may use it. |
| 2422 | 'name': 'clang_tot', |
| 2423 | 'pattern': '.', |
| 2424 | 'condition': 'llvm_force_head_revision', |
Hans Wennborg | d1eec55 | 2019-05-02 14:59:07 | [diff] [blame] | 2425 | 'action': ['python', 'src/tools/clang/scripts/build.py', |
Hans Wennborg | 0214e8a | 2019-04-29 09:50:51 | [diff] [blame] | 2426 | '--llvm-force-head-revision', |
| 2427 | '--with-android={checkout_android}'], |
Hans Wennborg | 28fb41c | 2014-09-22 23:25:12 | [diff] [blame] | 2428 | }, |
| 2429 | { |
Roberto Carrillo | 3631272 | 2018-10-17 02:18:45 | [diff] [blame] | 2430 | # This is supposed to support the same set of platforms as 'clang' above. |
| 2431 | 'name': 'clang_coverage', |
| 2432 | 'pattern': '.', |
| 2433 | 'condition': 'checkout_clang_coverage_tools', |
| 2434 | 'action': ['python', 'src/tools/code_coverage/update_clang_coverage_tools.py'], |
| 2435 | }, |
| 2436 | { |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2437 | # 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] | 2438 | # there. lld is however needed in win and Fuchsia cross builds, so |
| 2439 | # download it there. Should run after the clang hook. |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2440 | 'name': 'lld/mac', |
| 2441 | 'pattern': '.', |
Fabrice de Gans-Riberi | bbc67a1b | 2018-08-30 13:19:21 | [diff] [blame] | 2442 | 'condition': 'host_os == "mac" and (checkout_win or checkout_fuchsia)', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2443 | 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'], |
Nico Weber | 1df4a69 | 2017-10-16 21:36:30 | [diff] [blame] | 2444 | }, |
| 2445 | { |
phajdan.jr | 2448b2c | 2015-04-24 21:04:17 | [diff] [blame] | 2446 | # Update LASTCHANGE. |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2447 | 'name': 'lastchange', |
| 2448 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2449 | 'action': ['python', 'src/build/util/lastchange.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2450 | '-o', 'src/build/util/LASTCHANGE'], |
[email protected] | 9046a11 | 2012-01-31 20:45:25 | [diff] [blame] | 2451 | }, |
| 2452 | { |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2453 | # Update GPU lists version string (for gpu/config). |
| 2454 | 'name': 'gpu_lists_version', |
| 2455 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2456 | 'action': ['python', 'src/build/util/lastchange.py', |
Kai Ninomiya | 96bd9ef9 | 2017-10-20 21:30:37 | [diff] [blame] | 2457 | '-m', 'GPU_LISTS_VERSION', |
| 2458 | '--revision-id-only', |
| 2459 | '--header', 'src/gpu/config/gpu_lists_version.h'], |
| 2460 | }, |
| 2461 | { |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2462 | # Update skia_commit_hash.h. |
| 2463 | 'name': 'lastchange_skia', |
| 2464 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2465 | 'action': ['python', 'src/build/util/lastchange.py', |
halcanary | 5cacab3a | 2016-07-29 19:23:20 | [diff] [blame] | 2466 | '-m', 'SKIA_COMMIT_HASH', |
| 2467 | '-s', 'src/third_party/skia', |
| 2468 | '--header', 'src/skia/ext/skia_commit_hash.h'], |
| 2469 | }, |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2470 | # Pull clang-format binaries using checked-in hashes. |
| 2471 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2472 | 'name': 'clang_format_win', |
| 2473 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2474 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2475 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2476 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2477 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2478 | '--no_auth', |
| 2479 | '--bucket', 'chromium-clang-format', |
| 2480 | '-s', 'src/buildtools/win/clang-format.exe.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2481 | ], |
| 2482 | }, |
| 2483 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2484 | 'name': 'clang_format_mac', |
| 2485 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2486 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2487 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2488 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2489 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2490 | '--no_auth', |
| 2491 | '--bucket', 'chromium-clang-format', |
| 2492 | '-s', 'src/buildtools/mac/clang-format.sha1', |
[email protected] | 6eabd70 | 2014-01-12 00:19:20 | [diff] [blame] | 2493 | ], |
| 2494 | }, |
| 2495 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2496 | 'name': 'clang_format_linux', |
| 2497 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2498 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2499 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2500 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2501 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2502 | '--no_auth', |
| 2503 | '--bucket', 'chromium-clang-format', |
| 2504 | '-s', 'src/buildtools/linux64/clang-format.sha1', |
[email protected] | 6ec1d6fc | 2014-06-25 19:55:21 | [diff] [blame] | 2505 | ], |
| 2506 | }, |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2507 | # Pull rc binaries using checked-in hashes. |
| 2508 | { |
| 2509 | 'name': 'rc_win', |
| 2510 | 'pattern': '.', |
| 2511 | 'condition': 'checkout_win and host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2512 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2513 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2514 | '--no_resume', |
| 2515 | '--no_auth', |
| 2516 | '--bucket', 'chromium-browser-clang/rc', |
| 2517 | '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1', |
| 2518 | ], |
| 2519 | }, |
| 2520 | { |
| 2521 | 'name': 'rc_mac', |
| 2522 | 'pattern': '.', |
| 2523 | 'condition': 'checkout_win and host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2524 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2525 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2526 | '--no_resume', |
| 2527 | '--no_auth', |
| 2528 | '--bucket', 'chromium-browser-clang/rc', |
| 2529 | '-s', 'src/build/toolchain/win/rc/mac/rc.sha1', |
| 2530 | ], |
| 2531 | }, |
| 2532 | { |
| 2533 | 'name': 'rc_linux', |
| 2534 | 'pattern': '.', |
| 2535 | 'condition': 'checkout_win and host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2536 | 'action': [ 'python', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2537 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2538 | '--no_resume', |
| 2539 | '--no_auth', |
| 2540 | '--bucket', 'chromium-browser-clang/rc', |
| 2541 | '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2542 | ] |
| 2543 | }, |
Nico Weber | 7629930 | 2018-02-01 20:36:45 | [diff] [blame] | 2544 | { |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2545 | 'name': 'test_fonts', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2546 | 'pattern': '.', |
| 2547 | 'action': [ 'download_from_google_storage', |
| 2548 | '--no_resume', |
Dominik Röttsches | f49ef76 | 2017-11-17 09:26:31 | [diff] [blame] | 2549 | '--extract', |
| 2550 | '--no_auth', |
| 2551 | '--bucket', 'chromium-fonts', |
Tom Anderson | 44027d4 | 2018-03-15 17:14:53 | [diff] [blame] | 2552 | '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1', |
Nico Weber | 0c0ade8 | 2017-10-19 22:34:43 | [diff] [blame] | 2553 | ], |
| 2554 | }, |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2555 | # Pull order files for the win/clang build. |
| 2556 | { |
| 2557 | 'name': 'orderfiles_win', |
| 2558 | 'pattern': '.', |
Paweł Hajdan, Jr | 004d8b3 | 2017-10-02 18:44:22 | [diff] [blame] | 2559 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2560 | 'action': [ 'python', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2561 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2562 | '--no_resume', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2563 | '--no_auth', |
Nico Weber | be2fc4f | 2019-05-03 13:36:05 | [diff] [blame] | 2564 | '--num_threads=4', |
Hans Wennborg | fc1e297 | 2017-06-12 18:42:26 | [diff] [blame] | 2565 | '--bucket', 'chromium-browser-clang/orderfiles', |
| 2566 | '-d', 'src/chrome/build', |
| 2567 | ], |
| 2568 | }, |
erikwright | 9bdc2bf | 2015-01-22 20:20:04 | [diff] [blame] | 2569 | { |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 2570 | 'name': 'apache_mac', |
| 2571 | 'pattern': '\\.sha1', |
| 2572 | 'condition': 'checkout_mac', |
| 2573 | 'action': [ 'python', |
| 2574 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2575 | '--no_resume', |
| 2576 | '--directory', |
| 2577 | '--recursive', |
| 2578 | '--no_auth', |
| 2579 | '--num_threads=16', |
| 2580 | '--bucket', 'chromium-apache-mac', |
| 2581 | 'src/third_party/apache-mac', |
| 2582 | ], |
| 2583 | }, |
| 2584 | { |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2585 | 'name': 'apache_win32', |
| 2586 | 'pattern': '\\.sha1', |
David Benjamin | ddc843c | 2019-03-26 14:50:07 | [diff] [blame] | 2587 | 'condition': 'checkout_win', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2588 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2589 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2590 | '--no_resume', |
Stefan Zager | fd5ba19 | 2014-08-23 00:29:39 | [diff] [blame] | 2591 | '--directory', |
| 2592 | '--recursive', |
| 2593 | '--no_auth', |
| 2594 | '--num_threads=16', |
| 2595 | '--bucket', 'chromium-apache-win32', |
| 2596 | 'src/third_party/apache-win32', |
[email protected] | 2154052a | 2014-06-14 19:29:26 | [diff] [blame] | 2597 | ], |
| 2598 | }, |
| 2599 | { |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2600 | 'name': 'msan_chained_origins', |
| 2601 | 'pattern': '.', |
| 2602 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2603 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2604 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2605 | '--no_resume', |
| 2606 | '--no_auth', |
| 2607 | '--bucket', 'chromium-instrumented-libraries', |
| 2608 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2609 | ], |
| 2610 | }, |
| 2611 | { |
| 2612 | 'name': 'msan_no_origins', |
| 2613 | 'pattern': '.', |
| 2614 | 'condition': 'checkout_instrumented_libraries', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2615 | 'action': [ 'python', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2616 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2617 | '--no_resume', |
| 2618 | '--no_auth', |
| 2619 | '--bucket', 'chromium-instrumented-libraries', |
| 2620 | '-s', 'src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1', |
Dirk Pranke | 6c360be | 2017-10-09 19:06:59 | [diff] [blame] | 2621 | ], |
thomasanderson | aa441f5 | 2017-04-04 22:35:39 | [diff] [blame] | 2622 | }, |
| 2623 | { |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2624 | 'name': 'wasm_fuzzer', |
| 2625 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2626 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2627 | 'src/third_party/depot_tools/download_from_google_storage.py', |
Dirk Pranke | 474d1ca | 2019-03-13 23:14:36 | [diff] [blame] | 2628 | '--no_resume', |
| 2629 | '--no_auth', |
| 2630 | '-u', |
| 2631 | '--bucket', 'v8-wasm-fuzzer', |
| 2632 | '-s', 'src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1', |
bradnelson | 20c9a731 | 2016-08-30 17:45:47 | [diff] [blame] | 2633 | ], |
| 2634 | }, |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2635 | |
| 2636 | # Pull down Node binaries for WebUI toolchain. |
| 2637 | { |
| 2638 | 'name': 'node_linux64', |
| 2639 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2640 | 'condition': 'host_os == "linux"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2641 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2642 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2643 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2644 | '--extract', |
| 2645 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2646 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2647 | '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1', |
| 2648 | ], |
| 2649 | }, |
| 2650 | { |
| 2651 | 'name': 'node_mac', |
| 2652 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2653 | 'condition': 'host_os == "mac"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2654 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2655 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2656 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2657 | '--extract', |
| 2658 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2659 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2660 | '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1', |
| 2661 | ], |
| 2662 | }, |
| 2663 | { |
| 2664 | 'name': 'node_win', |
| 2665 | 'pattern': '.', |
Paweł Hajdan, Jr | 0c5df4c | 2017-09-18 22:58:19 | [diff] [blame] | 2666 | 'condition': 'host_os == "win"', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2667 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2668 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2669 | '--no_resume', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2670 | '--no_auth', |
dpapad | ac12ec0 | 2019-03-20 20:40:06 | [diff] [blame] | 2671 | '--bucket', 'chromium-nodejs/10.15.3', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2672 | '-s', 'src/third_party/node/win/node.exe.sha1', |
| 2673 | ], |
| 2674 | }, |
| 2675 | |
| 2676 | # Pull down NPM dependencies for WebUI toolchain. |
| 2677 | { |
| 2678 | 'name': 'webui_node_modules', |
| 2679 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2680 | 'action': [ 'python', |
Dan Jacques | da2309d | 2017-06-08 21:48:12 | [diff] [blame] | 2681 | 'src/third_party/depot_tools/download_from_google_storage.py', |
dpapad | cbee6ab | 2017-01-14 03:05:53 | [diff] [blame] | 2682 | '--no_resume', |
| 2683 | '--extract', |
| 2684 | '--no_auth', |
| 2685 | '--bucket', 'chromium-nodejs', |
| 2686 | '-s', 'src/third_party/node/node_modules.tar.gz.sha1', |
| 2687 | ], |
| 2688 | }, |
kainino | 61f7bce | 2017-04-28 21:53:27 | [diff] [blame] | 2689 | |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2690 | # Download Telemetry's binary dependencies via conditionals |
| 2691 | { |
| 2692 | 'name': 'checkout_telemetry_binary_dependencies', |
| 2693 | 'condition': 'checkout_telemetry_dependencies', |
| 2694 | 'pattern': '.', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2695 | 'action': [ 'vpython', |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2696 | 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies', |
| 2697 | ], |
| 2698 | }, |
Miguel Casas | bbcf56ca | 2017-12-21 00:50:28 | [diff] [blame] | 2699 | # |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2700 | # Download Telemetry's benchmark binary dependencies via conditionals |
| 2701 | { |
| 2702 | 'name': 'checkout_telemetry_benchmark_deps', |
| 2703 | 'condition': 'checkout_telemetry_dependencies', |
| 2704 | 'pattern': '.', |
Nodir Turakulov | eea875a | 2018-01-22 23:52:52 | [diff] [blame] | 2705 | 'action': [ 'vpython', |
Stephen Martinis | 924a02d | 2017-11-08 10:12:03 | [diff] [blame] | 2706 | 'src/tools/perf/fetch_benchmark_deps.py', |
| 2707 | '-f', |
| 2708 | ], |
| 2709 | }, |
Dirk Pranke | c1d528fc0 | 2017-11-03 15:15:03 | [diff] [blame] | 2710 | |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2711 | # This is used to ensure that all network operations are properly |
| 2712 | # annotated so we can document what they're for. |
| 2713 | { |
| 2714 | 'name': 'tools_traffic_annotation_linux', |
| 2715 | 'pattern': '.', |
| 2716 | 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2717 | 'action': [ 'python', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2718 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2719 | '--no_resume', |
Dirk Pranke | 099b747b | 2017-10-06 04:29:09 | [diff] [blame] | 2720 | '--no_auth', |
| 2721 | '--num_threads=4', |
| 2722 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2723 | '-d', 'src/tools/traffic_annotation/bin/linux64', |
| 2724 | ], |
| 2725 | }, |
| 2726 | |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2727 | # This is used to ensure that all network operations are properly |
| 2728 | # annotated so we can document what they're for. |
| 2729 | { |
| 2730 | 'name': 'tools_traffic_annotation_windows', |
| 2731 | 'pattern': '.', |
Ramin Halavati | 4478d11 | 2018-02-01 06:33:52 | [diff] [blame] | 2732 | 'condition': 'host_os == "win" and checkout_traffic_annotation_tools', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2733 | 'action': [ 'python', |
Ramin Halavati | b7e55d9 | 2017-11-21 08:00:57 | [diff] [blame] | 2734 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2735 | '--no_resume', |
| 2736 | '--no_auth', |
| 2737 | '--num_threads=4', |
| 2738 | '--bucket', 'chromium-tools-traffic_annotation', |
| 2739 | '-d', 'src/tools/traffic_annotation/bin/win32', |
| 2740 | ], |
| 2741 | }, |
| 2742 | |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2743 | # Pull down Zucchini test data. |
| 2744 | { |
| 2745 | 'name': 'zucchini_testdata', |
| 2746 | 'pattern': '.', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2747 | 'action': [ 'python', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2748 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2749 | '--no_resume', |
| 2750 | '--no_auth', |
huangs | 3bad8e2 | 2017-09-05 21:50:00 | [diff] [blame] | 2751 | '--num_threads=4', |
Samuel Huang | e82c2dd | 2018-05-03 13:42:57 | [diff] [blame] | 2752 | '--bucket', 'chromium-binary-patching/zucchini_testdata', |
| 2753 | '--recursive', |
| 2754 | '-d', 'src/components/zucchini', |
Etienne Pierre-Doray | 44c7431c | 2017-08-21 19:42:40 | [diff] [blame] | 2755 | ], |
| 2756 | }, |
bsheedy | 7fbd0a5 | 2019-02-05 19:03:36 | [diff] [blame] | 2757 | # Pull down Android RenderTest goldens |
| 2758 | { |
| 2759 | 'name': 'Fetch Android RenderTest goldens', |
| 2760 | 'pattern': '.', |
| 2761 | 'condition': 'checkout_android', |
| 2762 | 'action': [ 'python', |
| 2763 | 'src/chrome/test/data/android/manage_render_test_goldens.py', |
| 2764 | 'download', |
| 2765 | ], |
| 2766 | }, |
John Budorick | da80169 | 2018-02-21 23:24:28 | [diff] [blame] | 2767 | { |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2768 | 'name': 'Fetch Android AFDO profile', |
| 2769 | 'pattern': '.', |
George Burgess IV | b4a5f27 | 2018-05-15 19:28:03 | [diff] [blame] | 2770 | 'condition': 'checkout_android or checkout_linux', |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 2771 | 'action': [ 'vpython', |
| 2772 | 'src/tools/download_cros_provided_profile.py', |
| 2773 | '--newest_state=src/chrome/android/profiles/newest.txt', |
| 2774 | '--local_state=src/chrome/android/profiles/local.txt', |
| 2775 | '--output_name=src/chrome/android/profiles/afdo.prof', |
| 2776 | '--gs_url_base=chromeos-prebuilt/afdo-job/llvm', |
| 2777 | ], |
George Burgess IV | 1f751e4 | 2018-01-23 22:10:00 | [diff] [blame] | 2778 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2779 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2780 | 'name': 'gvr_static_shim_android_arm_1', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2781 | 'pattern': '\\.sha1', |
| 2782 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2783 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2784 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2785 | '--no_resume', |
| 2786 | '--no_auth', |
| 2787 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2788 | '-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] | 2789 | ], |
| 2790 | }, |
| 2791 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2792 | 'name': 'gvr_static_shim_android_arm_Cr', |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2793 | 'pattern': '\\.sha1', |
| 2794 | 'condition': 'checkout_android', |
| 2795 | 'action': [ 'python', |
| 2796 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2797 | '--no_resume', |
| 2798 | '--no_auth', |
| 2799 | '--bucket', 'chromium-gvr-static-shim', |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2800 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm_Cr.a.sha1', |
| 2801 | ], |
| 2802 | }, |
| 2803 | { |
| 2804 | 'name': 'gvr_static_shim_android_arm64_1', |
| 2805 | 'pattern': '\\.sha1', |
| 2806 | 'condition': 'checkout_android', |
| 2807 | 'action': [ 'python', |
| 2808 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2809 | '--no_resume', |
| 2810 | '--no_auth', |
| 2811 | '--bucket', 'chromium-gvr-static-shim', |
| 2812 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_1.a.sha1', |
| 2813 | ], |
| 2814 | }, |
| 2815 | { |
Tom Anderson | 49e7497 | 2019-01-04 19:17:40 | [diff] [blame] | 2816 | 'name': 'gvr_static_shim_android_arm64_Cr', |
| 2817 | 'pattern': '\\.sha1', |
| 2818 | 'condition': 'checkout_android', |
| 2819 | 'action': [ 'python', |
| 2820 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2821 | '--no_resume', |
| 2822 | '--no_auth', |
| 2823 | '--bucket', 'chromium-gvr-static-shim', |
| 2824 | '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64_Cr.a.sha1', |
| 2825 | ], |
Tom Anderson | 16eac9c | 2018-05-23 21:26:26 | [diff] [blame] | 2826 | }, |
| 2827 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2828 | 'name': 'vr_controller_test_api', |
| 2829 | 'pattern': '\\.sha1', |
| 2830 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2831 | 'action': [ 'python', |
Nodir Turakulov | e2d81c3 | 2017-11-10 07:47:27 | [diff] [blame] | 2832 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2833 | '--no_resume', |
| 2834 | '--no_auth', |
| 2835 | '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 2836 | '-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] | 2837 | ], |
| 2838 | }, |
| 2839 | # Download VR test APKs only if the environment variable is set |
| 2840 | { |
| 2841 | 'name': 'vr_test_apks', |
| 2842 | 'pattern': '.', |
| 2843 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2844 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2845 | 'src/third_party/gvr-android-sdk/test-apks/update.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2846 | ], |
| 2847 | }, |
bsheedy | e3c0a22 | 2018-07-27 19:06:09 | [diff] [blame] | 2848 | # DOWNLOAD AR test APKs only if the environment variable is set |
| 2849 | { |
| 2850 | 'name': 'ar_test_apks', |
| 2851 | 'pattern': '.', |
| 2852 | 'condition': 'checkout_android', |
| 2853 | 'action': [ 'python', |
| 2854 | 'src/third_party/arcore-android-sdk/test-apks/update.py', |
| 2855 | ], |
| 2856 | }, |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2857 | # Download Oculus SDK if appropriate. |
| 2858 | { |
| 2859 | 'name': 'libovr', |
| 2860 | 'pattern': '.', |
| 2861 | 'condition': 'checkout_oculus_sdk', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2862 | 'action': ['python', |
Bill Orr | 7cccdf57 | 2017-12-19 17:05:49 | [diff] [blame] | 2863 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2864 | '--bucket', 'chrome-oculus-sdk', |
| 2865 | '--recursive', |
| 2866 | '--num_threads=10', |
| 2867 | '--directory', |
| 2868 | 'src/third_party/libovr/src', |
| 2869 | ], |
| 2870 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2871 | # Download common ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2872 | { |
| 2873 | 'name': 'ink-build', |
| 2874 | 'pattern': '.', |
| 2875 | 'condition': 'checkout_chromeos', |
| 2876 | 'action': [ 'python', |
| 2877 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2878 | '--no_resume', |
| 2879 | '--no_auth', |
| 2880 | '--num_threads=4', |
| 2881 | '--bucket', 'chromium-ink', |
| 2882 | '-d', 'src/third_party/ink/build', |
| 2883 | ], |
| 2884 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2885 | # Download wasm ink resources for chromeos. |
dstockwell | bec9e7d | 2019-01-09 00:56:13 | [diff] [blame] | 2886 | { |
| 2887 | 'name': 'ink-build-wasm', |
| 2888 | 'pattern': '.', |
| 2889 | 'condition': 'checkout_chromeos', |
| 2890 | 'action': [ 'python', |
| 2891 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2892 | '--no_resume', |
| 2893 | '--no_auth', |
| 2894 | '--num_threads=4', |
| 2895 | '--bucket', 'chromium-ink', |
| 2896 | '-d', 'src/third_party/ink/build/wasm', |
| 2897 | ], |
| 2898 | }, |
dstockwell | e9ef789 | 2019-03-06 10:30:52 | [diff] [blame] | 2899 | # Download wasm threaded ink resources for chromeos. |
| 2900 | { |
| 2901 | 'name': 'ink-build-wasm', |
| 2902 | 'pattern': '.', |
| 2903 | 'condition': 'checkout_chromeos', |
| 2904 | 'action': [ 'python', |
| 2905 | 'src/third_party/depot_tools/download_from_google_storage.py', |
| 2906 | '--no_resume', |
| 2907 | '--no_auth', |
| 2908 | '--num_threads=4', |
| 2909 | '--bucket', 'chromium-ink', |
| 2910 | '-d', 'src/third_party/ink/build/wasm-threads', |
| 2911 | ], |
| 2912 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2913 | { |
Tiancong Wang | 6cfc163 | 2019-07-25 21:32:37 | [diff] [blame] | 2914 | 'name': 'Fetch ChromeOS-specific orderfile for Chrome', |
| 2915 | 'pattern': '.', |
| 2916 | 'condition': 'checkout_chromeos or checkout_simplechrome', |
| 2917 | 'action': [ 'vpython', |
| 2918 | 'src/tools/download_cros_provided_profile.py', |
| 2919 | '--newest_state=src/chromeos/profiles/orderfile.newest.txt', |
| 2920 | '--local_state=src/chromeos/profiles/orderfile.local.txt', |
| 2921 | '--output_name=src/chromeos/profiles/chromeos.orderfile.txt', |
| 2922 | '--gs_url_base=chromeos-prebuilt/afdo-job/orderfiles/vetted', |
| 2923 | ], |
| 2924 | }, |
| 2925 | { |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2926 | # Pull doclava binaries if building for Android. |
| 2927 | 'name': 'doclava', |
| 2928 | 'pattern': '.', |
| 2929 | 'condition': 'checkout_android', |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2930 | 'action': [ 'python', |
John Budorick | b80cf48 | 2017-11-07 19:32:05 | [diff] [blame] | 2931 | 'src/build/android/download_doclava.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2932 | ], |
| 2933 | }, |
| 2934 | |
| 2935 | { |
| 2936 | 'name': 'fuchsia_sdk', |
| 2937 | 'pattern': '.', |
| 2938 | 'condition': 'checkout_fuchsia', |
| 2939 | 'action': [ |
Nodir Turakulov | dd08090 | 2018-01-20 01:06:48 | [diff] [blame] | 2940 | 'python', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2941 | 'src/build/fuchsia/update_sdk.py', |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2942 | ], |
| 2943 | }, |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2944 | |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2945 | # Download public CrOS simplechrome artifacts. The first hooks is for boards |
| 2946 | # that support VM images, the second hook for all other boards. For internal |
| 2947 | # boards, see src-internal's DEPS. |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2948 | { |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2949 | 'name': 'cros_simplechrome_artifacts_with_vm', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2950 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2951 | 'condition': '(checkout_simplechrome and cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2952 | 'action': [ |
| 2953 | 'src/third_party/chromite/bin/cros', |
| 2954 | 'chrome-sdk', |
Benjamin Pastene | b828cce | 2018-04-06 18:12:46 | [diff] [blame] | 2955 | '--nogoma', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2956 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 2957 | '--fallback-versions=10', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2958 | '--nogn-gen', |
| 2959 | '--download-vm', |
| 2960 | '--board={cros_board}', |
| 2961 | '--cache-dir=src/build/cros_cache/', |
Benjamin Pastene | fab64fff | 2018-04-18 22:21:16 | [diff] [blame] | 2962 | # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart |
| 2963 | # enough to eject old toolchains from the cache. |
| 2964 | '--clear-sdk-cache', |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2965 | '--log-level=error', |
| 2966 | 'exit', |
| 2967 | ], |
| 2968 | }, |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2969 | { |
| 2970 | 'name': 'cros_simplechrome_artifacts_with_no_vm', |
| 2971 | 'pattern': '.', |
Ben Pastene | af216c7d | 2019-05-21 20:56:54 | [diff] [blame] | 2972 | 'condition': '(checkout_simplechrome and not cros_download_vm) and use_public_cros_config', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2973 | 'action': [ |
| 2974 | 'src/third_party/chromite/bin/cros', |
| 2975 | 'chrome-sdk', |
| 2976 | '--nogoma', |
| 2977 | '--use-external-config', |
Ben Pastene | 276b8a5 | 2019-08-08 16:33:17 | [diff] [blame] | 2978 | '--fallback-versions=10', |
Benjamin Pastene | 99550d2 | 2018-04-19 00:16:43 | [diff] [blame] | 2979 | '--nogn-gen', |
| 2980 | '--board={cros_board}', |
| 2981 | '--cache-dir=src/build/cros_cache/', |
| 2982 | '--log-level=error', |
| 2983 | 'exit', |
| 2984 | ], |
| 2985 | }, |
Benjamin Pastene | 9d8ac1b | 2018-04-03 20:33:02 | [diff] [blame] | 2986 | |
Dan Jacques | 9731b23a | 2017-10-12 20:40:17 | [diff] [blame] | 2987 | # Download and initialize "vpython" VirtualEnv environment packages. |
| 2988 | { |
| 2989 | 'name': 'vpython_common', |
| 2990 | 'pattern': '.', |
| 2991 | 'action': [ 'vpython', |
| 2992 | '-vpython-spec', 'src/.vpython', |
| 2993 | '-vpython-tool', 'install', |
| 2994 | ], |
| 2995 | }, |
Paweł Hajdan, Jr | e7eed64 | 2017-10-02 16:46:56 | [diff] [blame] | 2996 | ] |
scottmg | 4cd62bec | 2017-05-16 03:55:25 | [diff] [blame] | 2997 | |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2998 | recursedeps = [ |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 2999 | # 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] | 3000 | 'src/third_party/angle', |
btolsch | c50a3d5 | 2019-03-06 21:22:42 | [diff] [blame] | 3001 | 'src/third_party/openscreen/src', |
Paweł Hajdan, Jr | 37a7a74 | 2017-09-25 11:37:30 | [diff] [blame] | 3002 | # src-internal has its own DEPS file to pull additional internal repos |
| 3003 | 'src-internal', |
jbudorick | e6932bfd | 2016-09-07 02:09:22 | [diff] [blame] | 3004 | ] |