blob: c3fd513a2585c7194c6e70b87eef2d3b371469a3 [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
Dirk Pranke4dabe802017-11-02 07:18:5544 # Check out and download nacl by default. This can be disabled e.g. with
45 # custom_vars.
46 'checkout_nacl': True,
47
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3048 # By default, do not check out src-internal. This can be overridden e.g. with
49 # custom_vars.
Paweł Hajdan, Jr41d18fa2017-10-09 12:41:5750 'checkout_src_internal': False,
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3051
Dirk Prankec1d528fc02017-11-03 15:15:0352 # Fetch the additional packages and files needed to run all of the
53 # telemetry tests. This is false by default as some stuff is only
54 # privately accessible.
55 'checkout_telemetry_dependencies': False,
56
Johanncf5bb4c62017-10-30 23:21:3457 # libaom provides support for AV1 but the bitstream is not frozen.
Johann80428a92017-12-04 21:56:2858 'checkout_libaom': True,
Johanncf5bb4c62017-10-30 23:21:3459
Bill Orr7cccdf572017-12-19 17:05:4960 # By default do not check out the Oculus SDK. Only available for Googlers.
61 'checkout_oculus_sdk' : False,
62
Dirk Pranke099b747b2017-10-06 04:29:0963 # TODO(dpranke): change to != "small" once != is supported.
Dirk Pranke5e953152017-10-10 16:26:4464 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"',
Dirk Pranke4c3098b2017-10-10 18:57:2265 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"',
Dirk Pranke5e953152017-10-10 16:26:4466
Oystein Eftevaaga9439b922018-01-08 19:30:1467 'android_git': 'https://android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:3468 'aomedia_git': 'https://aomedia.googlesource.com',
Stefan Zagerfd5ba192014-08-23 00:29:3969 'chromium_git': 'https://chromium.googlesource.com',
dpranke4778c712016-09-23 01:15:5670 'swiftshader_git': 'https://swiftshader.googlesource.com',
71 'pdfium_git': 'https://pdfium.googlesource.com',
72 'boringssl_git': 'https://boringssl.googlesource.com',
agable851c6f7252016-11-04 17:17:3973 'skia_git': 'https://skia.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:0274 'webrtc_git': 'https://webrtc.googlesource.com',
thestig3e7d8e02015-09-28 23:54:4675 # Three lines of non-changing comments so that
thestig3e7d8e02015-09-28 23:54:4676 # the commit queue can handle CLs rolling sfntly
77 # and whatever else without interference from each other.
Lei Zhang286c8042018-01-20 01:32:2078 'sfntly_revision': '16f3404e41edc9708a51fbce481f22e46b809686',
thestig3e7d8e02015-09-28 23:54:4679 # Three lines of non-changing comments so that
80 # the commit queue can handle CLs rolling Skia
81 # and whatever else without interference from each other.
skia-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com7f64b7ea22018-02-03 02:58:4182 'skia_revision': '5bb82cbecd740d21b92e8d2944280ab6eb6af7a6',
[email protected]5eb3022e2011-11-23 16:42:2683 # Three lines of non-changing comments so that
sbce2d44aee2015-06-09 03:06:0484 # the commit queue can handle CLs rolling V8
85 # and whatever else without interference from each other.
v8-autorollf214d072018-02-03 01:11:1786 'v8_revision': 'ac7384b32f9188ddf02d777ce5b9311ea54f6017',
[email protected]20e0e752012-09-14 15:56:5287 # Three lines of non-changing comments so that
[email protected]10d8ac32013-10-31 13:34:3188 # the commit queue can handle CLs rolling swarming_client
[email protected]7f4fc412013-02-24 00:16:5189 # and whatever else without interference from each other.
Marc-Antoine Ruel72a978812018-01-11 15:15:4590 'swarming_revision': '88229872dd17e71658fe96763feaa77915d8cbd6',
[email protected]d0982f92013-03-19 10:26:2091 # Three lines of non-changing comments so that
[email protected]62f231902014-03-11 10:19:2092 # the commit queue can handle CLs rolling ANGLE
93 # and whatever else without interference from each other.
angle-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com502f4c32018-02-02 22:43:0894 'angle_revision': 'df9ad2be8c9766e867c46eb3b5d1fd24235f5b67',
[email protected]f58d3292014-05-14 01:56:5495 # Three lines of non-changing comments so that
96 # the commit queue can handle CLs rolling build tools
97 # and whatever else without interference from each other.
Tom Andersonea4edee2018-01-28 01:31:4898 'buildtools_revision': 'f115f4786771afdfacb18a2299541b23e21f4792',
dpranke7a694fe2015-08-18 05:11:2999 # Three lines of non-changing comments so that
capne3976c22016-08-12 22:06:17100 # the commit queue can handle CLs rolling SwiftShader
101 # and whatever else without interference from each other.
Alexis Hetu93d0e752018-01-17 20:46:06102 'swiftshader_revision': 'b1d452eaeeb8272e37b87446511f2e0e95d27e6f',
capne3976c22016-08-12 22:06:17103 # Three lines of non-changing comments so that
dpranke7a694fe2015-08-18 05:11:29104 # the commit queue can handle CLs rolling PDFium
[email protected]d6a2e88f12014-05-19 19:27:03105 # and whatever else without interference from each other.
pdfium-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.comc21e3da42018-02-03 01:19:51106 'pdfium_revision': 'b1d7872faacbd37c03eacc1e86214904db8f658f',
[email protected]99e1c5c2014-06-20 13:02:29107 # Three lines of non-changing comments so that
108 # the commit queue can handle CLs rolling openmax_dl
109 # and whatever else without interference from each other.
Sergey Ulanov31ba2a02017-12-14 01:44:33110 'openmax_dl_revision': 'b611996df3b8f6b151339d22c12c21f167009cb6',
[email protected]7ee3af52014-07-06 18:16:47111 # Three lines of non-changing comments so that
112 # the commit queue can handle CLs rolling BoringSSL
113 # and whatever else without interference from each other.
Steven Valdez377235ab2018-01-31 23:48:14114 'boringssl_revision': '7e5dd25d47face6deb452823ae4f40c4c7ca375a',
szager29407eb2014-08-26 13:09:31115 # Three lines of non-changing comments so that
szager29407eb2014-08-26 13:09:31116 # the commit queue can handle CLs rolling google-toolbox-for-mac
117 # and whatever else without interference from each other.
Mark Mentovai9ed143162017-07-24 19:04:47118 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb',
szager29407eb2014-08-26 13:09:31119 # Three lines of non-changing comments so that
120 # the commit queue can handle CLs rolling lighttpd
121 # and whatever else without interference from each other.
122 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb',
123 # Three lines of non-changing comments so that
124 # the commit queue can handle CLs rolling lss
125 # and whatever else without interference from each other.
Torne (Richard Coles)9a6106e2017-10-20 17:48:17126 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154',
mseaborn851e1bd12014-09-05 08:00:14127 # Three lines of non-changing comments so that
128 # the commit queue can handle CLs rolling NaCl
129 # and whatever else without interference from each other.
nacl-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com541ec062018-02-03 03:02:13130 'nacl_revision': '8ad1515975c09beebd2e9ea69c1f9c5ba88a5bbf',
cwallezf2b03492015-08-25 15:08:18131 # Three lines of non-changing comments so that
drottfe896a82017-03-06 12:12:54132 # the commit queue can handle CLs rolling freetype
bcf53f862ea2016-02-02 05:08:42133 # and whatever else without interference from each other.
Ben Wagnerf55c1c32018-02-02 07:58:43134 'freetype_revision': '036bdc0c9a4fb55b4fe5a7276e97b70b95c8a260',
robertocn4567f4d2016-03-23 03:36:07135 # Three lines of non-changing comments so that
136 # the commit queue can handle CLs rolling catapult
137 # and whatever else without interference from each other.
catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com98edc7a12018-02-03 00:10:50138 'catapult_revision': 'f601e519d114ff9bd12c0a7d130243a4a3cc0e00',
ochangcbd1cf202016-04-01 21:37:37139 # Three lines of non-changing comments so that
140 # the commit queue can handle CLs rolling libFuzzer
141 # and whatever else without interference from each other.
Jonathan Metzmana86dd472017-12-15 20:43:39142 'libfuzzer_revision': 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f',
chenwilliam56a90382016-12-09 02:16:28143 # Three lines of non-changing comments so that
144 # the commit queue can handle CLs rolling devtools-node-modules
145 # and whatever else without interference from each other.
Will Chenfa874182018-01-03 19:03:26146 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899',
kmarshall520f9512017-01-24 23:25:01147 # Three lines of non-changing comments so that
aizatsky8904f9c2017-03-03 19:50:05148 # the commit queue can handle CLs rolling libprotobuf-mutator
149 # and whatever else without interference from each other.
Jonathan Metzmana54e5af62017-11-01 19:29:06150 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051',
[email protected]5f129de2009-02-24 23:22:04151}
152
tandrii74b7e422014-09-23 16:45:27153# Only these hosts are allowed for dependencies in this DEPS file.
154# If you need to add a new host, contact chrome infrastracture team.
155allowed_hosts = [
tandriicb12c642015-03-27 19:00:55156 'android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:34157 'aomedia.googlesource.com',
agable851c6f7252016-11-04 17:17:39158 'boringssl.googlesource.com',
Paweł Hajdan, Jr37a7a742017-09-25 11:37:30159 'chrome-internal.googlesource.com',
agable851c6f7252016-11-04 17:17:39160 'chromium.googlesource.com',
161 'pdfium.googlesource.com',
162 'skia.googlesource.com',
capne3976c22016-08-12 22:06:17163 'swiftshader.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:02164 'webrtc.googlesource.com',
tandrii74b7e422014-09-23 16:45:27165]
166
[email protected]5f129de2009-02-24 23:22:04167deps = {
John Williamsff7a08d2018-02-01 03:20:21168 'src/chrome/browser/resources/media_router/extension/src':
169 Var('chromium_git') + '/media_router.git' + '@' + '6fc8d5201d0998eb5575dc389409d74e67b2b981',
170
Stefan Zagerfd5ba192014-08-23 00:29:39171 'src/buildtools':
dpranke4778c712016-09-23 01:15:56172 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'),
[email protected]f58d3292014-05-14 01:56:54173
Paweł Hajdan, Jr7af368952017-10-02 12:25:36174 'src/chrome/installer/mac/third_party/xz/xz': {
175 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7',
176 'condition': 'checkout_mac',
177 },
178
Stefan Zagerfd5ba192014-08-23 00:29:39179 'src/chrome/test/data/perf/canvas_bench':
dpranke4778c712016-09-23 01:15:56180 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732',
[email protected]700e7e32012-02-22 17:04:38181
Stefan Zagerfd5ba192014-08-23 00:29:39182 'src/chrome/test/data/perf/frame_rate/content':
dpranke4778c712016-09-23 01:15:56183 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9',
[email protected]40646b012011-07-26 02:30:26184
bsheedy01d93942017-07-27 22:49:38185 'src/chrome/test/data/vr/webvr_info':
bsheedyac7c01a2017-11-07 18:53:12186 Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248',
bsheedy01d93942017-07-27 22:49:38187
Paweł Hajdan, Jr7af368952017-10-02 12:25:36188 'src/ios/third_party/earl_grey/src': {
Mike Baxleyc1441e72017-11-03 18:26:47189 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '2fd8a7d4b76f820fb95bce495c0ceb324dbe3edb',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36190 'condition': 'checkout_ios',
191 },
192
193 'src/ios/third_party/fishhook/src': {
194 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c',
195 'condition': 'checkout_ios',
196 },
197
198 'src/ios/third_party/gcdwebserver/src': {
199 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0',
200 'condition': 'checkout_ios',
201 },
202
203 'src/ios/third_party/material_components_ios/src': {
iOS Autorollera13e5572018-02-03 02:59:44204 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '4723f0fded1cb6607de576836f89a291cfb9799d',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36205 'condition': 'checkout_ios',
206 },
207
208 'src/ios/third_party/material_font_disk_loader_ios/src': {
iOS Autorollered4c9f72017-12-21 15:01:19209 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '8e30188777b016182658fbaa0a4a020a48183224',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36210 'condition': 'checkout_ios',
211 },
212
Gauthier Ambard8d034462017-10-25 16:39:55213 'src/ios/third_party/material_internationalization_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13214 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '8f28a55c7f35b95a587bba01a8467ea470647873',
Gauthier Ambard8d034462017-10-25 16:39:55215 'condition': 'checkout_ios',
216 },
217
Paweł Hajdan, Jr7af368952017-10-02 12:25:36218 'src/ios/third_party/material_roboto_font_loader_ios/src': {
219 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f',
220 'condition': 'checkout_ios',
221 },
222
223 'src/ios/third_party/material_sprited_animation_view_ios/src': {
224 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81',
225 'condition': 'checkout_ios',
226 },
227
228 'src/ios/third_party/material_text_accessibility_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13229 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '92c9e56f4e07622084b3d931247db974fec55dde',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36230 'condition': 'checkout_ios',
231 },
232
mrefaat070940d2017-12-01 02:59:38233 'src/ios/third_party/motion_interchange_objc/src': {
Louis Romero2c7e321c2017-12-21 10:38:13234 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab',
mrefaat070940d2017-12-01 02:59:38235 'condition': 'checkout_ios',
236 },
237
mrefaatb4b862312017-12-01 20:03:05238 'src/ios/third_party/motion_animator_objc/src': {
iOS Autoroller409d77352017-12-22 02:30:46239 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + 'ff39ecc69fdee46d388cc9f882201d54c3d5039c',
mrefaatb4b862312017-12-01 20:03:05240 'condition': 'checkout_ios',
241 },
242
Louis Romeroe1d73292017-12-07 01:28:17243 'src/ios/third_party/motion_transitioning_objc/src': {
244 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6',
245 'condition': 'checkout_ios',
246 },
247
Paweł Hajdan, Jr7af368952017-10-02 12:25:36248 'src/ios/third_party/ochamcrest/src': {
Eric Noyaudaabeb52017-10-13 16:29:11249 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36250 'condition': 'checkout_ios',
251 },
252
jrummellf715b1692015-10-21 23:26:26253 'src/media/cdm/api':
John Rummell6444def2018-01-31 22:06:04254 Var('chromium_git') + '/chromium/cdm.git' + '@' + '3fc73b9647ada546a981b7f17bb436702f914323',
[email protected]255c43f2013-06-07 08:54:11255
Dirk Pranke4dabe802017-11-02 07:18:55256 'src/native_client': {
257 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'),
258 'condition': 'checkout_nacl',
259 },
[email protected]bba1c0dd2013-08-19 10:33:31260
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42261 'src/third_party/SPIRV-Tools/src':
262 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c',
jinsukkim21d3369fc2016-06-21 06:16:03263
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16264 'src/third_party/android_protobuf/src': {
265 'url': Var('chromium_git') + '/external/android_protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f',
266 'condition': 'checkout_android',
267 },
268
Shenghua Zhang0c102b12018-01-11 00:25:57269 'src/third_party/android_ndk': {
270 'url': Var('chromium_git') + '/android_ndk.git' + '@' + 'e951c37287c7d8cd915bf8d4149fd4a06d808b55',
271 'condition': 'checkout_android',
272 },
273
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16274 'src/third_party/android_tools': {
Peter Wenb9e3ce372018-01-17 19:09:20275 'url': Var('chromium_git') + '/android_tools.git' + '@' + 'c9f9bbf0a6c862fbef6115e80e8617093cd58e6b',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16276 'condition': 'checkout_android',
277 },
278
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42279 'src/third_party/angle':
280 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
281
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16282 'src/third_party/apache-portable-runtime/src': {
bsheedy2a59f252018-01-03 21:30:05283 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16284 'condition': 'checkout_android',
285 },
286
Peter Wend0cc6d62017-11-02 16:32:30287 'src/third_party/auto/src': {
Peter Wen46893982018-01-18 16:53:46288 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82',
Peter Wend0cc6d62017-11-02 16:32:30289 'condition': 'checkout_android',
290 },
291
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42292 'src/third_party/bidichecker':
293 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0',
294
Paweł Hajdan, Jr7af368952017-10-02 12:25:36295 'src/third_party/bison': {
296 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3',
297 'condition': 'checkout_win',
298 },
299
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42300 'src/third_party/boringssl/src':
301 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
302
303 'src/third_party/breakpad/breakpad':
Nico Webera0a05a82018-02-01 01:29:01304 Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'ac4a549e29fbc8fe58212380e41fa24f36e6c3ec',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42305
306 'src/third_party/catapult':
307 Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
308
309 'src/third_party/ced/src':
310 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9',
311
Paweł Hajdan, Jr7af368952017-10-02 12:25:36312 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools.
313 'src/third_party/chromite': {
Qiang Xu7531f8c2018-01-27 05:35:33314 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '5b16d08cfaf8b1fc689a9c68258c258f4ad0fff8',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36315 'condition': 'checkout_linux',
316 },
317
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42318 'src/third_party/cld_3/src':
Nico Webera8d4b462018-01-31 20:54:52319 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '484afe9ba7438d078e60b3a26e7fb590213c0e17',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42320
321 'src/third_party/colorama/src':
322 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
323
324 'src/third_party/crc32c/src':
Victor Costanf05fce322017-10-02 20:25:24325 Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '0f771ed5ef83556451e1736f22b1a11054dc81c3',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42326
Paweł Hajdan, Jr7af368952017-10-02 12:25:36327 # For Linux and Chromium OS.
328 'src/third_party/cros_system_api': {
Roman Sorokinac722cb2018-01-31 12:12:40329 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '03017732129da58164ffd1e31c7c050abc797e89',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36330 'condition': 'checkout_linux',
331 },
332
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42333 'src/third_party/custom_tabs_client/src': {
Lei Tianf423fcee2017-12-21 01:24:26334 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + 'a0b6c6f7db4127c191ebb9ef008609224658edb2',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42335 'condition': 'checkout_android',
336 },
337
338 'src/third_party/depot_tools':
depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com6e0f7682018-02-03 01:21:00339 Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '3a998d1b232fc968cd0d83d23f6b8a9226fa7ff6',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42340
Will Chen48fbfe0f2018-01-03 01:26:35341 'src/third_party/devtools-node-modules':
342 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'),
Paweł Hajdan, Jr7af368952017-10-02 12:25:36343
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42344 'src/third_party/dom_distiller_js/dist':
Wei-Yin Chen (陳威尹)f1f82a12017-12-13 15:52:40345 Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '60b46718e28f553ab57e3d2bbda5b3b41456f417',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42346
347 'src/third_party/elfutils/src': {
348 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7',
349 'condition': 'checkout_android',
350 },
351
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16352 'src/third_party/errorprone/lib': {
Peter Wen4690acc2018-01-11 15:12:45353 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + 'ecc57c2b00627667874744b9ad8efe10734d97a8',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16354 'condition': 'checkout_android',
355 },
356
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42357 'src/third_party/ffmpeg':
Xiaohan Wangf7674372018-02-01 01:40:00358 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'f5964c36e1dc41b8b91380b5eff0659e3a5a1549',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42359
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16360 'src/third_party/findbugs': {
John Budorick79bf00a2017-11-10 18:22:19361 'url': Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '4275d9ac8610db6b1bc9a5e887f97e41b33fac67',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16362 'condition': 'checkout_android',
363 },
364
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42365 'src/third_party/flac':
366 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '7d0f5b3a173ffe98db08057d1f52b7787569e0a6',
367
368 'src/third_party/flatbuffers/src':
369 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290',
370
Paweł Hajdan, Jr7af368952017-10-02 12:25:36371 # Used for embedded builds. CrOS & Linux use the system version.
372 'src/third_party/fontconfig/src': {
Tom Anderson34db191c2017-12-13 22:36:48373 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'b546940435ebfb0df575bc7a2350d1e913919c34',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36374 'condition': 'checkout_linux',
375 },
376
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42377 'src/third_party/freetype/src':
378 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'),
379
Paweł Hajdan, Jr7af368952017-10-02 12:25:36380 # Chrome OS touchpad gestures library.
381 'src/third_party/gestures/gestures': {
David Revemane25bd88e2017-10-02 21:06:05382 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36383 'condition': 'checkout_linux',
384 },
385
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42386 'src/third_party/glslang/src':
387 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + '210c6bf4d8119dc5f8ac21da2d4c87184f7015e0',
388
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22389 'src/third_party/google_toolbox_for_mac/src': {
390 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'),
391 'condition': 'checkout_ios or checkout_mac',
392 },
393
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42394 'src/third_party/googletest/src':
Victor Costan9f851ee52018-01-11 02:44:41395 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '0062e4869f07a3ef235703ddf63af604b712446c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42396
Paweł Hajdan, Jr7af368952017-10-02 12:25:36397 # GNU binutils assembler for x86-32.
398 'src/third_party/gnu_binutils': {
399 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436',
Dirk Pranke4dabe802017-11-02 07:18:55400 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36401 },
402
403 'src/third_party/gperf': {
404 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1',
405 'condition': 'checkout_win',
406 },
407
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42408 'src/third_party/gvr-android-sdk/src': {
Biao She75f624922017-11-16 18:44:17409 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '6aef4ab34276aac81ee38f1cb1d034de7fc4a4eb',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16410 'condition': 'checkout_android',
411 },
412
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42413 'src/third_party/hunspell_dictionaries':
Chris Nardieea5de82017-10-14 22:21:31414 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42415
416 'src/third_party/icu':
Jungshik Shinc9379112018-01-17 03:25:47417 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'c8ca2962b46670ec89071ffd1291688983cd319c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42418
419 'src/third_party/jsoncpp/source':
420 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248
421
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16422 'src/third_party/jsr-305/src': {
423 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
424 'condition': 'checkout_android',
425 },
426
427 'src/third_party/junit/src': {
428 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481',
429 'condition': 'checkout_android',
430 },
431
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42432 'src/third_party/leakcanary/src': {
433 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e',
434 'condition': 'checkout_android',
435 },
436
437 'src/third_party/leveldatabase/src':
Victor Costan7f1a6b12017-10-09 19:00:34438 Var('chromium_git') + '/external/leveldb.git' + '@' + 'ca216e493f32278f50a823811ab95f64cf0f839b',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42439
440 'src/third_party/libFuzzer/src':
Max Moroz1ee969e2017-10-04 16:27:26441 Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'),
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42442
443 'src/third_party/libaddressinput/src':
sebsg603b79c2017-11-24 00:29:08444 Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'a575c63de328d0c72237c55d1a05e191c245122a',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42445
Johanncf5bb4c62017-10-30 23:21:34446 'src/third_party/libaom/source/libaom': {
Tom Finegan525e45372017-12-22 21:32:24447 'url': Var('aomedia_git') + '/aom.git' + '@' + 'cc92258a08d98f469dff1be288acbc322632377b',
Johanncf5bb4c62017-10-30 23:21:34448 'condition': 'checkout_libaom',
449 },
450
Paweł Hajdan, Jr7af368952017-10-02 12:25:36451 # Userspace interface to kernel DRM services.
452 'src/third_party/libdrm/src': {
Kristian H. Kristensen03ecc6d2017-10-30 23:53:36453 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36454 'condition': 'checkout_linux',
455 },
456
457 # The libevdev library (Chrome OS version).
458 'src/third_party/libevdev/src': {
459 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744',
460 'condition': 'checkout_linux',
461 },
462
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42463 'src/third_party/libjpeg_turbo':
464 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd',
465
Paweł Hajdan, Jr7af368952017-10-02 12:25:36466 'src/third_party/liblouis/src': {
467 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2',
468 'condition': 'checkout_linux',
469 },
470
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42471 'src/third_party/libphonenumber/dist':
472 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4',
473
474 'src/third_party/libprotobuf-mutator/src':
475 Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'),
476
477 'src/third_party/libsrtp':
478 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '1d45b8e599dc2db6ea3ae22dbc94a8c504652423',
479
Paweł Hajdan, Jr7af368952017-10-02 12:25:36480 # Android Explicit Synchronization.
481 'src/third_party/libsync/src': {
Alexandros Frantzis3ad9a222018-01-25 17:09:54482 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36483 'condition': 'checkout_linux',
484 },
485
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42486 'src/third_party/libvpx/source/libvpx':
Marco3c5e2fb2018-02-02 21:12:36487 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'ac54d233b6d7ba5674996353a86bae42417022ee',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42488
489 'src/third_party/libwebm/source':
bsheedy2a59f252018-01-03 21:30:05490 Var('chromium_git') + '/webm/libwebm.git' + '@' + 'b03c65468b06d097f27235d93d76bfc45f490ede',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42491
492 'src/third_party/libyuv':
Frank Barchardd1823b52018-01-30 15:09:50493 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + 'ffec313dbe58c6b97d4943387bda618dccbe4591', # from r1694
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42494
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22495 'src/third_party/lighttpd': {
496 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'),
497 'condition': 'checkout_mac or checkout_win',
498 },
499
500 'src/third_party/lss': {
501 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'),
502 'condition': 'checkout_android or checkout_linux',
503 },
504
Paweł Hajdan, Jr7af368952017-10-02 12:25:36505 'src/third_party/material_design_icons/src': {
506 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' +
507 '5ab428852e35dc177a8c37a2df9dc9ccf768c65a',
508 'condition': 'checkout_ios',
509 },
510
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42511 'src/third_party/mesa/src':
512 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7035ca882cc77f85793fef',
513
Paweł Hajdan, Jr7af368952017-10-02 12:25:36514 # GNU binutils assembler for x86-64.
515 'src/third_party/mingw-w64/mingw/bin': {
516 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527',
Dirk Pranke4dabe802017-11-02 07:18:55517 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36518 },
519
520 # Graphics buffer allocator for Chrome OS.
521 'src/third_party/minigbm/src': {
522 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '27a7e6a24709564e18c3382d0aeda0b40c7ae03b',
523 'condition': 'checkout_linux',
524 },
525
526 # Minizip library. Used on Chrome OS.
527 'src/third_party/minizip/src': {
Tatsuhisa Yamaguchi0c5fc82a2017-12-27 01:52:10528 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36529 'condition': 'checkout_linux',
530 },
531
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16532 'src/third_party/mockito/src': {
533 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850',
534 'condition': 'checkout_android',
535 },
536
Paweł Hajdan, Jr7af368952017-10-02 12:25:36537 # Binaries for nacl sdk.
538 'src/third_party/nacl_sdk_binaries': {
539 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5',
Dirk Pranke4dabe802017-11-02 07:18:55540 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36541 },
542
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16543 'src/third_party/netty-tcnative/src': {
544 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463',
545 'condition': 'checkout_android',
546 },
547
548 'src/third_party/netty4/src': {
549 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120',
550 'condition': 'checkout_android',
551 },
552
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42553 'src/third_party/openh264/src':
Tom Anderson308f0632018-01-15 23:16:11554 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '2e96d62426547ac4fb5cbcd122e5f6eb68d66ee6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16555
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42556 'src/third_party/openmax_dl':
557 Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16558
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42559 'src/third_party/pdfium':
560 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'),
561
Paweł Hajdan, Jr7af368952017-10-02 12:25:36562 # Parses Windows PE/COFF executable format.
563 'src/third_party/pefile': {
564 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1',
565 'condition': 'checkout_win',
566 },
567
Oystein Eftevaaga9439b922018-01-08 19:30:14568 'src/third_party/perfetto':
Oystein Eftevaag9ef31282018-01-23 00:57:50569 Var('android_git') + '/platform/external/perfetto.git' + '@' + '135841c8077f13f14c6b80e32d391da84d2ee131',
Oystein Eftevaaga9439b922018-01-08 19:30:14570
Paweł Hajdan, Jr7af368952017-10-02 12:25:36571 'src/third_party/perl': {
572 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78',
573 'condition': 'checkout_win',
574 },
575
576 # Dependency of chromite.git and skia.
577 'src/third_party/pyelftools': {
578 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae',
579 'condition': 'checkout_linux',
580 },
581
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42582 'src/third_party/pyftpdlib/src':
583 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45',
584
585 'src/third_party/pywebsocket/src':
586 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2',
587
588 'src/third_party/re2/src':
Max Moroz13bd9f722017-12-05 18:12:11589 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5185d85264d23cfae4b38e2703703e9a4c8e974c',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16590
591 'src/third_party/requests/src': {
592 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
593 'condition': 'checkout_android',
594 },
595
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42596 'src/third_party/robolectric/robolectric': {
John Budoricke7f2d1332017-11-30 23:35:22597 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16598 'condition': 'checkout_android',
599 },
600
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42601 'src/third_party/sfntly/src':
602 Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'),
603
604 'src/third_party/shaderc/src':
605 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4',
606
607 'src/third_party/skia':
608 Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'),
609
610 'src/third_party/smhasher/src':
611 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f',
612
613 'src/third_party/snappy/src':
614 Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'b02bfa754ebf27921d8da3bd2517eab445b84ff9',
615
616 'src/third_party/swiftshader':
617 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'),
618
619 'src/third_party/ub-uiautomator/lib': {
620 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16621 'condition': 'checkout_android',
622 },
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42623
624 'src/third_party/usrsctp/usrsctplib':
Sergey Ulanov8cabcdc2017-12-08 21:56:53625 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '0e076261b832121cf120ddc04aaff87ac3a34d30',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42626
627 'src/third_party/visualmetrics/src':
628 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6',
629
Paweł Hajdan, Jr7af368952017-10-02 12:25:36630 # Display server protocol for Linux.
631 'src/third_party/wayland/src': {
632 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25',
633 'condition': 'checkout_linux',
634 },
635
636 # Wayland protocols that add functionality not available in the core protocol.
637 'src/third_party/wayland-protocols/src': {
Alexandros Frantzisaed3360b2018-01-24 18:40:04638 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '4f789286e4ab7f6fecc2ccb895d79362a9b2382a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36639 'condition': 'checkout_linux',
640 },
641
642 # Wireless Display Software. Used on Chrome OS.
643 'src/third_party/wds/src': {
644 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5',
645 'condition': 'checkout_linux',
646 },
647
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42648 'src/third_party/webdriver/pylib':
649 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd',
650
651 'src/third_party/webgl/src':
Kenneth Russell258c3d0d2017-12-19 06:33:05652 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + 'd458ada06171a85af00367251a4ed55db7fe2018',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42653
654 'src/third_party/webrtc':
webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.coma5ad53262018-02-03 00:56:11655 Var('webrtc_git') + '/src.git' + '@' + '8eca1ff5107e274b7ac16cbb132f6b6f7c754597', # commit position 21742
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42656
Paweł Hajdan, Jr7af368952017-10-02 12:25:36657 'src/third_party/xdg-utils': {
658 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d',
659 'condition': 'checkout_linux',
660 },
661
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42662 'src/third_party/yasm/source/patched-yasm':
663 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc',
664
665 'src/tools/gyp':
666 Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
667
668 'src/tools/page_cycler/acid3':
669 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521',
670
671 'src/tools/swarming_client':
672 Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'),
673
674 'src/v8':
675 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'),
676
677 'src-internal': {
src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com5c7b94ab2018-02-01 20:06:09678 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@339865817c04461de02ddf3366a5f69f73f28371',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42679 'condition': 'checkout_src_internal',
680 },
[email protected]5f129de2009-02-24 23:22:04681}
682
[email protected]00c517672010-11-04 00:27:29683
[email protected]5f129de2009-02-24 23:22:04684include_rules = [
685 # Everybody can use some things.
John Abd-El-Malek5b6373f2015-04-01 19:44:14686 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these.
Stefan Zagerfd5ba192014-08-23 00:29:39687 '+base',
688 '+build',
689 '+ipc',
[email protected]5f129de2009-02-24 23:22:04690
[email protected]dfbff862012-11-28 19:08:14691 # Everybody can use headers generated by tools/generate_library_loader.
Stefan Zagerfd5ba192014-08-23 00:29:39692 '+library_loaders',
[email protected]dfbff862012-11-28 19:08:14693
Stefan Zagerfd5ba192014-08-23 00:29:39694 '+testing',
695 '+third_party/icu/source/common/unicode',
696 '+third_party/icu/source/i18n/unicode',
697 '+url',
[email protected]5f129de2009-02-24 23:22:04698]
699
700
701# checkdeps.py shouldn't check include paths for files in these dirs:
702skip_child_includes = [
Stefan Zagerfd5ba192014-08-23 00:29:39703 'native_client_sdk',
John Abd-El-Malek5b6373f2015-04-01 19:44:14704 'out',
Stefan Zagerfd5ba192014-08-23 00:29:39705 'skia',
706 'testing',
Mark Mentovaiebb9ddd62017-09-25 17:24:41707 'third_party/breakpad/breakpad',
Stefan Zagerfd5ba192014-08-23 00:29:39708 'v8',
709 'win8',
[email protected]5f129de2009-02-24 23:22:04710]
[email protected]bfa24b962009-03-02 00:16:16711
712
713hooks = [
714 {
[email protected]9372bec2014-08-14 14:03:30715 # This clobbers when necessary (based on get_landmines.py). It must be the
716 # first hook so that other things that get/generate into the output
717 # directory will not subsequently be clobbered.
Stefan Zagerfd5ba192014-08-23 00:29:39718 'name': 'landmines',
719 'pattern': '.',
720 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48721 'python',
Stefan Zagerfd5ba192014-08-23 00:29:39722 'src/build/landmines.py',
[email protected]9372bec2014-08-14 14:03:30723 ],
724 },
725 {
Dan Jacquescea92c512017-06-02 23:59:16726 # Ensure that the DEPS'd "depot_tools" has its self-update capability
727 # disabled.
728 'name': 'disable_depot_tools_selfupdate',
729 'pattern': '.',
730 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48731 'python',
Dan Jacquescea92c512017-06-02 23:59:16732 'src/third_party/depot_tools/update_depot_tools_toggle.py',
733 '--disable',
734 ],
735 },
736 {
jbudorick94a712c2016-03-09 19:03:52737 # Ensure that while generating dependencies lists in .gyp files we don't
738 # accidentally reference any .pyc files whose corresponding .py files have
739 # already been deleted.
740 # We should actually try to avoid generating .pyc files, crbug.com/500078.
741 'name': 'remove_stale_pyc_files',
742 'pattern': '.',
743 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48744 'python',
jbudorick94a712c2016-03-09 19:03:52745 'src/tools/remove_stale_pyc_files.py',
746 'src/android_webview/tools',
747 'src/build/android',
748 'src/gpu/gles2_conform_support',
749 'src/infra',
750 'src/ppapi',
751 'src/printing',
752 'src/third_party/catapult',
753 'src/third_party/closure_compiler/build',
qyearsleydfda207b2016-07-08 14:16:12754 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877.
jbudorick94a712c2016-03-09 19:03:52755 'src/tools',
756 ],
757 },
758 {
[email protected]89e43f652011-08-18 00:03:17759 # This downloads binaries for Native Client's newlib toolchain.
760 # Done in lieu of building the toolchain from scratch as it can take
761 # anywhere from 30 minutes to 4 hours depending on platform to build.
Stefan Zagerfd5ba192014-08-23 00:29:39762 'name': 'nacltools',
763 'pattern': '.',
Dirk Pranke4dabe802017-11-02 07:18:55764 'condition': 'checkout_nacl',
Stefan Zagerfd5ba192014-08-23 00:29:39765 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48766 'python',
dyen249880632014-11-20 23:02:20767 'src/build/download_nacl_toolchains.py',
ncbray474ab322015-01-05 22:04:22768 '--mode', 'nacl_core_sdk',
ncbray4453c50a2015-02-18 20:10:55769 'sync', '--extract',
[email protected]89e43f652011-08-18 00:03:17770 ],
771 },
[email protected]3a0b2492011-08-24 20:41:16772 {
sbc8208b4d2015-06-30 19:14:23773 # Downloads the current stable linux sysroot to build/linux/ if needed.
[email protected]01a98602013-06-12 20:33:54774 # This sysroot updates at about the same rate that the chrome build deps
775 # change. This script is a no-op except for linux users who are doing
sbc8208b4d2015-06-30 19:14:23776 # official chrome builds or cross compiling.
Stefan Zagerfd5ba192014-08-23 00:29:39777 'name': 'sysroot',
778 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:09779 'condition': 'checkout_linux',
Nodir Turakulovdd080902018-01-20 01:06:48780 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
sbc8208b4d2015-06-30 19:14:23781 '--running-as-hook'],
sbc41d0e082014-10-22 20:39:29782 },
783 {
Nico Weber76299302018-02-01 20:36:45784 # Case-insensitivity for the Win SDK. Must run before win_toolchain below.
785 'name': 'ciopfs_linux',
786 'pattern': '.',
787 'condition': 'checkout_win and host_os == "linux"',
788 'action': [ 'python',
789 'src/third_party/depot_tools/download_from_google_storage.py',
790 '--no_resume',
791 '--no_auth',
792 '--bucket', 'chromium-browser-clang/ciopfs',
793 '-s', 'src/build/ciopfs.sha1',
794 ]
795 },
796 {
Nico Weberb19437032017-10-09 02:45:09797 # Update the Windows toolchain if necessary. Must run before 'clang' below.
Stefan Zagerfd5ba192014-08-23 00:29:39798 'name': 'win_toolchain',
799 'pattern': '.',
Nico Webera13ad932017-10-12 18:52:40800 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:48801 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'],
[email protected]c71d3282014-04-09 01:56:20802 },
justincohen6a03a3d2016-03-26 21:44:38803 {
804 # Update the Mac toolchain if necessary.
805 'name': 'mac_toolchain',
806 'pattern': '.',
Rohit Rao92489af2017-10-12 21:45:48807 'condition': 'checkout_ios or checkout_mac',
Nodir Turakulov52cd53f2017-11-14 22:08:02808 'action': ['python', 'src/build/mac_toolchain.py'],
justincohen6a03a3d2016-03-26 21:44:38809 },
hansb2eae972015-05-19 00:53:12810 # Pull binutils for linux, enabled debug fission for faster linking /
811 # debugging when used with clang on Ubuntu Precise.
812 # https://code.google.com/p/chromium/issues/detail?id=352046
813 {
814 'name': 'binutils',
815 'pattern': 'src/third_party/binutils',
Nico Weberb19437032017-10-09 02:45:09816 'condition': 'host_os == "linux"',
hansb2eae972015-05-19 00:53:12817 'action': [
Nodir Turakulovfec77cd2017-11-14 18:22:32818 'python',
hansb2eae972015-05-19 00:53:12819 'src/third_party/binutils/download.py',
820 ],
821 },
[email protected]c71d3282014-04-09 01:56:20822 {
Hans Wennborg28fb41c2014-09-22 23:25:12823 # Note: On Win, this should run after win_toolchain, as it may use it.
824 'name': 'clang',
825 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48826 'action': ['python', 'src/tools/clang/scripts/update.py'],
Hans Wennborg28fb41c2014-09-22 23:25:12827 },
828 {
Nico Weber1df4a692017-10-16 21:36:30829 # Mac doesn't use lld so it's not included in the default clang bundle
830 # there. lld is however needed in win cross builds, so download it there.
831 # Should run after the clang hook.
832 'name': 'lld/mac',
833 'pattern': '.',
834 'condition': 'host_os == "mac" and checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:48835 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'],
Nico Weber1df4a692017-10-16 21:36:30836 },
837 {
phajdan.jr2448b2c2015-04-24 21:04:17838 # Update LASTCHANGE.
Stefan Zagerfd5ba192014-08-23 00:29:39839 'name': 'lastchange',
840 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48841 'action': ['python', 'src/build/util/lastchange.py',
Stefan Zagerfd5ba192014-08-23 00:29:39842 '-o', 'src/build/util/LASTCHANGE'],
[email protected]9046a112012-01-31 20:45:25843 },
844 {
Kai Ninomiya96bd9ef92017-10-20 21:30:37845 # Update GPU lists version string (for gpu/config).
846 'name': 'gpu_lists_version',
847 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48848 'action': ['python', 'src/build/util/lastchange.py',
Kai Ninomiya96bd9ef92017-10-20 21:30:37849 '-m', 'GPU_LISTS_VERSION',
850 '--revision-id-only',
851 '--header', 'src/gpu/config/gpu_lists_version.h'],
852 },
853 {
halcanary5cacab3a2016-07-29 19:23:20854 # Update skia_commit_hash.h.
855 'name': 'lastchange_skia',
856 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48857 'action': ['python', 'src/build/util/lastchange.py',
halcanary5cacab3a2016-07-29 19:23:20858 '-m', 'SKIA_COMMIT_HASH',
859 '-s', 'src/third_party/skia',
860 '--header', 'src/skia/ext/skia_commit_hash.h'],
861 },
[email protected]66968ba2014-03-18 20:27:54862 # Pull GN binaries. This needs to be before running GYP below.
863 {
Stefan Zagerfd5ba192014-08-23 00:29:39864 'name': 'gn_win',
865 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19866 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48867 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12868 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39869 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39870 '--no_auth',
871 '--bucket', 'chromium-gn',
872 '-s', 'src/buildtools/win/gn.exe.sha1',
[email protected]66968ba2014-03-18 20:27:54873 ],
874 },
875 {
Stefan Zagerfd5ba192014-08-23 00:29:39876 'name': 'gn_mac',
877 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19878 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48879 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12880 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39881 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39882 '--no_auth',
883 '--bucket', 'chromium-gn',
884 '-s', 'src/buildtools/mac/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19885 ],
886 },
887 {
Stefan Zagerfd5ba192014-08-23 00:29:39888 'name': 'gn_linux64',
889 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19890 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:48891 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12892 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39893 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39894 '--no_auth',
895 '--bucket', 'chromium-gn',
896 '-s', 'src/buildtools/linux64/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19897 ],
898 },
[email protected]6eabd702014-01-12 00:19:20899 # Pull clang-format binaries using checked-in hashes.
900 {
Stefan Zagerfd5ba192014-08-23 00:29:39901 'name': 'clang_format_win',
902 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19903 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48904 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12905 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39906 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39907 '--no_auth',
908 '--bucket', 'chromium-clang-format',
909 '-s', 'src/buildtools/win/clang-format.exe.sha1',
[email protected]6eabd702014-01-12 00:19:20910 ],
911 },
912 {
Stefan Zagerfd5ba192014-08-23 00:29:39913 'name': 'clang_format_mac',
914 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19915 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48916 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12917 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39918 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39919 '--no_auth',
920 '--bucket', 'chromium-clang-format',
921 '-s', 'src/buildtools/mac/clang-format.sha1',
[email protected]6eabd702014-01-12 00:19:20922 ],
923 },
924 {
Stefan Zagerfd5ba192014-08-23 00:29:39925 'name': 'clang_format_linux',
926 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19927 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:48928 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12929 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39930 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39931 '--no_auth',
932 '--bucket', 'chromium-clang-format',
933 '-s', 'src/buildtools/linux64/clang-format.sha1',
[email protected]6ec1d6fc2014-06-25 19:55:21934 ],
935 },
Nico Weber0c0ade82017-10-19 22:34:43936 # Pull rc binaries using checked-in hashes.
937 {
938 'name': 'rc_win',
939 'pattern': '.',
940 'condition': 'checkout_win and host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48941 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:43942 'src/third_party/depot_tools/download_from_google_storage.py',
943 '--no_resume',
944 '--no_auth',
945 '--bucket', 'chromium-browser-clang/rc',
946 '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1',
947 ],
948 },
949 {
950 'name': 'rc_mac',
951 'pattern': '.',
952 'condition': 'checkout_win and host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48953 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:43954 'src/third_party/depot_tools/download_from_google_storage.py',
955 '--no_resume',
956 '--no_auth',
957 '--bucket', 'chromium-browser-clang/rc',
958 '-s', 'src/build/toolchain/win/rc/mac/rc.sha1',
959 ],
960 },
961 {
962 'name': 'rc_linux',
963 'pattern': '.',
964 'condition': 'checkout_win and host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:48965 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:43966 'src/third_party/depot_tools/download_from_google_storage.py',
967 '--no_resume',
968 '--no_auth',
969 '--bucket', 'chromium-browser-clang/rc',
970 '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1',
Dominik Röttschesf49ef762017-11-17 09:26:31971 ]
972 },
Nico Weber76299302018-02-01 20:36:45973 {
Dominik Röttschesf49ef762017-11-17 09:26:31974 'name': 'content_shell_fonts',
975 'pattern': '.',
Dirk Prankec3df0e352017-12-16 16:29:34976 'condition': 'checkout_linux',
Dominik Röttschesf49ef762017-11-17 09:26:31977 'action': [ 'download_from_google_storage',
978 '--no_resume',
Dominik Röttschesf49ef762017-11-17 09:26:31979 '--extract',
980 '--no_auth',
981 '--bucket', 'chromium-fonts',
982 '-s', 'src/third_party/content_shell_fonts/content_shell_test_fonts.tar.gz.sha1',
Nico Weber0c0ade82017-10-19 22:34:43983 ],
984 },
Hans Wennborgfc1e2972017-06-12 18:42:26985 # Pull order files for the win/clang build.
986 {
987 'name': 'orderfiles_win',
988 'pattern': '.',
Paweł Hajdan, Jr004d8b32017-10-02 18:44:22989 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:48990 'action': [ 'python',
Hans Wennborgfc1e2972017-06-12 18:42:26991 'src/third_party/depot_tools/download_from_google_storage.py',
992 '--no_resume',
Hans Wennborgfc1e2972017-06-12 18:42:26993 '--no_auth',
994 '--bucket', 'chromium-browser-clang/orderfiles',
995 '-d', 'src/chrome/build',
996 ],
997 },
maruel4fbba012015-05-22 21:52:29998 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
999 {
1000 'name': 'luci-go_win',
1001 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191002 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481003 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121004 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291005 '--no_resume',
maruel4fbba012015-05-22 21:52:291006 '--no_auth',
1007 '--bucket', 'chromium-luci',
1008 '-d', 'src/tools/luci-go/win64',
1009 ],
1010 },
1011 {
1012 'name': 'luci-go_mac',
1013 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191014 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481015 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121016 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291017 '--no_resume',
maruel4fbba012015-05-22 21:52:291018 '--no_auth',
1019 '--bucket', 'chromium-luci',
1020 '-d', 'src/tools/luci-go/mac64',
1021 ],
1022 },
1023 {
1024 'name': 'luci-go_linux',
1025 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191026 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481027 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121028 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291029 '--no_resume',
maruel4fbba012015-05-22 21:52:291030 '--no_auth',
1031 '--bucket', 'chromium-luci',
1032 '-d', 'src/tools/luci-go/linux64',
1033 ],
1034 },
[email protected]f1d116b2014-06-13 18:07:261035 # Pull the Syzygy binaries, used for optimization and instrumentation.
1036 {
Stefan Zagerfd5ba192014-08-23 00:29:391037 'name': 'syzygy-binaries',
1038 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:091039 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481040 'action': ['python',
Stefan Zagerfd5ba192014-08-23 00:29:391041 'src/build/get_syzygy_binaries.py',
1042 '--output-dir=src/third_party/syzygy/binaries',
Sebastien Marchand75ac1cc2017-12-06 16:58:381043 '--revision=8164b24ebde9c5649c9a09e88a7fc0b0fcbd1bc5',
Stefan Zagerfd5ba192014-08-23 00:29:391044 '--overwrite',
sebmarchandaf7cc2f2016-10-04 18:22:251045 '--copy-dia-binaries',
[email protected]f1d116b2014-06-13 18:07:261046 ],
1047 },
erikwright9bdc2bf2015-01-22 20:20:041048 {
Stefan Zagerfd5ba192014-08-23 00:29:391049 'name': 'apache_win32',
1050 'pattern': '\\.sha1',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191051 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481052 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121053 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391054 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391055 '--directory',
1056 '--recursive',
1057 '--no_auth',
1058 '--num_threads=16',
1059 '--bucket', 'chromium-apache-win32',
1060 'src/third_party/apache-win32',
[email protected]2154052a2014-06-14 19:29:261061 ],
1062 },
1063 {
Dirk Pranke6c360be2017-10-09 19:06:591064 'name': 'msan_chained_origins',
1065 'pattern': '.',
1066 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481067 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591068 'src/third_party/depot_tools/download_from_google_storage.py',
1069 "--no_resume",
1070 "--no_auth",
1071 "--bucket", "chromium-instrumented-libraries",
1072 "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
1073 ],
1074 },
1075 {
1076 'name': 'msan_no_origins',
1077 'pattern': '.',
1078 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481079 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591080 'src/third_party/depot_tools/download_from_google_storage.py',
1081 "--no_resume",
1082 "--no_auth",
1083 "--bucket", "chromium-instrumented-libraries",
1084 "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
1085 ],
thomasandersonaa441f52017-04-04 22:35:391086 },
1087 {
bradnelson20c9a7312016-08-30 17:45:471088 "name": "wasm_fuzzer",
1089 "pattern": ".",
Nodir Turakulovdd080902018-01-20 01:06:481090 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121091 'src/third_party/depot_tools/download_from_google_storage.py',
bradnelson20c9a7312016-08-30 17:45:471092 "--no_resume",
1093 "--no_auth",
1094 "-u",
1095 "--bucket", "v8-wasm-fuzzer",
ahaasec987e5d2017-05-17 11:25:361096 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1",
bradnelson20c9a7312016-08-30 17:45:471097 ],
1098 },
dpapadcbee6ab2017-01-14 03:05:531099
1100 # Pull down Node binaries for WebUI toolchain.
1101 {
1102 'name': 'node_linux64',
1103 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191104 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481105 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121106 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531107 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531108 '--extract',
1109 '--no_auth',
dpapad40b00b452017-11-21 05:00:091110 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531111 '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1',
1112 ],
1113 },
1114 {
1115 'name': 'node_mac',
1116 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191117 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481118 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121119 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531120 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531121 '--extract',
1122 '--no_auth',
dpapad40b00b452017-11-21 05:00:091123 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531124 '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1',
1125 ],
1126 },
1127 {
1128 'name': 'node_win',
1129 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191130 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481131 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121132 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531133 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531134 '--no_auth',
dpapad40b00b452017-11-21 05:00:091135 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531136 '-s', 'src/third_party/node/win/node.exe.sha1',
1137 ],
1138 },
1139
1140 # Pull down NPM dependencies for WebUI toolchain.
1141 {
1142 'name': 'webui_node_modules',
1143 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481144 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121145 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531146 '--no_resume',
1147 '--extract',
1148 '--no_auth',
1149 '--bucket', 'chromium-nodejs',
1150 '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
1151 ],
1152 },
kainino61f7bce2017-04-28 21:53:271153
Dirk Prankec1d528fc02017-11-03 15:15:031154 # Download Telemetry's binary dependencies via conditionals
1155 {
1156 'name': 'checkout_telemetry_binary_dependencies',
1157 'condition': 'checkout_telemetry_dependencies',
1158 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271159 'action': [ 'vpython',
Dirk Prankec1d528fc02017-11-03 15:15:031160 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1161 ],
1162 },
Miguel Casasbbcf56ca2017-12-21 00:50:281163 #
Stephen Martinis924a02d2017-11-08 10:12:031164 # Download Telemetry's benchmark binary dependencies via conditionals
1165 {
1166 'name': 'checkout_telemetry_benchmark_deps',
1167 'condition': 'checkout_telemetry_dependencies',
1168 'pattern': '.',
Nodir Turakuloveea875a2018-01-22 23:52:521169 'action': [ 'vpython',
Stephen Martinis924a02d2017-11-08 10:12:031170 'src/tools/perf/fetch_benchmark_deps.py',
1171 '-f',
1172 ],
1173 },
Dirk Prankec1d528fc02017-11-03 15:15:031174
kainino61f7bce2017-04-28 21:53:271175 # Download Telemetry's binary dependencies
Dirk Prankec1d528fc02017-11-03 15:15:031176 # TODO(crbug.com/780967) - remove this once the bots are setting the
1177 # `checkout_telemetry_dependencies` condition.
kainino61f7bce2017-04-28 21:53:271178 {
1179 'name': 'fetch_telemetry_binary_dependencies',
1180 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271181 'action': [ 'vpython',
Dirk Pranke4c3098b2017-10-10 18:57:221182 'src/tools/perf/conditionally_execute',
1183 '--gyp-condition', 'fetch_telemetry_dependencies=1',
kainino61f7bce2017-04-28 21:53:271184 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1185 ],
1186 },
John Budorickda2bfbb2017-05-30 22:17:591187
Dirk Pranke099b747b2017-10-06 04:29:091188 # This is used to ensure that all network operations are properly
1189 # annotated so we can document what they're for.
1190 {
1191 'name': 'tools_traffic_annotation_linux',
1192 'pattern': '.',
1193 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481194 'action': [ 'python',
Dirk Pranke099b747b2017-10-06 04:29:091195 'src/third_party/depot_tools/download_from_google_storage.py',
1196 '--no_resume',
Dirk Pranke099b747b2017-10-06 04:29:091197 '--no_auth',
1198 '--num_threads=4',
1199 '--bucket', 'chromium-tools-traffic_annotation',
1200 '-d', 'src/tools/traffic_annotation/bin/linux64',
1201 ],
1202 },
1203
Ramin Halavatib7e55d92017-11-21 08:00:571204# This is used to ensure that all network operations are properly
1205# annotated so we can document what they're for.
1206 {
1207 'name': 'tools_traffic_annotation_windows',
1208 'pattern': '.',
Ramin Halavati4478d112018-02-01 06:33:521209 'condition': 'host_os == "win" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481210 'action': [ 'python',
Ramin Halavatib7e55d92017-11-21 08:00:571211 'src/third_party/depot_tools/download_from_google_storage.py',
1212 '--no_resume',
1213 '--no_auth',
1214 '--num_threads=4',
1215 '--bucket', 'chromium-tools-traffic_annotation',
1216 '-d', 'src/tools/traffic_annotation/bin/win32',
1217 ],
1218 },
1219
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401220 # Pull down Zucchini test data.
1221 {
1222 'name': 'zucchini_testdata',
1223 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481224 'action': [ 'python',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401225 'src/third_party/depot_tools/download_from_google_storage.py',
1226 '--no_resume',
1227 '--no_auth',
huangs3bad8e22017-09-05 21:50:001228 '--num_threads=4',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401229 '--bucket', 'chromium-binary-patching',
1230 '-d', 'src/chrome/installer/zucchini/testdata',
1231 ],
1232 },
1233
Paweł Hajdan, Jre7eed642017-10-02 16:46:561234 {
John Budorickb80cf482017-11-07 19:32:051235 'name': 'Android CIPD Ensure',
1236 'pattern': '.',
1237 'condition': 'checkout_android',
1238 'action': ['src/build/cipd/cipd_wrapper.py',
1239 '--chromium-root', 'src',
1240 '--ensure-file', 'src/build/cipd/android/android.ensure',
1241 ],
1242 },
1243 {
George Burgess IV1f751e42018-01-23 22:10:001244 'name': 'Fetch Android AFDO profile',
1245 'pattern': '.',
1246 'condition': 'checkout_android',
1247 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'],
1248 },
1249 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561250 # This downloads SDK extras and puts them in the
1251 # third_party/android_tools/sdk/extras directory.
1252 'name': 'sdkextras',
1253 'pattern': '.',
1254 'condition': 'checkout_android',
1255 # When adding a new sdk extras package to download, add the package
1256 # directory and zip file to .gitignore in third_party/android_tools.
Nodir Turakulovdd080902018-01-20 01:06:481257 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051258 'src/build/android/play_services/update.py',
1259 'download'
Paweł Hajdan, Jre7eed642017-10-02 16:46:561260 ],
1261 },
John Budorickbbdcc492017-10-09 18:57:091262 # Download checkstyle for use in PRESUBMIT for Java changes.
1263 {
1264 'name': 'checkstyle',
1265 'pattern': '.',
1266 # Must also be downloaded on linux for use on chromium_presubmit.
1267 'condition': 'checkout_android or checkout_linux',
Nodir Turakulovdd080902018-01-20 01:06:481268 'action': [ 'python',
John Budorickbbdcc492017-10-09 18:57:091269 'src/third_party/depot_tools/download_from_google_storage.py',
1270 '--no_resume',
1271 '--no_auth',
1272 '--bucket', 'chromium-android-tools/checkstyle',
1273 '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1'
1274 ],
1275 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561276 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561277 'name': 'gvr_static_shim_android_arm',
1278 'pattern': '\\.sha1',
1279 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481280 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271281 'src/third_party/depot_tools/download_from_google_storage.py',
1282 '--no_resume',
1283 '--no_auth',
1284 '--bucket', 'chromium-gvr-static-shim',
1285 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561286 ],
1287 },
1288 {
1289 'name': 'gvr_static_shim_android_arm64',
1290 'pattern': '\\.sha1',
1291 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481292 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271293 'src/third_party/depot_tools/download_from_google_storage.py',
1294 '--no_resume',
1295 '--no_auth',
1296 '--bucket', 'chromium-gvr-static-shim',
1297 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1',
thakis973bb2432017-05-24 15:27:141298 ],
Paweł Hajdan, Jre7eed642017-10-02 16:46:561299 },
1300 {
Tibor Goldschwendt21235c82018-01-08 23:00:021301 'name': 'vr_assets',
1302 'pattern': '.',
1303 'condition': 'checkout_src_internal',
Nodir Turakulovdd080902018-01-20 01:06:481304 'action': ['python',
Tibor Goldschwendt21235c82018-01-08 23:00:021305 'src/third_party/depot_tools/download_from_google_storage.py',
1306 '--bucket', 'chrome-vr-assets',
1307 '--recursive',
1308 '--directory',
1309 'src/chrome/browser/resources/vr/assets',
1310 ],
1311 },
1312 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561313 'name': 'vr_controller_test_api',
1314 'pattern': '\\.sha1',
1315 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481316 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271317 'src/third_party/depot_tools/download_from_google_storage.py',
1318 '--no_resume',
1319 '--no_auth',
1320 '--bucket', 'chromium-gvr-static-shim/controller_test_api',
1321 '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561322 ],
1323 },
1324 # Download VR test APKs only if the environment variable is set
1325 {
1326 'name': 'vr_test_apks',
1327 'pattern': '.',
1328 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481329 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051330 'src/third_party/gvr-android-sdk/test-apks/update.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561331 ],
1332 },
Bill Orr7cccdf572017-12-19 17:05:491333 # Download Oculus SDK if appropriate.
1334 {
1335 'name': 'libovr',
1336 'pattern': '.',
1337 'condition': 'checkout_oculus_sdk',
Nodir Turakulovdd080902018-01-20 01:06:481338 'action': ['python',
Bill Orr7cccdf572017-12-19 17:05:491339 'src/third_party/depot_tools/download_from_google_storage.py',
1340 '--bucket', 'chrome-oculus-sdk',
1341 '--recursive',
1342 '--num_threads=10',
1343 '--directory',
1344 'src/third_party/libovr/src',
1345 ],
1346 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561347 {
1348 # Pull doclava binaries if building for Android.
1349 'name': 'doclava',
1350 'pattern': '.',
1351 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481352 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051353 'src/build/android/download_doclava.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561354 ],
1355 },
1356
1357 {
1358 'name': 'fuchsia_sdk',
1359 'pattern': '.',
1360 'condition': 'checkout_fuchsia',
1361 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481362 'python',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561363 'src/build/fuchsia/update_sdk.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561364 ],
1365 },
Dan Jacques9731b23a2017-10-12 20:40:171366
1367 # Download and initialize "vpython" VirtualEnv environment packages.
1368 {
1369 'name': 'vpython_common',
1370 'pattern': '.',
1371 'action': [ 'vpython',
1372 '-vpython-spec', 'src/.vpython',
1373 '-vpython-tool', 'install',
1374 ],
1375 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561376]
scottmg4cd62bec2017-05-16 03:55:251377
jbudoricke6932bfd2016-09-07 02:09:221378recursedeps = [
bungeman1835f982016-09-28 18:33:221379 # buildtools provides clang_format, libc++, and libc++abi
1380 'src/buildtools',
jbudoricke6932bfd2016-09-07 02:09:221381 # android_tools manages the NDK.
1382 'src/third_party/android_tools',
1383 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1384 ("src/third_party/angle", "DEPS.chromium"),
Paweł Hajdan, Jr37a7a742017-09-25 11:37:301385 # src-internal has its own DEPS file to pull additional internal repos
1386 'src-internal',
jbudoricke6932bfd2016-09-07 02:09:221387]