blob: 8e22c40811c9c0c52845a760d9eb8269e596d09b [file] [log] [blame]
andrewhayden889350dd2014-10-06 09:16:401# 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]3645abc2013-10-28 22:41:284#
andrewhayden889350dd2014-10-06 09:16:405# 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]3645abc2013-10-28 22:41:287#
[email protected]ed711942012-05-19 06:57:068# When adding a new dependency, please update the top-level .gitignore file
9# to list the dependency's destination directory.
andrewhayden889350dd2014-10-06 09:16:4010#
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
andrewhayden1859920b2015-08-11 13:13:2420# # 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
andrewhayden889350dd2014-10-06 09:16:4025# # You should now have a modified DEPS file; commit and upload as normal
26# git commit -a
27# git cl upload
28
Dirk Pranke4dabe802017-11-02 07:18:5529gclient_gn_args_file = 'src/build/config/gclient_args.gni'
30gclient_gn_args = [
Johann5c03fd42017-11-08 15:22:1731 'checkout_libaom',
Dirk Pranke4dabe802017-11-02 07:18:5532 'checkout_nacl',
Bill Orr7cccdf572017-12-19 17:05:4933 'checkout_oculus_sdk',
Dirk Pranke4dabe802017-11-02 07:18:5534]
35
[email protected]ed711942012-05-19 06:57:0636
[email protected]5f129de2009-02-24 23:22:0437vars = {
Dirk Prankef044b6b02017-10-05 22:02:0338 # By default, we should check out everything needed to run on the main
39 # chromium waterfalls. This var can be also be set to "small", in order
40 # to skip things are not strictly needed to build chromium for development
41 # purposes.
42 'checkout_configuration': 'default',
43
Shenghua Zhangcbe64ba2018-04-12 19:11:4944 # By default, do not check out android sdk sources. This can be overridden
45 # e.g. with custom_vars.
46 'checkout_android_sdk_sources': False,
47
Dirk Pranke4dabe802017-11-02 07:18:5548 # Check out and download nacl by default. This can be disabled e.g. with
49 # custom_vars.
50 'checkout_nacl': True,
51
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3052 # By default, do not check out src-internal. This can be overridden e.g. with
53 # custom_vars.
Paweł Hajdan, Jr41d18fa2017-10-09 12:41:5754 'checkout_src_internal': False,
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3055
Dirk Prankec1d528fc02017-11-03 15:15:0356 # Fetch the additional packages and files needed to run all of the
57 # telemetry tests. This is false by default as some stuff is only
58 # privately accessible.
59 'checkout_telemetry_dependencies': False,
60
Johanncf5bb4c62017-10-30 23:21:3461 # libaom provides support for AV1 but the bitstream is not frozen.
Johann80428a92017-12-04 21:56:2862 'checkout_libaom': True,
Johanncf5bb4c62017-10-30 23:21:3463
Bill Orr7cccdf572017-12-19 17:05:4964 # By default do not check out the Oculus SDK. Only available for Googlers.
Alexander Alekseevf76b1c02018-02-16 04:03:1465 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win',
Bill Orr7cccdf572017-12-19 17:05:4966
Dirk Pranke099b747b2017-10-06 04:29:0967 # TODO(dpranke): change to != "small" once != is supported.
Dirk Pranke5e953152017-10-10 16:26:4468 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"',
Dirk Pranke4c3098b2017-10-10 18:57:2269 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"',
Dirk Pranke5e953152017-10-10 16:26:4470
Benjamin Pastene9d8ac1b2018-04-03 20:33:0271 # Define the default board to be targetted when building for CrOS.
72 'cros_board': 'amd64-generic',
Benjamin Pastene99550d22018-04-19 00:16:4373 # Surround the board var in quotes so gclient doesn't try parsing the string
74 # as an expression.
75 'cros_download_vm': '"{cros_board}" == "amd64-generic"',
Benjamin Pastene9d8ac1b2018-04-03 20:33:0276
Oystein Eftevaaga9439b922018-01-08 19:30:1477 'android_git': 'https://android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:3478 'aomedia_git': 'https://aomedia.googlesource.com',
Stefan Zagerfd5ba192014-08-23 00:29:3979 'chromium_git': 'https://chromium.googlesource.com',
dpranke4778c712016-09-23 01:15:5680 'swiftshader_git': 'https://swiftshader.googlesource.com',
81 'pdfium_git': 'https://pdfium.googlesource.com',
82 'boringssl_git': 'https://boringssl.googlesource.com',
agable851c6f7252016-11-04 17:17:3983 'skia_git': 'https://skia.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:0284 'webrtc_git': 'https://webrtc.googlesource.com',
thestig3e7d8e02015-09-28 23:54:4685 # Three lines of non-changing comments so that
thestig3e7d8e02015-09-28 23:54:4686 # the commit queue can handle CLs rolling sfntly
87 # and whatever else without interference from each other.
Lei Zhange1830342018-02-22 03:47:0288 'sfntly_revision': '2804148152d27fa2e6ec97a32bc2d56318e51142',
thestig3e7d8e02015-09-28 23:54:4689 # Three lines of non-changing comments so that
90 # the commit queue can handle CLs rolling Skia
91 # and whatever else without interference from each other.
skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com1e0589fc2018-04-19 00:10:4592 'skia_revision': '4c32956b1fee237ef4527dca27dd044430652ad5',
[email protected]5eb3022e2011-11-23 16:42:2693 # Three lines of non-changing comments so that
sbce2d44aee2015-06-09 03:06:0494 # the commit queue can handle CLs rolling V8
95 # and whatever else without interference from each other.
v8-autoroll33ae8fdc2018-04-18 14:16:3596 'v8_revision': '179dd6e9c965f647cd87fdee218f142850d3afbd',
[email protected]20e0e752012-09-14 15:56:5297 # Three lines of non-changing comments so that
[email protected]10d8ac32013-10-31 13:34:3198 # the commit queue can handle CLs rolling swarming_client
[email protected]7f4fc412013-02-24 00:16:5199 # and whatever else without interference from each other.
Marc-Antoine Ruel72a978812018-01-11 15:15:45100 'swarming_revision': '88229872dd17e71658fe96763feaa77915d8cbd6',
[email protected]d0982f92013-03-19 10:26:20101 # Three lines of non-changing comments so that
[email protected]62f231902014-03-11 10:19:20102 # the commit queue can handle CLs rolling ANGLE
103 # and whatever else without interference from each other.
angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com5eac8da2018-04-18 22:49:26104 'angle_revision': 'abb09f12ad36c0efe1e103e6f71f659a69a6fb88',
[email protected]f58d3292014-05-14 01:56:54105 # Three lines of non-changing comments so that
106 # the commit queue can handle CLs rolling build tools
107 # and whatever else without interference from each other.
Tom Anderson304461632018-04-12 08:06:30108 'buildtools_revision': '8febfea9bc7e7d9a7c6105f06f18f7f0e50cfef9',
dpranke7a694fe2015-08-18 05:11:29109 # Three lines of non-changing comments so that
capne3976c22016-08-12 22:06:17110 # the commit queue can handle CLs rolling SwiftShader
111 # and whatever else without interference from each other.
Alexis Hetube8dfba32018-04-12 18:41:30112 'swiftshader_revision': '9151a3c4279123986fa2fa02a3e094d5da2d874d',
capne3976c22016-08-12 22:06:17113 # Three lines of non-changing comments so that
dpranke7a694fe2015-08-18 05:11:29114 # the commit queue can handle CLs rolling PDFium
[email protected]d6a2e88f12014-05-19 19:27:03115 # and whatever else without interference from each other.
pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com9f775bf2018-04-18 23:10:54116 'pdfium_revision': 'fbecb9a5150d2c5391581933c8089e7249292171',
[email protected]99e1c5c2014-06-20 13:02:29117 # Three lines of non-changing comments so that
118 # the commit queue can handle CLs rolling openmax_dl
119 # and whatever else without interference from each other.
Fabrice de Gans-Riberi429a42522018-04-05 23:08:34120 'openmax_dl_revision': '59265e0e9105ec94e473b59c5c7ca1941e4dbd83',
[email protected]7ee3af52014-07-06 18:16:47121 # Three lines of non-changing comments so that
122 # the commit queue can handle CLs rolling BoringSSL
123 # and whatever else without interference from each other.
Steven Valdezf9bcb1e2018-04-18 19:25:44124 'boringssl_revision': '9f0e7cb314ae64234b928fd379381ae9760a9a5f',
szager29407eb2014-08-26 13:09:31125 # Three lines of non-changing comments so that
szager29407eb2014-08-26 13:09:31126 # the commit queue can handle CLs rolling google-toolbox-for-mac
127 # and whatever else without interference from each other.
Mark Mentovai9ed143162017-07-24 19:04:47128 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb',
szager29407eb2014-08-26 13:09:31129 # Three lines of non-changing comments so that
130 # the commit queue can handle CLs rolling lighttpd
131 # and whatever else without interference from each other.
132 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb',
133 # Three lines of non-changing comments so that
134 # the commit queue can handle CLs rolling lss
135 # and whatever else without interference from each other.
Torne (Richard Coles)9a6106e2017-10-20 17:48:17136 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154',
mseaborn851e1bd12014-09-05 08:00:14137 # Three lines of non-changing comments so that
138 # the commit queue can handle CLs rolling NaCl
139 # and whatever else without interference from each other.
nacl-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com516710972018-03-30 21:00:06140 'nacl_revision': 'ab8b219c8b5578b860f128087190d201fe55e84d',
cwallezf2b03492015-08-25 15:08:18141 # Three lines of non-changing comments so that
drottfe896a82017-03-06 12:12:54142 # the commit queue can handle CLs rolling freetype
bcf53f862ea2016-02-02 05:08:42143 # and whatever else without interference from each other.
Ben Wagner5e4114c02018-04-05 13:35:53144 'freetype_revision': '26ad1acbcb4ca9e25163bd102971c8f0e1b56d87',
robertocn4567f4d2016-03-23 03:36:07145 # Three lines of non-changing comments so that
Dominik Röttsches60dab7e12018-03-20 09:55:47146 # the commit queue can handle CLs rolling HarfBuzz
147 # and whatever else without interference from each other.
148 'harfbuzz_revision': '957e7756634a4fdf1654041e20e883cf964ecac9',
149 # Three lines of non-changing comments so that
robertocn4567f4d2016-03-23 03:36:07150 # the commit queue can handle CLs rolling catapult
151 # and whatever else without interference from each other.
catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com3cf4a082018-04-18 19:00:41152 'catapult_revision': 'a4264f97124c119d9ce6c7eab56ea2a5441589ef',
ochangcbd1cf202016-04-01 21:37:37153 # Three lines of non-changing comments so that
154 # the commit queue can handle CLs rolling libFuzzer
155 # and whatever else without interference from each other.
Jonathan Metzmana86dd472017-12-15 20:43:39156 'libfuzzer_revision': 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f',
chenwilliam56a90382016-12-09 02:16:28157 # Three lines of non-changing comments so that
158 # the commit queue can handle CLs rolling devtools-node-modules
159 # and whatever else without interference from each other.
Will Chenfa874182018-01-03 19:03:26160 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899',
kmarshall520f9512017-01-24 23:25:01161 # Three lines of non-changing comments so that
aizatsky8904f9c2017-03-03 19:50:05162 # the commit queue can handle CLs rolling libprotobuf-mutator
163 # and whatever else without interference from each other.
Jonathan Metzmana54e5af62017-11-01 19:29:06164 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051',
Filip Gorski796be852018-03-02 19:36:36165 # Three lines of non-changing comments so that
166 # the commit queue can handle CLs rolling feed
167 # and whatever else without interference from each other.
Pavel Yatsuk5a351072018-04-13 23:11:36168 'feed_revision': 'ecef016cb494d6c9469a6f99d530634af054dec8',
Shenghua Zhangcbe64ba2018-04-12 19:11:49169 # Three lines of non-changing comments so that
170 # the commit queue can handle CLs rolling android_sdk_build-tools_version
171 # and whatever else without interference from each other.
172 'android_sdk_build-tools_version': 'version:27.0.3-cr0',
173 # Three lines of non-changing comments so that
174 # the commit queue can handle CLs rolling android_sdk_emulator_version
175 # and whatever else without interference from each other.
176 'android_sdk_emulator_version': 'version:27.1.12-cr0',
177 # Three lines of non-changing comments so that
178 # the commit queue can handle CLs rolling android_sdk_extras_version
179 # and whatever else without interference from each other.
180 'android_sdk_extras_version': 'version:47.0.0-cr0',
181 # Three lines of non-changing comments so that
182 # the commit queue can handle CLs rolling android_sdk_platform-tools_version
183 # and whatever else without interference from each other.
184 'android_sdk_platform-tools_version': 'version:27.0.1-cr0',
185 # Three lines of non-changing comments so that
186 # the commit queue can handle CLs rolling android_sdk_platforms_version
187 # and whatever else without interference from each other.
188 'android_sdk_platforms_version': 'version:android-27-cr0',
189 # Three lines of non-changing comments so that
190 # the commit queue can handle CLs rolling android_sdk_sources_version
191 # and whatever else without interference from each other.
192 'android_sdk_sources_version': 'version:android-27-cr1',
193 # Three lines of non-changing comments so that
194 # the commit queue can handle CLs rolling android_sdk_tools_version
195 # and whatever else without interference from each other.
Shenghua Zhang6fa967c2018-04-16 20:45:42196 'android_sdk_tools_version': 'version:26.1.1-cr9',
[email protected]5f129de2009-02-24 23:22:04197}
198
tandrii74b7e422014-09-23 16:45:27199# Only these hosts are allowed for dependencies in this DEPS file.
200# If you need to add a new host, contact chrome infrastracture team.
201allowed_hosts = [
tandriicb12c642015-03-27 19:00:55202 'android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:34203 'aomedia.googlesource.com',
agable851c6f7252016-11-04 17:17:39204 'boringssl.googlesource.com',
Achuith Bhandarkarf6a944c82018-02-22 21:56:04205 'chrome-infra-packages.appspot.com',
Paweł Hajdan, Jr37a7a742017-09-25 11:37:30206 'chrome-internal.googlesource.com',
agable851c6f7252016-11-04 17:17:39207 'chromium.googlesource.com',
208 'pdfium.googlesource.com',
209 'skia.googlesource.com',
capne3976c22016-08-12 22:06:17210 'swiftshader.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:02211 'webrtc.googlesource.com',
tandrii74b7e422014-09-23 16:45:27212]
213
[email protected]5f129de2009-02-24 23:22:04214deps = {
John Williamsff7a08d2018-02-01 03:20:21215 'src/chrome/browser/resources/media_router/extension/src':
mark a. foltzf942c512018-03-19 20:20:41216 Var('chromium_git') + '/media_router.git' + '@' + '50d927e720309777a39fdf1ca89fd096bb51e103',
John Williamsff7a08d2018-02-01 03:20:21217
Stefan Zagerfd5ba192014-08-23 00:29:39218 'src/buildtools':
dpranke4778c712016-09-23 01:15:56219 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'),
[email protected]f58d3292014-05-14 01:56:54220
John Budoricke9aa27c2018-03-24 00:23:27221 'src/chrome/android/profiles': {
222 'packages': [
223 {
224 'package': 'chromium/afdo/profiles/android',
225 'version': 'version:3309',
226 },
227 ],
228 'condition': 'checkout_android',
229 'dep_type': 'cipd',
230 },
231
Paweł Hajdan, Jr7af368952017-10-02 12:25:36232 'src/chrome/installer/mac/third_party/xz/xz': {
233 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7',
234 'condition': 'checkout_mac',
235 },
236
Stefan Zagerfd5ba192014-08-23 00:29:39237 'src/chrome/test/data/perf/canvas_bench':
dpranke4778c712016-09-23 01:15:56238 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732',
[email protected]700e7e32012-02-22 17:04:38239
Stefan Zagerfd5ba192014-08-23 00:29:39240 'src/chrome/test/data/perf/frame_rate/content':
dpranke4778c712016-09-23 01:15:56241 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9',
[email protected]40646b012011-07-26 02:30:26242
bsheedy01d93942017-07-27 22:49:38243 'src/chrome/test/data/vr/webvr_info':
bsheedyac7c01a2017-11-07 18:53:12244 Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248',
bsheedy01d93942017-07-27 22:49:38245
Paweł Hajdan, Jr7af368952017-10-02 12:25:36246 'src/ios/third_party/earl_grey/src': {
Mike Baxleyc1441e72017-11-03 18:26:47247 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '2fd8a7d4b76f820fb95bce495c0ceb324dbe3edb',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36248 'condition': 'checkout_ios',
249 },
250
251 'src/ios/third_party/fishhook/src': {
252 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c',
253 'condition': 'checkout_ios',
254 },
255
256 'src/ios/third_party/gcdwebserver/src': {
257 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0',
258 'condition': 'checkout_ios',
259 },
260
261 'src/ios/third_party/material_components_ios/src': {
iOS Autorollerae9ef3092018-04-18 00:13:27262 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + 'fd0425eb313395a2bb6cfe820c885065290a7c05',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36263 'condition': 'checkout_ios',
264 },
265
266 'src/ios/third_party/material_font_disk_loader_ios/src': {
iOS Autorollered4c9f72017-12-21 15:01:19267 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '8e30188777b016182658fbaa0a4a020a48183224',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36268 'condition': 'checkout_ios',
269 },
270
Gauthier Ambard8d034462017-10-25 16:39:55271 'src/ios/third_party/material_internationalization_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13272 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '8f28a55c7f35b95a587bba01a8467ea470647873',
Gauthier Ambard8d034462017-10-25 16:39:55273 'condition': 'checkout_ios',
274 },
275
Paweł Hajdan, Jr7af368952017-10-02 12:25:36276 'src/ios/third_party/material_roboto_font_loader_ios/src': {
277 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f',
278 'condition': 'checkout_ios',
279 },
280
281 'src/ios/third_party/material_sprited_animation_view_ios/src': {
282 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81',
283 'condition': 'checkout_ios',
284 },
285
286 'src/ios/third_party/material_text_accessibility_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13287 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '92c9e56f4e07622084b3d931247db974fec55dde',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36288 'condition': 'checkout_ios',
289 },
290
mrefaat070940d2017-12-01 02:59:38291 'src/ios/third_party/motion_interchange_objc/src': {
Louis Romero2c7e321c2017-12-21 10:38:13292 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab',
mrefaat070940d2017-12-01 02:59:38293 'condition': 'checkout_ios',
294 },
295
mrefaatb4b862312017-12-01 20:03:05296 'src/ios/third_party/motion_animator_objc/src': {
iOS Autorollere82ca942018-03-06 20:32:21297 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '5df831026445004b2fc0f6a42f8b8f33af46512b',
mrefaatb4b862312017-12-01 20:03:05298 'condition': 'checkout_ios',
299 },
300
Louis Romeroe1d73292017-12-07 01:28:17301 'src/ios/third_party/motion_transitioning_objc/src': {
302 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6',
303 'condition': 'checkout_ios',
304 },
305
Paweł Hajdan, Jr7af368952017-10-02 12:25:36306 'src/ios/third_party/ochamcrest/src': {
Eric Noyaudaabeb52017-10-13 16:29:11307 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36308 'condition': 'checkout_ios',
309 },
310
jrummellf715b1692015-10-21 23:26:26311 'src/media/cdm/api':
Xiaohan Wangaa45b562018-04-18 03:46:59312 Var('chromium_git') + '/chromium/cdm.git' + '@' + '57e20546bc2afeabae7716ae3fc73bf091a76343',
[email protected]255c43f2013-06-07 08:54:11313
Dirk Pranke4dabe802017-11-02 07:18:55314 'src/native_client': {
315 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'),
316 'condition': 'checkout_nacl',
317 },
[email protected]bba1c0dd2013-08-19 10:33:31318
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42319 'src/third_party/SPIRV-Tools/src':
320 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c',
jinsukkim21d3369fc2016-06-21 06:16:03321
John Budoricke9aa27c2018-03-24 00:23:27322 'src/third_party/accessibility_test_framework': {
323 'packages': [
324 {
325 'package': 'chromium/third_party/accessibility-test-framework',
326 'version': 'version:2.1-cr0',
327 },
328 ],
329 'condition': 'checkout_android',
330 'dep_type': 'cipd',
331 },
332
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16333 'src/third_party/android_protobuf/src': {
Aaron Gable6fcf0062018-02-22 20:28:57334 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16335 'condition': 'checkout_android',
336 },
337
Shenghua Zhang0c102b12018-01-11 00:25:57338 'src/third_party/android_ndk': {
Peter Collingbournee3d421f2018-03-05 05:11:38339 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '635bc380968a76f6948fee65f80a0b28db53ae81',
Shenghua Zhang0c102b12018-01-11 00:25:57340 'condition': 'checkout_android',
341 },
342
John Budoricke9aa27c2018-03-24 00:23:27343 'src/third_party/android_support_test_runner': {
344 'packages': [
345 {
346 'package': 'chromium/third_party/android_support_test_runner',
347 'version': 'version:0.5-cr0',
348 },
349 ],
350 'condition': 'checkout_android',
351 'dep_type': 'cipd',
352 },
353
354 'src/third_party/android_system_sdk': {
355 'packages': [
356 {
357 'package': 'chromium/third_party/android_system_sdk',
358 'version': 'version:27-cr0',
359 },
360 ],
361 'condition': 'checkout_android',
362 'dep_type': 'cipd',
363 },
364
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16365 'src/third_party/android_tools': {
Peter Wen17a03d62018-03-05 17:54:33366 'url': Var('chromium_git') + '/android_tools.git' + '@' + 'c22a664c39af72dd8f89200220713dcad811300a',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16367 'condition': 'checkout_android',
368 },
369
Shenghua Zhangcbe64ba2018-04-12 19:11:49370 'src/third_party/android_sdk/public': {
371 'packages': [
372 {
373 'package': 'chromium/third_party/android_sdk/public/build-tools',
374 'version': Var('android_sdk_build-tools_version'),
375 },
376 {
377 'package': 'chromium/third_party/android_sdk/public/emulator',
378 'version': Var('android_sdk_emulator_version'),
379 },
380 {
381 'package': 'chromium/third_party/android_sdk/public/extras',
382 'version': Var('android_sdk_extras_version'),
383 },
384 {
385 'package': 'chromium/third_party/android_sdk/public/platform-tools',
386 'version': Var('android_sdk_platform-tools_version'),
387 },
388 {
389 'package': 'chromium/third_party/android_sdk/public/platforms',
390 'version': Var('android_sdk_platforms_version'),
391 },
392 {
393 'package': 'chromium/third_party/android_sdk/public/tools',
394 'version': Var('android_sdk_tools_version'),
395 },
396 ],
397 'condition': 'checkout_android',
398 'dep_type': 'cipd',
399 },
400
401 'src/third_party/android_sdk/sources': {
402 'packages': [
403 {
404 'package': 'chromium/third_party/android_sdk/sources',
405 'version': Var('android_sdk_sources_version'),
406 },
407 ],
408 'condition': 'checkout_android_sdk_sources',
409 'dep_type': 'cipd',
410 },
411
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42412 'src/third_party/angle':
413 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
414
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16415 'src/third_party/apache-portable-runtime/src': {
bsheedy2a59f252018-01-03 21:30:05416 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16417 'condition': 'checkout_android',
418 },
419
John Budoricke9aa27c2018-03-24 00:23:27420 'src/third_party/apk-patch-size-estimator': {
421 'packages': [
422 {
423 'package': 'chromium/third_party/apk-patch-size-estimator',
424 'version': 'version:0.2-cr0',
425 },
426 ],
427 'condition': 'checkout_android',
428 'dep_type': 'cipd',
429 },
430
Peter Wend0cc6d62017-11-02 16:32:30431 'src/third_party/auto/src': {
Peter Wen46893982018-01-18 16:53:46432 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82',
Peter Wend0cc6d62017-11-02 16:32:30433 'condition': 'checkout_android',
434 },
435
John Budoricke9aa27c2018-03-24 00:23:27436 'src/third_party/bazel': {
437 'packages': [
438 {
439 'package': 'chromium/third_party/bazel',
440 'version': 'version:0.10.0',
441 },
442 ],
443 'condition': 'checkout_android',
444 'dep_type': 'cipd',
445 },
446
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42447 'src/third_party/bidichecker':
448 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0',
449
Paweł Hajdan, Jr7af368952017-10-02 12:25:36450 'src/third_party/bison': {
451 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3',
452 'condition': 'checkout_win',
453 },
454
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42455 'src/third_party/boringssl/src':
456 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
457
John Budoricke9aa27c2018-03-24 00:23:27458 'src/third_party/bouncycastle': {
459 'packages': [
460 {
461 'package': 'chromium/third_party/bouncycastle',
462 'version': 'version:1.46-cr0',
463 },
464 ],
465 'condition': 'checkout_android',
466 'dep_type': 'cipd',
467 },
468
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42469 'src/third_party/breakpad/breakpad':
Lei Zhang542b6522018-04-14 00:11:03470 Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'c83fcf647033cd31348b4109c2a9d8df72706361',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42471
John Budoricke9aa27c2018-03-24 00:23:27472 'src/third_party/byte_buddy': {
473 'packages': [
474 {
475 'package': 'chromium/third_party/byte_buddy',
476 'version': 'version:1.4.17-cr0',
477 },
478 ],
479 'condition': 'checkout_android',
480 'dep_type': 'cipd',
481 },
482
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42483 'src/third_party/catapult':
484 Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
485
486 'src/third_party/ced/src':
487 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9',
488
Paweł Hajdan, Jr7af368952017-10-02 12:25:36489 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools.
490 'src/third_party/chromite': {
chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com4415c0602018-04-18 22:56:06491 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '0e6f95c50047972223589157e570cae436338777',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36492 'condition': 'checkout_linux',
493 },
494
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42495 'src/third_party/cld_3/src':
Nico Webera8d4b462018-01-31 20:54:52496 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '484afe9ba7438d078e60b3a26e7fb590213c0e17',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42497
498 'src/third_party/colorama/src':
499 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
500
501 'src/third_party/crc32c/src':
Victor Costanf05fce322017-10-02 20:25:24502 Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '0f771ed5ef83556451e1736f22b1a11054dc81c3',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42503
Paweł Hajdan, Jr7af368952017-10-02 12:25:36504 # For Linux and Chromium OS.
505 'src/third_party/cros_system_api': {
Jeffrey Kardatzkead1c9d92018-04-13 02:06:08506 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '7aaece4a0870323c3a1e5d3f7afecd7b15e188ae',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36507 'condition': 'checkout_linux',
508 },
509
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42510 'src/third_party/custom_tabs_client/src': {
Lei Tianfff09082018-03-19 21:59:04511 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + '5f4df5ce54f4956212eef396e67be376fc4c043c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42512 'condition': 'checkout_android',
513 },
514
515 'src/third_party/depot_tools':
depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com42ed1432018-04-18 19:59:26516 Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '9ccad5689c0975f3995e89558c64fb66e8a572bf',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42517
Will Chen48fbfe0f2018-01-03 01:26:35518 'src/third_party/devtools-node-modules':
519 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'),
Paweł Hajdan, Jr7af368952017-10-02 12:25:36520
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42521 'src/third_party/dom_distiller_js/dist':
Wei-Yin Chen (陳威尹)f1f82a12017-12-13 15:52:40522 Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '60b46718e28f553ab57e3d2bbda5b3b41456f417',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42523
524 'src/third_party/elfutils/src': {
525 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7',
526 'condition': 'checkout_android',
527 },
528
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16529 'src/third_party/errorprone/lib': {
Peter Wen4690acc2018-01-11 15:12:45530 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + 'ecc57c2b00627667874744b9ad8efe10734d97a8',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16531 'condition': 'checkout_android',
532 },
533
John Budoricke9aa27c2018-03-24 00:23:27534 'src/third_party/espresso': {
535 'packages': [
536 {
537 'package': 'chromium/third_party/espresso',
538 'version': 'version:2.2.1-cr0',
539 },
540 ],
541 'condition': 'checkout_android',
542 'dep_type': 'cipd',
543 },
544
Filip Gorski796be852018-03-02 19:36:36545 'src/third_party/feed/src': {
546 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'),
547 'condition': 'checkout_android',
548 },
549
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42550 'src/third_party/ffmpeg':
Matt Wolenetzc13b8c3f2018-04-13 01:04:22551 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'c6aed052aba910a88d6e68c02946d17f94702da5',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42552
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42553 'src/third_party/flac':
554 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '7d0f5b3a173ffe98db08057d1f52b7787569e0a6',
555
556 'src/third_party/flatbuffers/src':
557 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290',
558
Paweł Hajdan, Jr7af368952017-10-02 12:25:36559 # Used for embedded builds. CrOS & Linux use the system version.
560 'src/third_party/fontconfig/src': {
Tom Anderson34db191c2017-12-13 22:36:48561 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'b546940435ebfb0df575bc7a2350d1e913919c34',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36562 'condition': 'checkout_linux',
563 },
564
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42565 'src/third_party/freetype/src':
566 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'),
567
Dominik Röttsches60dab7e12018-03-20 09:55:47568 'src/third_party/harfbuzz-ng/src':
569 Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'),
570
Paweł Hajdan, Jr7af368952017-10-02 12:25:36571 # Chrome OS touchpad gestures library.
572 'src/third_party/gestures/gestures': {
David Revemane25bd88e2017-10-02 21:06:05573 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36574 'condition': 'checkout_linux',
575 },
576
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42577 'src/third_party/glslang/src':
Peng Huang80463de2018-02-07 21:06:33578 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + 'ec1476b7060306fd9109faf7a4c70a20ea3b538c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42579
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22580 'src/third_party/google_toolbox_for_mac/src': {
581 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'),
582 'condition': 'checkout_ios or checkout_mac',
583 },
584
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42585 'src/third_party/googletest/src':
Victor Costan1e082182018-04-12 21:06:47586 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + 'b640d8743d85f5e69c16679e7ead3f31d94e31ff',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42587
Paweł Hajdan, Jr7af368952017-10-02 12:25:36588 # GNU binutils assembler for x86-32.
589 'src/third_party/gnu_binutils': {
590 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436',
Dirk Pranke4dabe802017-11-02 07:18:55591 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36592 },
593
594 'src/third_party/gperf': {
595 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1',
596 'condition': 'checkout_win',
597 },
598
John Budoricke9aa27c2018-03-24 00:23:27599 'src/third_party/gson': {
600 'packages': [
601 {
602 'package': 'chromium/third_party/gson',
603 'version': 'version:2.8.0-cr0',
604 },
605 ],
606 'condition': 'checkout_android',
607 'dep_type': 'cipd',
608 },
609
610 'src/third_party/guava': {
611 'packages': [
612 {
613 'package': 'chromium/third_party/guava',
614 'version': 'version:23.0-cr0',
615 },
616 ],
617 'condition': 'checkout_android',
618 'dep_type': 'cipd',
619 },
620
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42621 'src/third_party/gvr-android-sdk/src': {
Michael Thiessen9b0bf722018-03-01 22:41:52622 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '233e7fe922a543e0bc55382d64cacd047307d0e7',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16623 'condition': 'checkout_android',
624 },
625
John Budoricke9aa27c2018-03-24 00:23:27626 'src/third_party/hamcrest': {
627 'packages': [
628 {
629 'package': 'chromium/third_party/hamcrest',
630 'version': 'version:1.3-cr0',
631 },
632 ],
633 'condition': 'checkout_android',
634 'dep_type': 'cipd',
635 },
636
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42637 'src/third_party/hunspell_dictionaries':
Chris Nardieea5de82017-10-14 22:21:31638 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42639
640 'src/third_party/icu':
Jungshik Shinbcb59cd2018-04-13 00:33:00641 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'aff99f5c22aded55ee29753ce049e61570294967',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42642
John Budoricke9aa27c2018-03-24 00:23:27643 'src/third_party/icu4j': {
644 'packages': [
645 {
646 'package': 'chromium/third_party/icu4j',
647 'version': 'version:53.1-cr0',
648 },
649 ],
650 'condition': 'checkout_android',
651 'dep_type': 'cipd',
652 },
653
654 'src/third_party/intellij': {
655 'packages': [
656 {
657 'package': 'chromium/third_party/intellij',
658 'version': 'version:12.0-cr0',
659 },
660 ],
661 'condition': 'checkout_android',
662 'dep_type': 'cipd',
663 },
664
665 'src/third_party/javax_inject': {
666 'packages': [
667 {
668 'package': 'chromium/third_party/javax_inject',
669 'version': 'version:1-cr0',
670 },
671 ],
672 'condition': 'checkout_android',
673 'dep_type': 'cipd',
674 },
675
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42676 'src/third_party/jsoncpp/source':
677 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248
678
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16679 'src/third_party/jsr-305/src': {
680 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
681 'condition': 'checkout_android',
682 },
683
684 'src/third_party/junit/src': {
685 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481',
686 'condition': 'checkout_android',
687 },
688
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42689 'src/third_party/leakcanary/src': {
690 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e',
691 'condition': 'checkout_android',
692 },
693
694 'src/third_party/leveldatabase/src':
Victor Costan63c57a32018-03-31 01:40:59695 Var('chromium_git') + '/external/leveldb.git' + '@' + '6fa45666703add49f77652b2eadd874d49aedaf6',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42696
697 'src/third_party/libFuzzer/src':
Max Moroz1ee969e2017-10-04 16:27:26698 Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'),
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42699
700 'src/third_party/libaddressinput/src':
Peter Collingbournec85bc322018-02-28 02:22:15701 Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'd955c63ec7048d59dffd20af25eeec23da878d27',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42702
Johanncf5bb4c62017-10-30 23:21:34703 'src/third_party/libaom/source/libaom': {
Tom Finegan525e45372017-12-22 21:32:24704 'url': Var('aomedia_git') + '/aom.git' + '@' + 'cc92258a08d98f469dff1be288acbc322632377b',
Johanncf5bb4c62017-10-30 23:21:34705 'condition': 'checkout_libaom',
706 },
707
Paweł Hajdan, Jr7af368952017-10-02 12:25:36708 # Userspace interface to kernel DRM services.
709 'src/third_party/libdrm/src': {
Kristian H. Kristensen03ecc6d2017-10-30 23:53:36710 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36711 'condition': 'checkout_linux',
712 },
713
714 # The libevdev library (Chrome OS version).
715 'src/third_party/libevdev/src': {
716 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744',
717 'condition': 'checkout_linux',
718 },
719
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42720 'src/third_party/libjpeg_turbo':
721 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd',
722
Paweł Hajdan, Jr7af368952017-10-02 12:25:36723 'src/third_party/liblouis/src': {
724 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2',
725 'condition': 'checkout_linux',
726 },
727
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42728 'src/third_party/libphonenumber/dist':
729 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4',
730
731 'src/third_party/libprotobuf-mutator/src':
732 Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'),
733
734 'src/third_party/libsrtp':
Fabrice de Gans-Riberi0dfc24c2018-04-06 21:05:45735 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + 'fc2345089a6b3c5aca9ecd2e1941871a78a13e9c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42736
Paweł Hajdan, Jr7af368952017-10-02 12:25:36737 # Android Explicit Synchronization.
738 'src/third_party/libsync/src': {
Alexandros Frantzis3ad9a222018-01-25 17:09:54739 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36740 'condition': 'checkout_linux',
741 },
742
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42743 'src/third_party/libvpx/source/libvpx':
Jerome Jiang97020572018-04-12 17:16:43744 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'be5df6080154e58db88fa3640e127efd18c04bde',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42745
746 'src/third_party/libwebm/source':
bsheedy2a59f252018-01-03 21:30:05747 Var('chromium_git') + '/webm/libwebm.git' + '@' + 'b03c65468b06d097f27235d93d76bfc45f490ede',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42748
749 'src/third_party/libyuv':
Jay Civellibe97eec2018-04-04 01:50:18750 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'a9626b9daf62a9b260737e9c2de821ad087b19a1', # from r1708
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42751
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22752 'src/third_party/lighttpd': {
753 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'),
754 'condition': 'checkout_mac or checkout_win',
755 },
756
757 'src/third_party/lss': {
758 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'),
759 'condition': 'checkout_android or checkout_linux',
760 },
761
Paweł Hajdan, Jr7af368952017-10-02 12:25:36762 'src/third_party/material_design_icons/src': {
763 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' +
764 '5ab428852e35dc177a8c37a2df9dc9ccf768c65a',
765 'condition': 'checkout_ios',
766 },
767
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42768 'src/third_party/mesa/src':
Geoff Lang5b125002018-03-26 19:04:28769 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '803b1132096707417736df8d167176a33813aa9f',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42770
Paweł Hajdan, Jr7af368952017-10-02 12:25:36771 # GNU binutils assembler for x86-64.
772 'src/third_party/mingw-w64/mingw/bin': {
773 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527',
Dirk Pranke4dabe802017-11-02 07:18:55774 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36775 },
776
777 # Graphics buffer allocator for Chrome OS.
778 'src/third_party/minigbm/src': {
Sergey Volkbd363182018-03-09 05:42:15779 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '6eca36809e185337bfcca95310a1765c34c360e1',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36780 'condition': 'checkout_linux',
781 },
782
783 # Minizip library. Used on Chrome OS.
784 'src/third_party/minizip/src': {
Tatsuhisa Yamaguchi0c5fc82a2017-12-27 01:52:10785 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36786 'condition': 'checkout_linux',
787 },
788
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16789 'src/third_party/mockito/src': {
790 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850',
791 'condition': 'checkout_android',
792 },
793
Paweł Hajdan, Jr7af368952017-10-02 12:25:36794 # Binaries for nacl sdk.
795 'src/third_party/nacl_sdk_binaries': {
796 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5',
Dirk Pranke4dabe802017-11-02 07:18:55797 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36798 },
799
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16800 'src/third_party/netty-tcnative/src': {
801 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463',
802 'condition': 'checkout_android',
803 },
804
805 'src/third_party/netty4/src': {
806 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120',
807 'condition': 'checkout_android',
808 },
809
John Budoricke9aa27c2018-03-24 00:23:27810 'src/third_party/objenesis': {
811 'packages': [
812 {
813 'package': 'chromium/third_party/objenesis',
814 'version': 'version:2.4-cr0',
815 },
816 ],
817 'condition': 'checkout_android',
818 'dep_type': 'cipd',
819 },
820
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42821 'src/third_party/openh264/src':
Tom Anderson308f0632018-01-15 23:16:11822 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '2e96d62426547ac4fb5cbcd122e5f6eb68d66ee6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16823
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42824 'src/third_party/openmax_dl':
825 Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16826
John Budoricke9aa27c2018-03-24 00:23:27827 'src/third_party/ow2_asm': {
828 'packages': [
829 {
830 'package': 'chromium/third_party/ow2_asm',
831 'version': 'version:5.0.1-cr0',
832 },
833 ],
834 'condition': 'checkout_android',
835 'dep_type': 'cipd',
836 },
837
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42838 'src/third_party/pdfium':
839 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'),
840
Paweł Hajdan, Jr7af368952017-10-02 12:25:36841 # Parses Windows PE/COFF executable format.
842 'src/third_party/pefile': {
843 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1',
844 'condition': 'checkout_win',
845 },
846
Oystein Eftevaaga9439b922018-01-08 19:30:14847 'src/third_party/perfetto':
Oystein Eftevaag62436732018-04-17 23:49:12848 Var('android_git') + '/platform/external/perfetto.git' + '@' + '197785b48b41ff490cb1682a2216109b98fc7722',
Oystein Eftevaaga9439b922018-01-08 19:30:14849
Paweł Hajdan, Jr7af368952017-10-02 12:25:36850 'src/third_party/perl': {
851 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78',
852 'condition': 'checkout_win',
853 },
854
855 # Dependency of chromite.git and skia.
856 'src/third_party/pyelftools': {
857 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae',
858 'condition': 'checkout_linux',
859 },
860
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42861 'src/third_party/pyftpdlib/src':
862 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45',
863
864 'src/third_party/pywebsocket/src':
865 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2',
866
867 'src/third_party/re2/src':
Max Moroz13bd9f722017-12-05 18:12:11868 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5185d85264d23cfae4b38e2703703e9a4c8e974c',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16869
870 'src/third_party/requests/src': {
871 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
872 'condition': 'checkout_android',
873 },
874
John Budoricke9aa27c2018-03-24 00:23:27875 'src/third_party/robolectric': {
876 'packages': [
877 {
878 'package': 'chromium/third_party/robolectric',
879 'version': 'version:3.5.1',
880 },
881 ],
882 'condition': 'checkout_android',
883 'dep_type': 'cipd',
884 },
885
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42886 'src/third_party/robolectric/robolectric': {
John Budoricke7f2d1332017-11-30 23:35:22887 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16888 'condition': 'checkout_android',
889 },
890
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42891 'src/third_party/sfntly/src':
892 Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'),
893
894 'src/third_party/shaderc/src':
895 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4',
896
897 'src/third_party/skia':
898 Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'),
899
900 'src/third_party/smhasher/src':
901 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f',
902
903 'src/third_party/snappy/src':
Victor Costanf0794a012018-02-20 23:18:32904 Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'ca37ab7fb9b718e056009babb4fea591626e5882',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42905
John Budoricke9aa27c2018-03-24 00:23:27906 'src/third_party/sqlite4java': {
907 'packages': [
908 {
909 'package': 'chromium/third_party/sqlite4java',
910 'version': 'version:0.282-cr0',
911 },
912 ],
913 'condition': 'checkout_android',
914 'dep_type': 'cipd',
915 },
916
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42917 'src/third_party/swiftshader':
918 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'),
919
920 'src/third_party/ub-uiautomator/lib': {
921 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16922 'condition': 'checkout_android',
923 },
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42924
925 'src/third_party/usrsctp/usrsctplib':
Taylor Brandstetterf274fcc2018-03-23 19:07:00926 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '159d060dceec41a64a57356cbba8c455105f3f72',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42927
928 'src/third_party/visualmetrics/src':
929 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6',
930
Paweł Hajdan, Jr7af368952017-10-02 12:25:36931 # Display server protocol for Linux.
932 'src/third_party/wayland/src': {
933 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25',
934 'condition': 'checkout_linux',
935 },
936
937 # Wayland protocols that add functionality not available in the core protocol.
938 'src/third_party/wayland-protocols/src': {
Alexandros Frantzisaed3360b2018-01-24 18:40:04939 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '4f789286e4ab7f6fecc2ccb895d79362a9b2382a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36940 'condition': 'checkout_linux',
941 },
942
943 # Wireless Display Software. Used on Chrome OS.
944 'src/third_party/wds/src': {
945 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5',
946 'condition': 'checkout_linux',
947 },
948
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42949 'src/third_party/webdriver/pylib':
950 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd',
951
952 'src/third_party/webgl/src':
Kenneth Russelld5fd79c62018-04-12 23:23:34953 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '7c0541da63f571512c49758cbc0767117997a270',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42954
955 'src/third_party/webrtc':
webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com5dee7fc2018-04-18 18:21:21956 Var('webrtc_git') + '/src.git' + '@' + '8619e8a3d785937158a29a11bcbb08f03fda75b7', # commit position 21742
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42957
Paweł Hajdan, Jr7af368952017-10-02 12:25:36958 'src/third_party/xdg-utils': {
959 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d',
960 'condition': 'checkout_linux',
961 },
962
John Budoricke9aa27c2018-03-24 00:23:27963 'src/third_party/xstream': {
964 'packages': [
965 {
966 'package': 'chromium/third_party/xstream',
967 'version': 'version:1.4.8-cr0',
968 },
969 ],
970 'condition': 'checkout_android',
971 'dep_type': 'cipd',
972 },
973
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42974 'src/third_party/yasm/source/patched-yasm':
975 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc',
976
977 'src/tools/gyp':
978 Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
979
980 'src/tools/page_cycler/acid3':
981 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521',
982
983 'src/tools/swarming_client':
984 Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'),
985
986 'src/v8':
987 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'),
988
989 'src-internal': {
src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com276031af2018-04-18 21:36:29990 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@3e6ddaf232b23a43bd8f1d8a42e7abc4c91e8485',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42991 'condition': 'checkout_src_internal',
992 },
Nicolas Dossou-gbete2d6b66c2018-02-21 13:58:03993
994 # === ANDROID_DEPS Generated Code Start ===
995 # Generated by //tools/android/roll/android_deps/fetch_all.sh
Nicolas Dossou-gbeteb8736d82018-04-05 04:29:24996 'src/third_party/android_deps/repository/android_arch_core_common': {
997 'packages': [
998 {
999 'package': 'chromium/third_party/android_deps/repository/android_arch_core_common',
1000 'version': 'version:1.0.0-cr0',
1001 },
1002 ],
1003 'condition': 'checkout_android',
1004 'dep_type': 'cipd',
1005 },
1006
1007 'src/third_party/android_deps/repository/android_arch_lifecycle_common': {
1008 'packages': [
1009 {
1010 'package': 'chromium/third_party/android_deps/repository/android_arch_lifecycle_common',
1011 'version': 'version:1.0.0-cr0',
1012 },
1013 ],
1014 'condition': 'checkout_android',
1015 'dep_type': 'cipd',
1016 },
1017
1018 'src/third_party/android_deps/repository/android_arch_lifecycle_runtime': {
1019 'packages': [
1020 {
1021 'package': 'chromium/third_party/android_deps/repository/android_arch_lifecycle_runtime',
1022 'version': 'version:1.0.0-cr0',
1023 },
1024 ],
1025 'condition': 'checkout_android',
1026 'dep_type': 'cipd',
1027 },
1028
1029 'src/third_party/android_deps/repository/com_android_support_animated_vector_drawable': {
1030 'packages': [
1031 {
1032 'package': 'chromium/third_party/android_deps/repository/com_android_support_animated_vector_drawable',
1033 'version': 'version:27.0.0-cr0',
1034 },
1035 ],
1036 'condition': 'checkout_android',
1037 'dep_type': 'cipd',
1038 },
1039
1040 'src/third_party/android_deps/repository/com_android_support_appcompat_v7': {
1041 'packages': [
1042 {
1043 'package': 'chromium/third_party/android_deps/repository/com_android_support_appcompat_v7',
1044 'version': 'version:27.0.0-cr0',
1045 },
1046 ],
1047 'condition': 'checkout_android',
1048 'dep_type': 'cipd',
1049 },
1050
1051 'src/third_party/android_deps/repository/com_android_support_cardview_v7': {
1052 'packages': [
1053 {
1054 'package': 'chromium/third_party/android_deps/repository/com_android_support_cardview_v7',
1055 'version': 'version:27.0.0-cr0',
1056 },
1057 ],
1058 'condition': 'checkout_android',
1059 'dep_type': 'cipd',
1060 },
1061
1062 'src/third_party/android_deps/repository/com_android_support_design': {
1063 'packages': [
1064 {
1065 'package': 'chromium/third_party/android_deps/repository/com_android_support_design',
1066 'version': 'version:27.0.0-cr0',
1067 },
1068 ],
1069 'condition': 'checkout_android',
1070 'dep_type': 'cipd',
1071 },
1072
1073 'src/third_party/android_deps/repository/com_android_support_gridlayout_v7': {
1074 'packages': [
1075 {
1076 'package': 'chromium/third_party/android_deps/repository/com_android_support_gridlayout_v7',
1077 'version': 'version:27.0.0-cr0',
1078 },
1079 ],
1080 'condition': 'checkout_android',
1081 'dep_type': 'cipd',
1082 },
1083
1084 'src/third_party/android_deps/repository/com_android_support_leanback_v17': {
1085 'packages': [
1086 {
1087 'package': 'chromium/third_party/android_deps/repository/com_android_support_leanback_v17',
1088 'version': 'version:27.0.0-cr0',
1089 },
1090 ],
1091 'condition': 'checkout_android',
1092 'dep_type': 'cipd',
1093 },
1094
1095 'src/third_party/android_deps/repository/com_android_support_mediarouter_v7': {
1096 'packages': [
1097 {
1098 'package': 'chromium/third_party/android_deps/repository/com_android_support_mediarouter_v7',
1099 'version': 'version:27.0.0-cr0',
1100 },
1101 ],
1102 'condition': 'checkout_android',
1103 'dep_type': 'cipd',
1104 },
1105
1106 'src/third_party/android_deps/repository/com_android_support_multidex': {
1107 'packages': [
1108 {
1109 'package': 'chromium/third_party/android_deps/repository/com_android_support_multidex',
1110 'version': 'version:1.0.0-cr0',
1111 },
1112 ],
1113 'condition': 'checkout_android',
1114 'dep_type': 'cipd',
1115 },
1116
1117 'src/third_party/android_deps/repository/com_android_support_palette_v7': {
1118 'packages': [
1119 {
1120 'package': 'chromium/third_party/android_deps/repository/com_android_support_palette_v7',
1121 'version': 'version:27.0.0-cr0',
1122 },
1123 ],
1124 'condition': 'checkout_android',
1125 'dep_type': 'cipd',
1126 },
1127
1128 'src/third_party/android_deps/repository/com_android_support_preference_leanback_v17': {
1129 'packages': [
1130 {
1131 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_leanback_v17',
1132 'version': 'version:27.0.0-cr0',
1133 },
1134 ],
1135 'condition': 'checkout_android',
1136 'dep_type': 'cipd',
1137 },
1138
1139 'src/third_party/android_deps/repository/com_android_support_preference_v14': {
1140 'packages': [
1141 {
1142 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_v14',
1143 'version': 'version:27.0.0-cr0',
1144 },
1145 ],
1146 'condition': 'checkout_android',
1147 'dep_type': 'cipd',
1148 },
1149
1150 'src/third_party/android_deps/repository/com_android_support_preference_v7': {
1151 'packages': [
1152 {
1153 'package': 'chromium/third_party/android_deps/repository/com_android_support_preference_v7',
1154 'version': 'version:27.0.0-cr0',
1155 },
1156 ],
1157 'condition': 'checkout_android',
1158 'dep_type': 'cipd',
1159 },
1160
1161 'src/third_party/android_deps/repository/com_android_support_recyclerview_v7': {
1162 'packages': [
1163 {
1164 'package': 'chromium/third_party/android_deps/repository/com_android_support_recyclerview_v7',
1165 'version': 'version:27.0.0-cr0',
1166 },
1167 ],
1168 'condition': 'checkout_android',
1169 'dep_type': 'cipd',
1170 },
1171
1172 'src/third_party/android_deps/repository/com_android_support_support_annotations': {
1173 'packages': [
1174 {
1175 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_annotations',
1176 'version': 'version:27.0.0-cr0',
1177 },
1178 ],
1179 'condition': 'checkout_android',
1180 'dep_type': 'cipd',
1181 },
1182
1183 'src/third_party/android_deps/repository/com_android_support_support_compat': {
1184 'packages': [
1185 {
1186 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_compat',
1187 'version': 'version:27.0.0-cr0',
1188 },
1189 ],
1190 'condition': 'checkout_android',
1191 'dep_type': 'cipd',
1192 },
1193
1194 'src/third_party/android_deps/repository/com_android_support_support_core_ui': {
1195 'packages': [
1196 {
1197 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_core_ui',
1198 'version': 'version:27.0.0-cr0',
1199 },
1200 ],
1201 'condition': 'checkout_android',
1202 'dep_type': 'cipd',
1203 },
1204
1205 'src/third_party/android_deps/repository/com_android_support_support_core_utils': {
1206 'packages': [
1207 {
1208 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_core_utils',
1209 'version': 'version:27.0.0-cr0',
1210 },
1211 ],
1212 'condition': 'checkout_android',
1213 'dep_type': 'cipd',
1214 },
1215
1216 'src/third_party/android_deps/repository/com_android_support_support_fragment': {
1217 'packages': [
1218 {
1219 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_fragment',
1220 'version': 'version:27.0.0-cr0',
1221 },
1222 ],
1223 'condition': 'checkout_android',
1224 'dep_type': 'cipd',
1225 },
1226
1227 'src/third_party/android_deps/repository/com_android_support_support_media_compat': {
1228 'packages': [
1229 {
1230 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_media_compat',
1231 'version': 'version:27.0.0-cr0',
1232 },
1233 ],
1234 'condition': 'checkout_android',
1235 'dep_type': 'cipd',
1236 },
1237
1238 'src/third_party/android_deps/repository/com_android_support_support_v13': {
1239 'packages': [
1240 {
1241 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_v13',
1242 'version': 'version:27.0.0-cr0',
1243 },
1244 ],
1245 'condition': 'checkout_android',
1246 'dep_type': 'cipd',
1247 },
1248
1249 'src/third_party/android_deps/repository/com_android_support_support_v4': {
1250 'packages': [
1251 {
1252 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_v4',
1253 'version': 'version:27.0.0-cr0',
1254 },
1255 ],
1256 'condition': 'checkout_android',
1257 'dep_type': 'cipd',
1258 },
1259
1260 'src/third_party/android_deps/repository/com_android_support_support_vector_drawable': {
1261 'packages': [
1262 {
1263 'package': 'chromium/third_party/android_deps/repository/com_android_support_support_vector_drawable',
1264 'version': 'version:27.0.0-cr0',
1265 },
1266 ],
1267 'condition': 'checkout_android',
1268 'dep_type': 'cipd',
1269 },
1270
1271 'src/third_party/android_deps/repository/com_android_support_transition': {
1272 'packages': [
1273 {
1274 'package': 'chromium/third_party/android_deps/repository/com_android_support_transition',
1275 'version': 'version:27.0.0-cr0',
1276 },
1277 ],
1278 'condition': 'checkout_android',
1279 'dep_type': 'cipd',
1280 },
1281
Nicolas Dossou-gbete2d6b66c2018-02-21 13:58:031282 # === ANDROID_DEPS Generated Code End ===
[email protected]5f129de2009-02-24 23:22:041283}
1284
[email protected]00c517672010-11-04 00:27:291285
[email protected]5f129de2009-02-24 23:22:041286include_rules = [
1287 # Everybody can use some things.
John Abd-El-Malek5b6373f2015-04-01 19:44:141288 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these.
Stefan Zagerfd5ba192014-08-23 00:29:391289 '+base',
1290 '+build',
1291 '+ipc',
[email protected]5f129de2009-02-24 23:22:041292
[email protected]dfbff862012-11-28 19:08:141293 # Everybody can use headers generated by tools/generate_library_loader.
Stefan Zagerfd5ba192014-08-23 00:29:391294 '+library_loaders',
[email protected]dfbff862012-11-28 19:08:141295
Stefan Zagerfd5ba192014-08-23 00:29:391296 '+testing',
1297 '+third_party/icu/source/common/unicode',
1298 '+third_party/icu/source/i18n/unicode',
1299 '+url',
Mirko Bonadeif4f0f0e2018-04-12 09:29:411300
1301 # Chromium cannot directly depend on Abseil.
1302 '-absl',
[email protected]5f129de2009-02-24 23:22:041303]
1304
1305
1306# checkdeps.py shouldn't check include paths for files in these dirs:
1307skip_child_includes = [
Stefan Zagerfd5ba192014-08-23 00:29:391308 'native_client_sdk',
John Abd-El-Malek5b6373f2015-04-01 19:44:141309 'out',
Stefan Zagerfd5ba192014-08-23 00:29:391310 'skia',
1311 'testing',
Mirko Bonadeif4f0f0e2018-04-12 09:29:411312 'third_party/abseil-cpp',
Mark Mentovaiebb9ddd62017-09-25 17:24:411313 'third_party/breakpad/breakpad',
Stefan Zagerfd5ba192014-08-23 00:29:391314 'v8',
1315 'win8',
[email protected]5f129de2009-02-24 23:22:041316]
[email protected]bfa24b962009-03-02 00:16:161317
1318
1319hooks = [
1320 {
[email protected]9372bec2014-08-14 14:03:301321 # This clobbers when necessary (based on get_landmines.py). It must be the
1322 # first hook so that other things that get/generate into the output
1323 # directory will not subsequently be clobbered.
Stefan Zagerfd5ba192014-08-23 00:29:391324 'name': 'landmines',
1325 'pattern': '.',
1326 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481327 'python',
Stefan Zagerfd5ba192014-08-23 00:29:391328 'src/build/landmines.py',
[email protected]9372bec2014-08-14 14:03:301329 ],
1330 },
1331 {
Dan Jacquescea92c512017-06-02 23:59:161332 # Ensure that the DEPS'd "depot_tools" has its self-update capability
1333 # disabled.
1334 'name': 'disable_depot_tools_selfupdate',
1335 'pattern': '.',
1336 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481337 'python',
Dan Jacquescea92c512017-06-02 23:59:161338 'src/third_party/depot_tools/update_depot_tools_toggle.py',
1339 '--disable',
1340 ],
1341 },
1342 {
Mostyn Bramley-Moore114507a2018-04-06 19:42:171343 # Ensure that we don't accidentally reference any .pyc files whose
1344 # corresponding .py files have since been deleted.
1345 # We could actually try to avoid generating .pyc files, crbug.com/500078.
jbudorick94a712c2016-03-09 19:03:521346 'name': 'remove_stale_pyc_files',
1347 'pattern': '.',
1348 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481349 'python',
jbudorick94a712c2016-03-09 19:03:521350 'src/tools/remove_stale_pyc_files.py',
1351 'src/android_webview/tools',
1352 'src/build/android',
1353 'src/gpu/gles2_conform_support',
1354 'src/infra',
1355 'src/ppapi',
1356 'src/printing',
Kent Tamurac04c33d2018-04-12 08:28:581357 'src/third_party/blink/tools', # See http://crbug.com/625877.
jbudorick94a712c2016-03-09 19:03:521358 'src/third_party/catapult',
1359 'src/third_party/closure_compiler/build',
qyearsleydfda207b2016-07-08 14:16:121360 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877.
jbudorick94a712c2016-03-09 19:03:521361 'src/tools',
1362 ],
1363 },
1364 {
[email protected]89e43f652011-08-18 00:03:171365 # This downloads binaries for Native Client's newlib toolchain.
1366 # Done in lieu of building the toolchain from scratch as it can take
1367 # anywhere from 30 minutes to 4 hours depending on platform to build.
Stefan Zagerfd5ba192014-08-23 00:29:391368 'name': 'nacltools',
1369 'pattern': '.',
Dirk Pranke4dabe802017-11-02 07:18:551370 'condition': 'checkout_nacl',
Stefan Zagerfd5ba192014-08-23 00:29:391371 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481372 'python',
dyen249880632014-11-20 23:02:201373 'src/build/download_nacl_toolchains.py',
ncbray474ab322015-01-05 22:04:221374 '--mode', 'nacl_core_sdk',
ncbray4453c50a2015-02-18 20:10:551375 'sync', '--extract',
[email protected]89e43f652011-08-18 00:03:171376 ],
1377 },
[email protected]3a0b2492011-08-24 20:41:161378 {
Tom Andersona07b9fe2018-02-09 04:08:261379 'name': 'sysroot_arm',
Stefan Zagerfd5ba192014-08-23 00:29:391380 'pattern': '.',
Tom Andersona07b9fe2018-02-09 04:08:261381 'condition': 'checkout_linux and checkout_arm',
Nodir Turakulovdd080902018-01-20 01:06:481382 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
Tom Andersona07b9fe2018-02-09 04:08:261383 '--arch=arm'],
1384 },
1385 {
1386 'name': 'sysroot_arm64',
1387 'pattern': '.',
1388 'condition': 'checkout_linux and checkout_arm64',
1389 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
1390 '--arch=arm64'],
1391 },
1392 {
1393 'name': 'sysroot_x86',
1394 'pattern': '.',
1395 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
1396 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
1397 '--arch=x86'],
1398 },
1399 {
1400 'name': 'sysroot_mips',
1401 'pattern': '.',
1402 'condition': 'checkout_linux and checkout_mips',
1403 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
1404 '--arch=mips'],
1405 },
1406 {
1407 'name': 'sysroot_x64',
1408 'pattern': '.',
1409 'condition': 'checkout_linux and checkout_x64',
1410 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
1411 '--arch=x64'],
sbc41d0e082014-10-22 20:39:291412 },
1413 {
Nico Weber76299302018-02-01 20:36:451414 # Case-insensitivity for the Win SDK. Must run before win_toolchain below.
1415 'name': 'ciopfs_linux',
1416 'pattern': '.',
1417 'condition': 'checkout_win and host_os == "linux"',
1418 'action': [ 'python',
1419 'src/third_party/depot_tools/download_from_google_storage.py',
1420 '--no_resume',
1421 '--no_auth',
1422 '--bucket', 'chromium-browser-clang/ciopfs',
1423 '-s', 'src/build/ciopfs.sha1',
1424 ]
1425 },
1426 {
Nico Weberb19437032017-10-09 02:45:091427 # Update the Windows toolchain if necessary. Must run before 'clang' below.
Stefan Zagerfd5ba192014-08-23 00:29:391428 'name': 'win_toolchain',
1429 'pattern': '.',
Nico Webera13ad932017-10-12 18:52:401430 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:481431 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'],
[email protected]c71d3282014-04-09 01:56:201432 },
justincohen6a03a3d2016-03-26 21:44:381433 {
1434 # Update the Mac toolchain if necessary.
1435 'name': 'mac_toolchain',
1436 'pattern': '.',
Rohit Rao92489af2017-10-12 21:45:481437 'condition': 'checkout_ios or checkout_mac',
Nodir Turakulov52cd53f2017-11-14 22:08:021438 'action': ['python', 'src/build/mac_toolchain.py'],
justincohen6a03a3d2016-03-26 21:44:381439 },
hansb2eae972015-05-19 00:53:121440 # Pull binutils for linux, enabled debug fission for faster linking /
1441 # debugging when used with clang on Ubuntu Precise.
1442 # https://code.google.com/p/chromium/issues/detail?id=352046
1443 {
1444 'name': 'binutils',
1445 'pattern': 'src/third_party/binutils',
Nico Weberb19437032017-10-09 02:45:091446 'condition': 'host_os == "linux"',
hansb2eae972015-05-19 00:53:121447 'action': [
Nodir Turakulovfec77cd2017-11-14 18:22:321448 'python',
hansb2eae972015-05-19 00:53:121449 'src/third_party/binutils/download.py',
1450 ],
1451 },
[email protected]c71d3282014-04-09 01:56:201452 {
Hans Wennborg28fb41c2014-09-22 23:25:121453 # Note: On Win, this should run after win_toolchain, as it may use it.
1454 'name': 'clang',
1455 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481456 'action': ['python', 'src/tools/clang/scripts/update.py'],
Hans Wennborg28fb41c2014-09-22 23:25:121457 },
1458 {
Nico Weber1df4a692017-10-16 21:36:301459 # Mac doesn't use lld so it's not included in the default clang bundle
1460 # there. lld is however needed in win cross builds, so download it there.
1461 # Should run after the clang hook.
1462 'name': 'lld/mac',
1463 'pattern': '.',
1464 'condition': 'host_os == "mac" and checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:481465 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'],
Nico Weber1df4a692017-10-16 21:36:301466 },
1467 {
phajdan.jr2448b2c2015-04-24 21:04:171468 # Update LASTCHANGE.
Stefan Zagerfd5ba192014-08-23 00:29:391469 'name': 'lastchange',
1470 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481471 'action': ['python', 'src/build/util/lastchange.py',
Stefan Zagerfd5ba192014-08-23 00:29:391472 '-o', 'src/build/util/LASTCHANGE'],
[email protected]9046a112012-01-31 20:45:251473 },
1474 {
Kai Ninomiya96bd9ef92017-10-20 21:30:371475 # Update GPU lists version string (for gpu/config).
1476 'name': 'gpu_lists_version',
1477 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481478 'action': ['python', 'src/build/util/lastchange.py',
Kai Ninomiya96bd9ef92017-10-20 21:30:371479 '-m', 'GPU_LISTS_VERSION',
1480 '--revision-id-only',
1481 '--header', 'src/gpu/config/gpu_lists_version.h'],
1482 },
1483 {
halcanary5cacab3a2016-07-29 19:23:201484 # Update skia_commit_hash.h.
1485 'name': 'lastchange_skia',
1486 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481487 'action': ['python', 'src/build/util/lastchange.py',
halcanary5cacab3a2016-07-29 19:23:201488 '-m', 'SKIA_COMMIT_HASH',
1489 '-s', 'src/third_party/skia',
1490 '--header', 'src/skia/ext/skia_commit_hash.h'],
1491 },
[email protected]66968ba2014-03-18 20:27:541492 # Pull GN binaries. This needs to be before running GYP below.
1493 {
Stefan Zagerfd5ba192014-08-23 00:29:391494 'name': 'gn_win',
1495 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191496 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481497 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121498 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391499 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391500 '--no_auth',
1501 '--bucket', 'chromium-gn',
1502 '-s', 'src/buildtools/win/gn.exe.sha1',
[email protected]66968ba2014-03-18 20:27:541503 ],
1504 },
1505 {
Stefan Zagerfd5ba192014-08-23 00:29:391506 'name': 'gn_mac',
1507 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191508 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481509 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121510 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391511 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391512 '--no_auth',
1513 '--bucket', 'chromium-gn',
1514 '-s', 'src/buildtools/mac/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:191515 ],
1516 },
1517 {
Stefan Zagerfd5ba192014-08-23 00:29:391518 'name': 'gn_linux64',
1519 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191520 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481521 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121522 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391523 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391524 '--no_auth',
1525 '--bucket', 'chromium-gn',
1526 '-s', 'src/buildtools/linux64/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:191527 ],
1528 },
[email protected]6eabd702014-01-12 00:19:201529 # Pull clang-format binaries using checked-in hashes.
1530 {
Stefan Zagerfd5ba192014-08-23 00:29:391531 'name': 'clang_format_win',
1532 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191533 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481534 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121535 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391536 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391537 '--no_auth',
1538 '--bucket', 'chromium-clang-format',
1539 '-s', 'src/buildtools/win/clang-format.exe.sha1',
[email protected]6eabd702014-01-12 00:19:201540 ],
1541 },
1542 {
Stefan Zagerfd5ba192014-08-23 00:29:391543 'name': 'clang_format_mac',
1544 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191545 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481546 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121547 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391548 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391549 '--no_auth',
1550 '--bucket', 'chromium-clang-format',
1551 '-s', 'src/buildtools/mac/clang-format.sha1',
[email protected]6eabd702014-01-12 00:19:201552 ],
1553 },
1554 {
Stefan Zagerfd5ba192014-08-23 00:29:391555 'name': 'clang_format_linux',
1556 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191557 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481558 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121559 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391560 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391561 '--no_auth',
1562 '--bucket', 'chromium-clang-format',
1563 '-s', 'src/buildtools/linux64/clang-format.sha1',
[email protected]6ec1d6fc2014-06-25 19:55:211564 ],
1565 },
Nico Weber0c0ade82017-10-19 22:34:431566 # Pull rc binaries using checked-in hashes.
1567 {
1568 'name': 'rc_win',
1569 'pattern': '.',
1570 'condition': 'checkout_win and host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481571 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:431572 'src/third_party/depot_tools/download_from_google_storage.py',
1573 '--no_resume',
1574 '--no_auth',
1575 '--bucket', 'chromium-browser-clang/rc',
1576 '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1',
1577 ],
1578 },
1579 {
1580 'name': 'rc_mac',
1581 'pattern': '.',
1582 'condition': 'checkout_win and host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481583 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:431584 'src/third_party/depot_tools/download_from_google_storage.py',
1585 '--no_resume',
1586 '--no_auth',
1587 '--bucket', 'chromium-browser-clang/rc',
1588 '-s', 'src/build/toolchain/win/rc/mac/rc.sha1',
1589 ],
1590 },
1591 {
1592 'name': 'rc_linux',
1593 'pattern': '.',
1594 'condition': 'checkout_win and host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481595 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:431596 'src/third_party/depot_tools/download_from_google_storage.py',
1597 '--no_resume',
1598 '--no_auth',
1599 '--bucket', 'chromium-browser-clang/rc',
1600 '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1',
Dominik Röttschesf49ef762017-11-17 09:26:311601 ]
1602 },
Nico Weber76299302018-02-01 20:36:451603 {
Tom Anderson44027d42018-03-15 17:14:531604 'name': 'test_fonts',
Dominik Röttschesf49ef762017-11-17 09:26:311605 'pattern': '.',
Alexander Semashkod9431dcf2018-03-01 07:51:161606 'condition': 'checkout_linux or (checkout_android or checkout_fuchsia)',
Dominik Röttschesf49ef762017-11-17 09:26:311607 'action': [ 'download_from_google_storage',
1608 '--no_resume',
Dominik Röttschesf49ef762017-11-17 09:26:311609 '--extract',
1610 '--no_auth',
1611 '--bucket', 'chromium-fonts',
Tom Anderson44027d42018-03-15 17:14:531612 '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1',
Nico Weber0c0ade82017-10-19 22:34:431613 ],
1614 },
Hans Wennborgfc1e2972017-06-12 18:42:261615 # Pull order files for the win/clang build.
1616 {
1617 'name': 'orderfiles_win',
1618 'pattern': '.',
Paweł Hajdan, Jr004d8b32017-10-02 18:44:221619 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:481620 'action': [ 'python',
Hans Wennborgfc1e2972017-06-12 18:42:261621 'src/third_party/depot_tools/download_from_google_storage.py',
1622 '--no_resume',
Hans Wennborgfc1e2972017-06-12 18:42:261623 '--no_auth',
1624 '--bucket', 'chromium-browser-clang/orderfiles',
1625 '-d', 'src/chrome/build',
1626 ],
1627 },
maruel4fbba012015-05-22 21:52:291628 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
1629 {
1630 'name': 'luci-go_win',
1631 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191632 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481633 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121634 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291635 '--no_resume',
maruel4fbba012015-05-22 21:52:291636 '--no_auth',
1637 '--bucket', 'chromium-luci',
1638 '-d', 'src/tools/luci-go/win64',
1639 ],
1640 },
1641 {
1642 'name': 'luci-go_mac',
1643 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191644 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481645 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121646 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291647 '--no_resume',
maruel4fbba012015-05-22 21:52:291648 '--no_auth',
1649 '--bucket', 'chromium-luci',
1650 '-d', 'src/tools/luci-go/mac64',
1651 ],
1652 },
1653 {
1654 'name': 'luci-go_linux',
1655 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191656 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481657 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121658 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291659 '--no_resume',
maruel4fbba012015-05-22 21:52:291660 '--no_auth',
1661 '--bucket', 'chromium-luci',
1662 '-d', 'src/tools/luci-go/linux64',
1663 ],
1664 },
[email protected]f1d116b2014-06-13 18:07:261665 # Pull the Syzygy binaries, used for optimization and instrumentation.
Sigurdur Asgeirsson69d0bcd2018-03-29 21:50:511666 # Remove this as soon as the zap_timestamp.exe utility is no longer used.
1667 # See https://crbug.com/821764#c3.
[email protected]f1d116b2014-06-13 18:07:261668 {
Stefan Zagerfd5ba192014-08-23 00:29:391669 'name': 'syzygy-binaries',
1670 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:091671 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481672 'action': ['python',
Stefan Zagerfd5ba192014-08-23 00:29:391673 'src/build/get_syzygy_binaries.py',
1674 '--output-dir=src/third_party/syzygy/binaries',
Sebastien Marchand75ac1cc2017-12-06 16:58:381675 '--revision=8164b24ebde9c5649c9a09e88a7fc0b0fcbd1bc5',
Stefan Zagerfd5ba192014-08-23 00:29:391676 '--overwrite',
sebmarchandaf7cc2f2016-10-04 18:22:251677 '--copy-dia-binaries',
[email protected]f1d116b2014-06-13 18:07:261678 ],
1679 },
erikwright9bdc2bf2015-01-22 20:20:041680 {
Stefan Zagerfd5ba192014-08-23 00:29:391681 'name': 'apache_win32',
1682 'pattern': '\\.sha1',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191683 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481684 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121685 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391686 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391687 '--directory',
1688 '--recursive',
1689 '--no_auth',
1690 '--num_threads=16',
1691 '--bucket', 'chromium-apache-win32',
1692 'src/third_party/apache-win32',
[email protected]2154052a2014-06-14 19:29:261693 ],
1694 },
1695 {
Dirk Pranke6c360be2017-10-09 19:06:591696 'name': 'msan_chained_origins',
1697 'pattern': '.',
1698 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481699 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591700 'src/third_party/depot_tools/download_from_google_storage.py',
1701 "--no_resume",
1702 "--no_auth",
1703 "--bucket", "chromium-instrumented-libraries",
1704 "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
1705 ],
1706 },
1707 {
1708 'name': 'msan_no_origins',
1709 'pattern': '.',
1710 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481711 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591712 'src/third_party/depot_tools/download_from_google_storage.py',
1713 "--no_resume",
1714 "--no_auth",
1715 "--bucket", "chromium-instrumented-libraries",
1716 "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
1717 ],
thomasandersonaa441f52017-04-04 22:35:391718 },
1719 {
bradnelson20c9a7312016-08-30 17:45:471720 "name": "wasm_fuzzer",
1721 "pattern": ".",
Nodir Turakulovdd080902018-01-20 01:06:481722 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121723 'src/third_party/depot_tools/download_from_google_storage.py',
bradnelson20c9a7312016-08-30 17:45:471724 "--no_resume",
1725 "--no_auth",
1726 "-u",
1727 "--bucket", "v8-wasm-fuzzer",
ahaasec987e5d2017-05-17 11:25:361728 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1",
bradnelson20c9a7312016-08-30 17:45:471729 ],
1730 },
dpapadcbee6ab2017-01-14 03:05:531731
1732 # Pull down Node binaries for WebUI toolchain.
1733 {
1734 'name': 'node_linux64',
1735 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191736 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481737 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121738 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531739 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531740 '--extract',
1741 '--no_auth',
dpapad40b00b452017-11-21 05:00:091742 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531743 '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1',
1744 ],
1745 },
1746 {
1747 'name': 'node_mac',
1748 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191749 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481750 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121751 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531752 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531753 '--extract',
1754 '--no_auth',
dpapad40b00b452017-11-21 05:00:091755 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531756 '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1',
1757 ],
1758 },
1759 {
1760 'name': 'node_win',
1761 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191762 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481763 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121764 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531765 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531766 '--no_auth',
dpapad40b00b452017-11-21 05:00:091767 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531768 '-s', 'src/third_party/node/win/node.exe.sha1',
1769 ],
1770 },
1771
1772 # Pull down NPM dependencies for WebUI toolchain.
1773 {
1774 'name': 'webui_node_modules',
1775 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481776 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121777 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531778 '--no_resume',
1779 '--extract',
1780 '--no_auth',
1781 '--bucket', 'chromium-nodejs',
1782 '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
1783 ],
1784 },
kainino61f7bce2017-04-28 21:53:271785
Dirk Prankec1d528fc02017-11-03 15:15:031786 # Download Telemetry's binary dependencies via conditionals
1787 {
1788 'name': 'checkout_telemetry_binary_dependencies',
1789 'condition': 'checkout_telemetry_dependencies',
1790 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271791 'action': [ 'vpython',
Dirk Prankec1d528fc02017-11-03 15:15:031792 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1793 ],
1794 },
Miguel Casasbbcf56ca2017-12-21 00:50:281795 #
Stephen Martinis924a02d2017-11-08 10:12:031796 # Download Telemetry's benchmark binary dependencies via conditionals
1797 {
1798 'name': 'checkout_telemetry_benchmark_deps',
1799 'condition': 'checkout_telemetry_dependencies',
1800 'pattern': '.',
Nodir Turakuloveea875a2018-01-22 23:52:521801 'action': [ 'vpython',
Stephen Martinis924a02d2017-11-08 10:12:031802 'src/tools/perf/fetch_benchmark_deps.py',
1803 '-f',
1804 ],
1805 },
Dirk Prankec1d528fc02017-11-03 15:15:031806
kainino61f7bce2017-04-28 21:53:271807 # Download Telemetry's binary dependencies
Dirk Prankec1d528fc02017-11-03 15:15:031808 # TODO(crbug.com/780967) - remove this once the bots are setting the
1809 # `checkout_telemetry_dependencies` condition.
kainino61f7bce2017-04-28 21:53:271810 {
1811 'name': 'fetch_telemetry_binary_dependencies',
1812 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271813 'action': [ 'vpython',
Dirk Pranke4c3098b2017-10-10 18:57:221814 'src/tools/perf/conditionally_execute',
1815 '--gyp-condition', 'fetch_telemetry_dependencies=1',
kainino61f7bce2017-04-28 21:53:271816 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1817 ],
1818 },
John Budorickda2bfbb2017-05-30 22:17:591819
Dirk Pranke099b747b2017-10-06 04:29:091820 # This is used to ensure that all network operations are properly
1821 # annotated so we can document what they're for.
1822 {
1823 'name': 'tools_traffic_annotation_linux',
1824 'pattern': '.',
1825 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481826 'action': [ 'python',
Dirk Pranke099b747b2017-10-06 04:29:091827 'src/third_party/depot_tools/download_from_google_storage.py',
1828 '--no_resume',
Dirk Pranke099b747b2017-10-06 04:29:091829 '--no_auth',
1830 '--num_threads=4',
1831 '--bucket', 'chromium-tools-traffic_annotation',
1832 '-d', 'src/tools/traffic_annotation/bin/linux64',
1833 ],
1834 },
1835
Ramin Halavatib7e55d92017-11-21 08:00:571836# This is used to ensure that all network operations are properly
1837# annotated so we can document what they're for.
1838 {
1839 'name': 'tools_traffic_annotation_windows',
1840 'pattern': '.',
Ramin Halavati4478d112018-02-01 06:33:521841 'condition': 'host_os == "win" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481842 'action': [ 'python',
Ramin Halavatib7e55d92017-11-21 08:00:571843 'src/third_party/depot_tools/download_from_google_storage.py',
1844 '--no_resume',
1845 '--no_auth',
1846 '--num_threads=4',
1847 '--bucket', 'chromium-tools-traffic_annotation',
1848 '-d', 'src/tools/traffic_annotation/bin/win32',
1849 ],
1850 },
1851
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401852 # Pull down Zucchini test data.
1853 {
1854 'name': 'zucchini_testdata',
1855 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481856 'action': [ 'python',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401857 'src/third_party/depot_tools/download_from_google_storage.py',
1858 '--no_resume',
1859 '--no_auth',
huangs3bad8e22017-09-05 21:50:001860 '--num_threads=4',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401861 '--bucket', 'chromium-binary-patching',
Samuel Huang577ef6c2018-03-13 18:19:341862 '-d', 'src/components/zucchini/testdata',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401863 ],
1864 },
1865
Paweł Hajdan, Jre7eed642017-10-02 16:46:561866 {
John Budoricke9aa27c2018-03-24 00:23:271867 # We used to use src as a CIPD root. We moved it to a different directory
1868 # in crrev.com/c/930178 but left the clobber here to ensure that that CL
1869 # could be reverted safely. This can be safely removed once crbug.com/794764
1870 # is resolved.
1871 'name': 'Android Clobber Deprecated CIPD Root',
John Budorickda801692018-02-21 23:24:281872 'pattern': '.',
1873 'condition': 'checkout_android',
John Budoricke9aa27c2018-03-24 00:23:271874 'action': ['src/build/cipd/clobber_cipd_root.py',
1875 '--root', 'src',
John Budorickda801692018-02-21 23:24:281876 ],
1877 },
1878 {
George Burgess IV1f751e42018-01-23 22:10:001879 'name': 'Fetch Android AFDO profile',
1880 'pattern': '.',
1881 'condition': 'checkout_android',
1882 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'],
1883 },
1884 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561885 # This downloads SDK extras and puts them in the
1886 # third_party/android_tools/sdk/extras directory.
1887 'name': 'sdkextras',
1888 'pattern': '.',
1889 'condition': 'checkout_android',
1890 # When adding a new sdk extras package to download, add the package
1891 # directory and zip file to .gitignore in third_party/android_tools.
Nodir Turakulovdd080902018-01-20 01:06:481892 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051893 'src/build/android/play_services/update.py',
1894 'download'
Paweł Hajdan, Jre7eed642017-10-02 16:46:561895 ],
1896 },
John Budorickbbdcc492017-10-09 18:57:091897 # Download checkstyle for use in PRESUBMIT for Java changes.
1898 {
1899 'name': 'checkstyle',
1900 'pattern': '.',
1901 # Must also be downloaded on linux for use on chromium_presubmit.
1902 'condition': 'checkout_android or checkout_linux',
Nodir Turakulovdd080902018-01-20 01:06:481903 'action': [ 'python',
John Budorickbbdcc492017-10-09 18:57:091904 'src/third_party/depot_tools/download_from_google_storage.py',
1905 '--no_resume',
1906 '--no_auth',
1907 '--bucket', 'chromium-android-tools/checkstyle',
1908 '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1'
1909 ],
1910 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561911 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561912 'name': 'gvr_static_shim_android_arm',
1913 'pattern': '\\.sha1',
1914 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481915 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271916 'src/third_party/depot_tools/download_from_google_storage.py',
1917 '--no_resume',
1918 '--no_auth',
1919 '--bucket', 'chromium-gvr-static-shim',
1920 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561921 ],
1922 },
1923 {
1924 'name': 'gvr_static_shim_android_arm64',
1925 'pattern': '\\.sha1',
1926 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481927 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271928 'src/third_party/depot_tools/download_from_google_storage.py',
1929 '--no_resume',
1930 '--no_auth',
1931 '--bucket', 'chromium-gvr-static-shim',
1932 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1',
thakis973bb2432017-05-24 15:27:141933 ],
Paweł Hajdan, Jre7eed642017-10-02 16:46:561934 },
1935 {
Tibor Goldschwendt21235c82018-01-08 23:00:021936 'name': 'vr_assets',
1937 'pattern': '.',
Tibor Goldschwendtad8048f2018-02-05 18:26:001938 'condition': 'checkout_src_internal and checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481939 'action': ['python',
Tibor Goldschwendt21235c82018-01-08 23:00:021940 'src/third_party/depot_tools/download_from_google_storage.py',
1941 '--bucket', 'chrome-vr-assets',
1942 '--recursive',
1943 '--directory',
Tibor Goldschwendtfd6806b82018-02-14 22:32:501944 'src/chrome/browser/resources/vr/assets/google_chrome',
Tibor Goldschwendt21235c82018-01-08 23:00:021945 ],
1946 },
1947 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561948 'name': 'vr_controller_test_api',
1949 'pattern': '\\.sha1',
1950 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481951 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271952 'src/third_party/depot_tools/download_from_google_storage.py',
1953 '--no_resume',
1954 '--no_auth',
1955 '--bucket', 'chromium-gvr-static-shim/controller_test_api',
1956 '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561957 ],
1958 },
1959 # Download VR test APKs only if the environment variable is set
1960 {
1961 'name': 'vr_test_apks',
1962 'pattern': '.',
1963 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481964 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051965 'src/third_party/gvr-android-sdk/test-apks/update.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561966 ],
1967 },
Bill Orr7cccdf572017-12-19 17:05:491968 # Download Oculus SDK if appropriate.
1969 {
1970 'name': 'libovr',
1971 'pattern': '.',
1972 'condition': 'checkout_oculus_sdk',
Nodir Turakulovdd080902018-01-20 01:06:481973 'action': ['python',
Bill Orr7cccdf572017-12-19 17:05:491974 'src/third_party/depot_tools/download_from_google_storage.py',
1975 '--bucket', 'chrome-oculus-sdk',
1976 '--recursive',
1977 '--num_threads=10',
1978 '--directory',
1979 'src/third_party/libovr/src',
1980 ],
1981 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561982 {
1983 # Pull doclava binaries if building for Android.
1984 'name': 'doclava',
1985 'pattern': '.',
1986 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481987 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051988 'src/build/android/download_doclava.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561989 ],
1990 },
1991
1992 {
1993 'name': 'fuchsia_sdk',
1994 'pattern': '.',
1995 'condition': 'checkout_fuchsia',
1996 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481997 'python',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561998 'src/build/fuchsia/update_sdk.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561999 ],
2000 },
Dan Jacques9731b23a2017-10-12 20:40:172001
Benjamin Pastene99550d22018-04-19 00:16:432002 # Download CrOS simplechrome artifacts. The first hooks is for boards that
2003 # support VM images, the second hook for all other boards.
Benjamin Pastene9d8ac1b2018-04-03 20:33:022004 {
Benjamin Pastene99550d22018-04-19 00:16:432005 'name': 'cros_simplechrome_artifacts_with_vm',
Benjamin Pastene9d8ac1b2018-04-03 20:33:022006 'pattern': '.',
2007 # Building for CrOS is only supported on linux currently.
Benjamin Pastene99550d22018-04-19 00:16:432008 'condition': '(checkout_chromeos and host_os == "linux") and cros_download_vm',
Benjamin Pastene9d8ac1b2018-04-03 20:33:022009 'action': [
2010 'src/third_party/chromite/bin/cros',
2011 'chrome-sdk',
Benjamin Pasteneb828cce2018-04-06 18:12:462012 '--nogoma',
Benjamin Pastene9d8ac1b2018-04-03 20:33:022013 '--use-external-config',
2014 '--nogn-gen',
2015 '--download-vm',
2016 '--board={cros_board}',
2017 '--cache-dir=src/build/cros_cache/',
Benjamin Pastenefab64fff2018-04-18 22:21:162018 # TODO(crbug.com/834134): Remove the cache clobber when the sdk is smart
2019 # enough to eject old toolchains from the cache.
2020 '--clear-sdk-cache',
Benjamin Pastene9d8ac1b2018-04-03 20:33:022021 '--log-level=error',
2022 'exit',
2023 ],
2024 },
Benjamin Pastene99550d22018-04-19 00:16:432025 {
2026 'name': 'cros_simplechrome_artifacts_with_no_vm',
2027 'pattern': '.',
2028 # Building for CrOS is only supported on linux currently.
2029 'condition': '(checkout_chromeos and host_os == "linux") and not cros_download_vm',
2030 'action': [
2031 'src/third_party/chromite/bin/cros',
2032 'chrome-sdk',
2033 '--nogoma',
2034 '--use-external-config',
2035 '--nogn-gen',
2036 '--board={cros_board}',
2037 '--cache-dir=src/build/cros_cache/',
2038 '--log-level=error',
2039 'exit',
2040 ],
2041 },
Benjamin Pastene9d8ac1b2018-04-03 20:33:022042
Dan Jacques9731b23a2017-10-12 20:40:172043 # Download and initialize "vpython" VirtualEnv environment packages.
2044 {
2045 'name': 'vpython_common',
2046 'pattern': '.',
2047 'action': [ 'vpython',
2048 '-vpython-spec', 'src/.vpython',
2049 '-vpython-tool', 'install',
2050 ],
2051 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:562052]
scottmg4cd62bec2017-05-16 03:55:252053
jbudoricke6932bfd2016-09-07 02:09:222054recursedeps = [
bungeman1835f982016-09-28 18:33:222055 # buildtools provides clang_format, libc++, and libc++abi
2056 'src/buildtools',
jbudoricke6932bfd2016-09-07 02:09:222057 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
2058 ("src/third_party/angle", "DEPS.chromium"),
Paweł Hajdan, Jr37a7a742017-09-25 11:37:302059 # src-internal has its own DEPS file to pull additional internal repos
2060 'src-internal',
jbudoricke6932bfd2016-09-07 02:09:222061]