blob: 3356cf78b7cf35807d6b7466fa0ad5d42a7a77db [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 = [
31 'checkout_nacl',
32]
33
[email protected]ed711942012-05-19 06:57:0634
[email protected]5f129de2009-02-24 23:22:0435vars = {
Dirk Prankef044b6b02017-10-05 22:02:0336 # By default, we should check out everything needed to run on the main
37 # chromium waterfalls. This var can be also be set to "small", in order
38 # to skip things are not strictly needed to build chromium for development
39 # purposes.
40 'checkout_configuration': 'default',
41
Dirk Pranke4dabe802017-11-02 07:18:5542 # Check out and download nacl by default. This can be disabled e.g. with
43 # custom_vars.
44 'checkout_nacl': True,
45
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3046 # By default, do not check out src-internal. This can be overridden e.g. with
47 # custom_vars.
Paweł Hajdan, Jr41d18fa2017-10-09 12:41:5748 'checkout_src_internal': False,
Paweł Hajdan, Jr37a7a742017-09-25 11:37:3049
Dirk Prankec1d528fc02017-11-03 15:15:0350 # Fetch the additional packages and files needed to run all of the
51 # telemetry tests. This is false by default as some stuff is only
52 # privately accessible.
53 'checkout_telemetry_dependencies': False,
54
Johanncf5bb4c62017-10-30 23:21:3455 # libaom provides support for AV1 but the bitstream is not frozen.
56 'checkout_libaom': False,
57
Dirk Pranke099b747b2017-10-06 04:29:0958 # TODO(dpranke): change to != "small" once != is supported.
Dirk Pranke5e953152017-10-10 16:26:4459 'checkout_traffic_annotation_tools': 'checkout_configuration == "default"',
Dirk Pranke4c3098b2017-10-10 18:57:2260 'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"',
Dirk Pranke5e953152017-10-10 16:26:4461
Johanncf5bb4c62017-10-30 23:21:3462 'aomedia_git': 'https://aomedia.googlesource.com',
Stefan Zagerfd5ba192014-08-23 00:29:3963 'chromium_git': 'https://chromium.googlesource.com',
dpranke4778c712016-09-23 01:15:5664 'swiftshader_git': 'https://swiftshader.googlesource.com',
65 'pdfium_git': 'https://pdfium.googlesource.com',
66 'boringssl_git': 'https://boringssl.googlesource.com',
agable851c6f7252016-11-04 17:17:3967 'skia_git': 'https://skia.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:0268 'webrtc_git': 'https://webrtc.googlesource.com',
thestig3e7d8e02015-09-28 23:54:4669 # Three lines of non-changing comments so that
thestig3e7d8e02015-09-28 23:54:4670 # the commit queue can handle CLs rolling sfntly
71 # and whatever else without interference from each other.
thestig930abad2017-04-18 02:44:3372 'sfntly_revision': '2439bd08ff93d4dce761dd6b825917938bd35a4f',
thestig3e7d8e02015-09-28 23:54:4673 # Three lines of non-changing comments so that
74 # the commit queue can handle CLs rolling Skia
75 # and whatever else without interference from each other.
[email protected]3838a5e62017-11-07 18:19:4276 'skia_revision': '63bc48d09323a62c8c67237fc66ad6ec7105e973',
[email protected]5eb3022e2011-11-23 16:42:2677 # Three lines of non-changing comments so that
sbce2d44aee2015-06-09 03:06:0478 # the commit queue can handle CLs rolling V8
79 # and whatever else without interference from each other.
v8-autorollb6206fd22017-11-08 08:05:5080 'v8_revision': 'cf5157c877822871c604a04028c33ce40f013284',
[email protected]20e0e752012-09-14 15:56:5281 # Three lines of non-changing comments so that
[email protected]10d8ac32013-10-31 13:34:3182 # the commit queue can handle CLs rolling swarming_client
[email protected]7f4fc412013-02-24 00:16:5183 # and whatever else without interference from each other.
Stephen Martinisa075eff2017-11-04 01:31:1384 'swarming_revision': '6fd3c7b6eb7c60f89e83f8ab1f93c133488f984e',
[email protected]d0982f92013-03-19 10:26:2085 # Three lines of non-changing comments so that
[email protected]62f231902014-03-11 10:19:2086 # the commit queue can handle CLs rolling ANGLE
87 # and whatever else without interference from each other.
[email protected]ef975032017-11-07 21:07:3488 'angle_revision': 'd80f2944cf130684ab0f3d7179572494180e80f4',
[email protected]f58d3292014-05-14 01:56:5489 # Three lines of non-changing comments so that
90 # the commit queue can handle CLs rolling build tools
91 # and whatever else without interference from each other.
Yuke Liao93dcd6c2017-11-08 01:01:1292 'buildtools_revision': '73ddd64be624a6f935f312a72d2da7f0ed70daa5',
dpranke7a694fe2015-08-18 05:11:2993 # Three lines of non-changing comments so that
capne3976c22016-08-12 22:06:1794 # the commit queue can handle CLs rolling SwiftShader
95 # and whatever else without interference from each other.
Nicolas Capensd6cfafe12017-10-31 21:40:3696 'swiftshader_revision': '3e2b10936c5304477fdadfa233671738008fe154',
capne3976c22016-08-12 22:06:1797 # Three lines of non-changing comments so that
dpranke7a694fe2015-08-18 05:11:2998 # the commit queue can handle CLs rolling PDFium
[email protected]d6a2e88f12014-05-19 19:27:0399 # and whatever else without interference from each other.
[email protected]d8acd8b2017-11-07 23:44:03100 'pdfium_revision': '58629a0e49e4ebfb0a0171a4203d2fab4af63165',
[email protected]99e1c5c2014-06-20 13:02:29101 # Three lines of non-changing comments so that
102 # the commit queue can handle CLs rolling openmax_dl
103 # and whatever else without interference from each other.
scottmgc460f9122016-11-19 01:50:26104 'openmax_dl_revision': '7acede9c039ea5d14cf326f44aad1245b9e674a7',
[email protected]7ee3af52014-07-06 18:16:47105 # Three lines of non-changing comments so that
106 # the commit queue can handle CLs rolling BoringSSL
107 # and whatever else without interference from each other.
David Benjamin7daefc32017-11-03 19:01:05108 'boringssl_revision': '6cc352e216938d78b65fb8ccbeebfc1f7f7486c4',
szager29407eb2014-08-26 13:09:31109 # Three lines of non-changing comments so that
szager29407eb2014-08-26 13:09:31110 # the commit queue can handle CLs rolling google-toolbox-for-mac
111 # and whatever else without interference from each other.
Mark Mentovai9ed143162017-07-24 19:04:47112 'google_toolbox_for_mac_revision': '3c3111d3aefe907c8c0f0e933029608d96ceefeb',
szager29407eb2014-08-26 13:09:31113 # Three lines of non-changing comments so that
114 # the commit queue can handle CLs rolling lighttpd
115 # and whatever else without interference from each other.
116 'lighttpd_revision': '9dfa55d15937a688a92cbf2b7a8621b0927d06eb',
117 # Three lines of non-changing comments so that
118 # the commit queue can handle CLs rolling lss
119 # and whatever else without interference from each other.
Torne (Richard Coles)9a6106e2017-10-20 17:48:17120 'lss_revision': 'e6527b0cd469e3ff5764785dadcb39bf7d787154',
mseaborn851e1bd12014-09-05 08:00:14121 # Three lines of non-changing comments so that
122 # the commit queue can handle CLs rolling NaCl
123 # and whatever else without interference from each other.
[email protected]280a28d82017-10-01 00:05:41124 'nacl_revision': '7f07816e463da403255f0ab4f6d88004450dd09d',
cwallezf2b03492015-08-25 15:08:18125 # Three lines of non-changing comments so that
drottfe896a82017-03-06 12:12:54126 # the commit queue can handle CLs rolling freetype
bcf53f862ea2016-02-02 05:08:42127 # and whatever else without interference from each other.
Ben Wagner9f7945c2017-11-07 19:09:42128 'freetype_revision': '8f5568bfc4fd5fe707f0e41915b57affc1bff0e3',
robertocn4567f4d2016-03-23 03:36:07129 # Three lines of non-changing comments so that
130 # the commit queue can handle CLs rolling catapult
131 # and whatever else without interference from each other.
[email protected]4ca99c32017-11-06 13:47:30132 'catapult_revision': 'af046c52f16840247004247b8063c61dcaef410b',
ochangcbd1cf202016-04-01 21:37:37133 # Three lines of non-changing comments so that
134 # the commit queue can handle CLs rolling libFuzzer
135 # and whatever else without interference from each other.
Max Moroz9575c0e2017-10-06 16:50:01136 'libfuzzer_revision': '06fb50cc1f0197398c8a70658928a3b91912e68a',
chenwilliam56a90382016-12-09 02:16:28137 # Three lines of non-changing comments so that
138 # the commit queue can handle CLs rolling devtools-node-modules
139 # and whatever else without interference from each other.
140 'devtools_node_modules_revision': '6226d6cd80aaf2e5295ed460cf73ef6a582e4d78',
kmarshall520f9512017-01-24 23:25:01141 # Three lines of non-changing comments so that
aizatsky8904f9c2017-03-03 19:50:05142 # the commit queue can handle CLs rolling libprotobuf-mutator
143 # and whatever else without interference from each other.
Jonathan Metzmana54e5af62017-11-01 19:29:06144 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051',
[email protected]5f129de2009-02-24 23:22:04145}
146
tandrii74b7e422014-09-23 16:45:27147# Only these hosts are allowed for dependencies in this DEPS file.
148# If you need to add a new host, contact chrome infrastracture team.
149allowed_hosts = [
tandriicb12c642015-03-27 19:00:55150 'android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:34151 'aomedia.googlesource.com',
agable851c6f7252016-11-04 17:17:39152 'boringssl.googlesource.com',
Paweł Hajdan, Jr37a7a742017-09-25 11:37:30153 'chrome-internal.googlesource.com',
agable851c6f7252016-11-04 17:17:39154 'chromium.googlesource.com',
155 'pdfium.googlesource.com',
156 'skia.googlesource.com',
capne3976c22016-08-12 22:06:17157 'swiftshader.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:02158 'webrtc.googlesource.com',
tandrii74b7e422014-09-23 16:45:27159]
160
[email protected]5f129de2009-02-24 23:22:04161deps = {
Stefan Zagerfd5ba192014-08-23 00:29:39162 'src/buildtools':
dpranke4778c712016-09-23 01:15:56163 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'),
[email protected]f58d3292014-05-14 01:56:54164
Paweł Hajdan, Jr7af368952017-10-02 12:25:36165 'src/chrome/installer/mac/third_party/xz/xz': {
166 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7',
167 'condition': 'checkout_mac',
168 },
169
Stefan Zagerfd5ba192014-08-23 00:29:39170 'src/chrome/test/data/perf/canvas_bench':
dpranke4778c712016-09-23 01:15:56171 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732',
[email protected]700e7e32012-02-22 17:04:38172
Stefan Zagerfd5ba192014-08-23 00:29:39173 'src/chrome/test/data/perf/frame_rate/content':
dpranke4778c712016-09-23 01:15:56174 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9',
[email protected]40646b012011-07-26 02:30:26175
bsheedy01d93942017-07-27 22:49:38176 'src/chrome/test/data/vr/webvr_info':
bsheedyac7c01a2017-11-07 18:53:12177 Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248',
bsheedy01d93942017-07-27 22:49:38178
Paweł Hajdan, Jr7af368952017-10-02 12:25:36179 'src/ios/third_party/earl_grey/src': {
Mike Baxleyc1441e72017-11-03 18:26:47180 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '2fd8a7d4b76f820fb95bce495c0ceb324dbe3edb',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36181 'condition': 'checkout_ios',
182 },
183
184 'src/ios/third_party/fishhook/src': {
185 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c',
186 'condition': 'checkout_ios',
187 },
188
189 'src/ios/third_party/gcdwebserver/src': {
190 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0',
191 'condition': 'checkout_ios',
192 },
193
194 'src/ios/third_party/material_components_ios/src': {
Gauthier Ambard7c6cfebfdc2017-11-07 10:36:06195 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '857c3016cdf4f765263af84f41f027f51091bbc8',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36196 'condition': 'checkout_ios',
197 },
198
199 'src/ios/third_party/material_font_disk_loader_ios/src': {
200 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '8e30188777b016182658fbaa0a4a020a48183224',
201 'condition': 'checkout_ios',
202 },
203
Gauthier Ambard8d034462017-10-25 16:39:55204 'src/ios/third_party/material_internationalization_ios/src': {
Gauthier Ambard7c6cfebfdc2017-11-07 10:36:06205 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '5b0f22e4715305ddc3a8810f5939be3f07cb7e3e',
Gauthier Ambard8d034462017-10-25 16:39:55206 'condition': 'checkout_ios',
207 },
208
Paweł Hajdan, Jr7af368952017-10-02 12:25:36209 'src/ios/third_party/material_roboto_font_loader_ios/src': {
210 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f',
211 'condition': 'checkout_ios',
212 },
213
214 'src/ios/third_party/material_sprited_animation_view_ios/src': {
215 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81',
216 'condition': 'checkout_ios',
217 },
218
219 'src/ios/third_party/material_text_accessibility_ios/src': {
220 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '7340b22cc589101ba0b11516afe4f3a733041951',
221 'condition': 'checkout_ios',
222 },
223
224 'src/ios/third_party/ochamcrest/src': {
Eric Noyaudaabeb52017-10-13 16:29:11225 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36226 'condition': 'checkout_ios',
227 },
228
jrummellf715b1692015-10-21 23:26:26229 'src/media/cdm/api':
Xiaohan Wanga14f781d2017-10-20 23:30:40230 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'ea5df8e78fbd0a4c24cc3a1f3faefefcd1b45237',
[email protected]255c43f2013-06-07 08:54:11231
Dirk Pranke4dabe802017-11-02 07:18:55232 'src/native_client': {
233 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'),
234 'condition': 'checkout_nacl',
235 },
[email protected]bba1c0dd2013-08-19 10:33:31236
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42237 'src/third_party/SPIRV-Tools/src':
238 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c',
jinsukkim21d3369fc2016-06-21 06:16:03239
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16240 'src/third_party/android_protobuf/src': {
241 'url': Var('chromium_git') + '/external/android_protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f',
242 'condition': 'checkout_android',
243 },
244
245 'src/third_party/android_tools': {
Peter Collingbournedce02272017-11-08 07:11:17246 'url': Var('chromium_git') + '/android_tools.git' + '@' + '4a9623af577555a8dab891c8789cc3dfe80addae',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16247 'condition': 'checkout_android',
248 },
249
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42250 'src/third_party/angle':
251 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
252
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16253 'src/third_party/apache-portable-runtime/src': {
254 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a8c4277e09a82eaa229e35246edea1ee0a6a1',
255 'condition': 'checkout_android',
256 },
257
Peter Wend0cc6d62017-11-02 16:32:30258 'src/third_party/auto/src': {
259 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '71802f2ae74dae2744abd999f8434e13055c4ee3',
260 'condition': 'checkout_android',
261 },
262
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42263 'src/third_party/bidichecker':
264 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0',
265
Paweł Hajdan, Jr7af368952017-10-02 12:25:36266 'src/third_party/bison': {
267 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3',
268 'condition': 'checkout_win',
269 },
270
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42271 'src/third_party/boringssl/src':
272 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
273
274 'src/third_party/breakpad/breakpad':
Peter Collingbourne3b69f0112017-11-07 18:34:41275 Var('chromium_git') + '/breakpad/breakpad.git' + '@' + '3bbf3fb0db6d751405b6fc30daba478445089e4d',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42276
277 'src/third_party/catapult':
278 Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
279
280 'src/third_party/ced/src':
281 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9',
282
Paweł Hajdan, Jr7af368952017-10-02 12:25:36283 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools.
284 'src/third_party/chromite': {
Steven Bennettsd8a8db82017-11-07 20:57:12285 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + 'ef632e4a473bfe196707200bc315293b59a121f7',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36286 'condition': 'checkout_linux',
287 },
288
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42289 'src/third_party/cld_2/src':
290 Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84b58a5d7690ebf05a91406f371ce00c3daf31c0',
291
292 'src/third_party/cld_3/src':
293 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + 'ae02d6b8a2af41e87c956c7c7d3f651a8b7b9e79',
294
295 'src/third_party/colorama/src':
296 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
297
298 'src/third_party/crc32c/src':
Victor Costanf05fce322017-10-02 20:25:24299 Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '0f771ed5ef83556451e1736f22b1a11054dc81c3',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42300
Paweł Hajdan, Jr7af368952017-10-02 12:25:36301 # For Linux and Chromium OS.
302 'src/third_party/cros_system_api': {
Lutz Justen4b1f0f82017-11-03 12:14:03303 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '5fc40ab72e45c14f5d98b3b2498224079b574ebb',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36304 'condition': 'checkout_linux',
305 },
306
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42307 'src/third_party/custom_tabs_client/src': {
308 'url': Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-client.git' + '@' + 'cff061038b852d647f7044d828a9df78aa135f38',
309 'condition': 'checkout_android',
310 },
311
312 'src/third_party/depot_tools':
[email protected]d4dfb5372017-11-08 06:24:39313 Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + 'c4ccb4b623c91fb2a38e365db5c307523c1ec05c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42314
Paweł Hajdan, Jr7af368952017-10-02 12:25:36315 # DevTools node modules. Used on Linux buildbots only.
316 'src/third_party/devtools-node-modules': {
317 'url': Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'),
318 'condition': 'checkout_linux',
319 },
320
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42321 'src/third_party/dom_distiller_js/dist':
Wei-Yin Chen (陳威尹)c47f4cf2017-10-16 19:22:27322 Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '7a530fc00184ee28e79a2b45270906cacaf00d3b',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42323
324 'src/third_party/elfutils/src': {
325 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7',
326 'condition': 'checkout_android',
327 },
328
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16329 'src/third_party/errorprone/lib': {
Peter Wenf22fda882017-10-23 14:50:12330 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '16b8b7298b183312a2fcac99fb1b594ccf7749d0',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16331 'condition': 'checkout_android',
332 },
333
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42334 'src/third_party/ffmpeg':
Dale Curtis9f572372017-11-03 04:55:26335 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'c33a5ee8e7b013b43e7fa9e0224857abc21564c2',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42336
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16337 'src/third_party/findbugs': {
338 'url': Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77ea0a194813d3065dd780c6e566',
339 'condition': 'checkout_android',
340 },
341
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42342 'src/third_party/flac':
343 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '7d0f5b3a173ffe98db08057d1f52b7787569e0a6',
344
345 'src/third_party/flatbuffers/src':
346 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290',
347
Paweł Hajdan, Jr7af368952017-10-02 12:25:36348 # Used for embedded builds. CrOS & Linux use the system version.
349 'src/third_party/fontconfig/src': {
350 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b749f9823c51827a60aeb5c1',
351 'condition': 'checkout_linux',
352 },
353
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42354 'src/third_party/freetype/src':
355 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'),
356
Paweł Hajdan, Jr7af368952017-10-02 12:25:36357 # Chrome OS touchpad gestures library.
358 'src/third_party/gestures/gestures': {
David Revemane25bd88e2017-10-02 21:06:05359 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36360 'condition': 'checkout_linux',
361 },
362
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42363 'src/third_party/glslang/src':
364 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + '210c6bf4d8119dc5f8ac21da2d4c87184f7015e0',
365
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22366 'src/third_party/google_toolbox_for_mac/src': {
367 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'),
368 'condition': 'checkout_ios or checkout_mac',
369 },
370
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42371 'src/third_party/googletest/src':
372 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '7f8fefabedf2965980585be8c2bff97458f28e0b',
373
Paweł Hajdan, Jr7af368952017-10-02 12:25:36374 # GNU binutils assembler for x86-32.
375 'src/third_party/gnu_binutils': {
376 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436',
Dirk Pranke4dabe802017-11-02 07:18:55377 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36378 },
379
380 'src/third_party/gperf': {
381 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1',
382 'condition': 'checkout_win',
383 },
384
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42385 'src/third_party/gvr-android-sdk/src': {
386 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + 'ee5cb1c6138d0be57e82ddafc1b54d7d3e3e5560',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16387 'condition': 'checkout_android',
388 },
389
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42390 'src/third_party/hunspell_dictionaries':
Chris Nardieea5de82017-10-14 22:21:31391 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42392
393 'src/third_party/icu':
Jungshik Shinbefb1662017-11-08 02:13:24394 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'b31896655a701874d13e70cc24bca95e3e66a991',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42395
396 'src/third_party/jsoncpp/source':
397 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248
398
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16399 'src/third_party/jsr-305/src': {
400 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
401 'condition': 'checkout_android',
402 },
403
404 'src/third_party/junit/src': {
405 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481',
406 'condition': 'checkout_android',
407 },
408
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42409 'src/third_party/leakcanary/src': {
410 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e',
411 'condition': 'checkout_android',
412 },
413
414 'src/third_party/leveldatabase/src':
Victor Costan7f1a6b12017-10-09 19:00:34415 Var('chromium_git') + '/external/leveldb.git' + '@' + 'ca216e493f32278f50a823811ab95f64cf0f839b',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42416
417 'src/third_party/libFuzzer/src':
Max Moroz1ee969e2017-10-04 16:27:26418 Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'),
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42419
420 'src/third_party/libaddressinput/src':
Parastoo Geranmayeha51e2142017-11-06 17:08:23421 Var('chromium_git') + '/external/libaddressinput.git' + '@' + '2a7c3d38915138189f4ac78e1188b58b2fbf5219',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42422
Johanncf5bb4c62017-10-30 23:21:34423 'src/third_party/libaom/source/libaom': {
Johann0b2692582017-11-01 15:38:06424 'url': Var('aomedia_git') + '/aom.git' + '@' + '7b06dd5dbf11ee1cd65b974a2e46ec33eab65375',
Johanncf5bb4c62017-10-30 23:21:34425 'condition': 'checkout_libaom',
426 },
427
Paweł Hajdan, Jr7af368952017-10-02 12:25:36428 # Userspace interface to kernel DRM services.
429 'src/third_party/libdrm/src': {
Kristian H. Kristensen03ecc6d2017-10-30 23:53:36430 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36431 'condition': 'checkout_linux',
432 },
433
434 # The libevdev library (Chrome OS version).
435 'src/third_party/libevdev/src': {
436 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744',
437 'condition': 'checkout_linux',
438 },
439
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42440 'src/third_party/libjpeg_turbo':
441 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd',
442
Paweł Hajdan, Jr7af368952017-10-02 12:25:36443 'src/third_party/liblouis/src': {
444 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2',
445 'condition': 'checkout_linux',
446 },
447
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42448 'src/third_party/libphonenumber/dist':
449 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4',
450
451 'src/third_party/libprotobuf-mutator/src':
452 Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'),
453
454 'src/third_party/libsrtp':
455 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '1d45b8e599dc2db6ea3ae22dbc94a8c504652423',
456
Paweł Hajdan, Jr7af368952017-10-02 12:25:36457 # Android Explicit Synchronization.
458 'src/third_party/libsync/src': {
459 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'aa6cda6f638bd57d3a024f0d201f723a5c3bb875',
460 'condition': 'checkout_linux',
461 },
462
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42463 'src/third_party/libvpx/source/libvpx':
Jerome Jianga1664ce2017-11-01 20:32:47464 Var('chromium_git') + '/webm/libvpx.git' + '@' + '3ba9a2c8b2341430b001ed531f1eedf7c9b0384f',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42465
466 'src/third_party/libwebm/source':
467 Var('chromium_git') + '/webm/libwebm.git' + '@' + '4956b2dec65352af32dc71bab553acb631c64177',
468
469 'src/third_party/libyuv':
Frank Barchard8ff6acb2017-10-20 21:49:29470 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '8fa02df3c0591754958a50cc2896aafae319f3bc', # from r1675
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42471
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22472 'src/third_party/lighttpd': {
473 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'),
474 'condition': 'checkout_mac or checkout_win',
475 },
476
477 'src/third_party/lss': {
478 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'),
479 'condition': 'checkout_android or checkout_linux',
480 },
481
Paweł Hajdan, Jr7af368952017-10-02 12:25:36482 'src/third_party/material_design_icons/src': {
483 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' +
484 '5ab428852e35dc177a8c37a2df9dc9ccf768c65a',
485 'condition': 'checkout_ios',
486 },
487
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42488 'src/third_party/mesa/src':
489 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7035ca882cc77f85793fef',
490
Paweł Hajdan, Jr7af368952017-10-02 12:25:36491 # GNU binutils assembler for x86-64.
492 'src/third_party/mingw-w64/mingw/bin': {
493 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527',
Dirk Pranke4dabe802017-11-02 07:18:55494 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36495 },
496
497 # Graphics buffer allocator for Chrome OS.
498 'src/third_party/minigbm/src': {
499 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '27a7e6a24709564e18c3382d0aeda0b40c7ae03b',
500 'condition': 'checkout_linux',
501 },
502
503 # Minizip library. Used on Chrome OS.
504 'src/third_party/minizip/src': {
505 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + 'e07e141475220196b55294c8172b274cc32d642d',
506 'condition': 'checkout_linux',
507 },
508
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16509 'src/third_party/mockito/src': {
510 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850',
511 'condition': 'checkout_android',
512 },
513
Paweł Hajdan, Jr7af368952017-10-02 12:25:36514 # Binaries for nacl sdk.
515 'src/third_party/nacl_sdk_binaries': {
516 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5',
Dirk Pranke4dabe802017-11-02 07:18:55517 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36518 },
519
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16520 'src/third_party/netty-tcnative/src': {
521 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463',
522 'condition': 'checkout_android',
523 },
524
525 'src/third_party/netty4/src': {
526 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120',
527 'condition': 'checkout_android',
528 },
529
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42530 'src/third_party/openh264/src':
531 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + 'a180c9d4d6f1a4830ca9eed9d159d54996bd63cb',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16532
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42533 'src/third_party/openmax_dl':
534 Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16535
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42536 'src/third_party/pdfium':
537 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'),
538
Paweł Hajdan, Jr7af368952017-10-02 12:25:36539 # Parses Windows PE/COFF executable format.
540 'src/third_party/pefile': {
541 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1',
542 'condition': 'checkout_win',
543 },
544
545 'src/third_party/perl': {
546 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78',
547 'condition': 'checkout_win',
548 },
549
550 # Dependency of chromite.git and skia.
551 'src/third_party/pyelftools': {
552 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae',
553 'condition': 'checkout_linux',
554 },
555
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42556 'src/third_party/pyftpdlib/src':
557 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45',
558
559 'src/third_party/pywebsocket/src':
560 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2',
561
562 'src/third_party/re2/src':
Max Moroz19d4ff32017-10-13 20:18:05563 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '4be7a14432ff0a2ed88fd884fd76a63f0a3a6127',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16564
565 'src/third_party/requests/src': {
566 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
567 'condition': 'checkout_android',
568 },
569
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42570 'src/third_party/robolectric/robolectric': {
571 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + 'b02c65cc6d7465f58f0de48a39914aa905692afa',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16572 'condition': 'checkout_android',
573 },
574
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42575 'src/third_party/sfntly/src':
576 Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'),
577
578 'src/third_party/shaderc/src':
579 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4',
580
581 'src/third_party/skia':
582 Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'),
583
584 'src/third_party/smhasher/src':
585 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f',
586
587 'src/third_party/snappy/src':
588 Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'b02bfa754ebf27921d8da3bd2517eab445b84ff9',
589
590 'src/third_party/swiftshader':
591 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'),
592
593 'src/third_party/ub-uiautomator/lib': {
594 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16595 'condition': 'checkout_android',
596 },
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42597
598 'src/third_party/usrsctp/usrsctplib':
599 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + 'f4819e1b177f7bfdd761c147f5a649b9f1a78c06',
600
601 'src/third_party/visualmetrics/src':
602 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6',
603
Paweł Hajdan, Jr7af368952017-10-02 12:25:36604 # Display server protocol for Linux.
605 'src/third_party/wayland/src': {
606 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25',
607 'condition': 'checkout_linux',
608 },
609
610 # Wayland protocols that add functionality not available in the core protocol.
611 'src/third_party/wayland-protocols/src': {
612 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '26c99346ab5f2273fe5581bc4f6397bbb834f747',
613 'condition': 'checkout_linux',
614 },
615
616 # Wireless Display Software. Used on Chrome OS.
617 'src/third_party/wds/src': {
618 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5',
619 'condition': 'checkout_linux',
620 },
621
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42622 'src/third_party/webdriver/pylib':
623 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd',
624
625 'src/third_party/webgl/src':
626 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '34842fa3c36988840c89f5bc6a68503175acf7d9',
627
628 'src/third_party/webrtc':
[email protected]1560e952017-11-08 02:38:33629 Var('webrtc_git') + '/src.git' + '@' + '5c24c67fd2632cfdcd73562aa0831c44ee535427', # commit position 20528
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42630
Paweł Hajdan, Jr7af368952017-10-02 12:25:36631 'src/third_party/xdg-utils': {
632 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d',
633 'condition': 'checkout_linux',
634 },
635
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42636 'src/third_party/yasm/source/patched-yasm':
637 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc',
638
639 'src/tools/gyp':
640 Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
641
642 'src/tools/page_cycler/acid3':
643 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521',
644
645 'src/tools/swarming_client':
646 Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'),
647
648 'src/v8':
649 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'),
650
651 'src-internal': {
[email protected]212b11f2017-11-08 00:30:42652 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@28ccedb58718adda0813585b1ef5d4be6d3cb807',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42653 'condition': 'checkout_src_internal',
654 },
[email protected]5f129de2009-02-24 23:22:04655}
656
[email protected]00c517672010-11-04 00:27:29657
[email protected]5f129de2009-02-24 23:22:04658include_rules = [
659 # Everybody can use some things.
John Abd-El-Malek5b6373f2015-04-01 19:44:14660 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these.
Stefan Zagerfd5ba192014-08-23 00:29:39661 '+base',
662 '+build',
663 '+ipc',
[email protected]5f129de2009-02-24 23:22:04664
[email protected]dfbff862012-11-28 19:08:14665 # Everybody can use headers generated by tools/generate_library_loader.
Stefan Zagerfd5ba192014-08-23 00:29:39666 '+library_loaders',
[email protected]dfbff862012-11-28 19:08:14667
Stefan Zagerfd5ba192014-08-23 00:29:39668 '+testing',
669 '+third_party/icu/source/common/unicode',
670 '+third_party/icu/source/i18n/unicode',
671 '+url',
[email protected]5f129de2009-02-24 23:22:04672]
673
674
675# checkdeps.py shouldn't check include paths for files in these dirs:
676skip_child_includes = [
Stefan Zagerfd5ba192014-08-23 00:29:39677 'native_client_sdk',
John Abd-El-Malek5b6373f2015-04-01 19:44:14678 'out',
Stefan Zagerfd5ba192014-08-23 00:29:39679 'skia',
680 'testing',
Mark Mentovaiebb9ddd62017-09-25 17:24:41681 'third_party/breakpad/breakpad',
Stefan Zagerfd5ba192014-08-23 00:29:39682 'v8',
683 'win8',
[email protected]5f129de2009-02-24 23:22:04684]
[email protected]bfa24b962009-03-02 00:16:16685
686
687hooks = [
688 {
[email protected]9372bec2014-08-14 14:03:30689 # This clobbers when necessary (based on get_landmines.py). It must be the
690 # first hook so that other things that get/generate into the output
691 # directory will not subsequently be clobbered.
Stefan Zagerfd5ba192014-08-23 00:29:39692 'name': 'landmines',
693 'pattern': '.',
694 'action': [
695 'python',
696 'src/build/landmines.py',
[email protected]9372bec2014-08-14 14:03:30697 ],
698 },
699 {
Dan Jacquescea92c512017-06-02 23:59:16700 # Ensure that the DEPS'd "depot_tools" has its self-update capability
701 # disabled.
702 'name': 'disable_depot_tools_selfupdate',
703 'pattern': '.',
704 'action': [
705 'python',
706 'src/third_party/depot_tools/update_depot_tools_toggle.py',
707 '--disable',
708 ],
709 },
710 {
jbudorick94a712c2016-03-09 19:03:52711 # Ensure that while generating dependencies lists in .gyp files we don't
712 # accidentally reference any .pyc files whose corresponding .py files have
713 # already been deleted.
714 # We should actually try to avoid generating .pyc files, crbug.com/500078.
715 'name': 'remove_stale_pyc_files',
716 'pattern': '.',
717 'action': [
718 'python',
719 'src/tools/remove_stale_pyc_files.py',
720 'src/android_webview/tools',
721 'src/build/android',
722 'src/gpu/gles2_conform_support',
723 'src/infra',
724 'src/ppapi',
725 'src/printing',
726 'src/third_party/catapult',
727 'src/third_party/closure_compiler/build',
qyearsleydfda207b2016-07-08 14:16:12728 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877.
jbudorick94a712c2016-03-09 19:03:52729 'src/tools',
730 ],
731 },
732 {
[email protected]89e43f652011-08-18 00:03:17733 # This downloads binaries for Native Client's newlib toolchain.
734 # Done in lieu of building the toolchain from scratch as it can take
735 # anywhere from 30 minutes to 4 hours depending on platform to build.
Stefan Zagerfd5ba192014-08-23 00:29:39736 'name': 'nacltools',
737 'pattern': '.',
Dirk Pranke4dabe802017-11-02 07:18:55738 'condition': 'checkout_nacl',
Stefan Zagerfd5ba192014-08-23 00:29:39739 'action': [
dyen249880632014-11-20 23:02:20740 'python',
741 'src/build/download_nacl_toolchains.py',
ncbray474ab322015-01-05 22:04:22742 '--mode', 'nacl_core_sdk',
ncbray4453c50a2015-02-18 20:10:55743 'sync', '--extract',
[email protected]89e43f652011-08-18 00:03:17744 ],
745 },
[email protected]3a0b2492011-08-24 20:41:16746 {
sbc8208b4d2015-06-30 19:14:23747 # Downloads the current stable linux sysroot to build/linux/ if needed.
[email protected]01a98602013-06-12 20:33:54748 # This sysroot updates at about the same rate that the chrome build deps
749 # change. This script is a no-op except for linux users who are doing
sbc8208b4d2015-06-30 19:14:23750 # official chrome builds or cross compiling.
Stefan Zagerfd5ba192014-08-23 00:29:39751 'name': 'sysroot',
752 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:09753 'condition': 'checkout_linux',
sbc8208b4d2015-06-30 19:14:23754 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
755 '--running-as-hook'],
sbc41d0e082014-10-22 20:39:29756 },
757 {
Nico Weberb19437032017-10-09 02:45:09758 # Update the Windows toolchain if necessary. Must run before 'clang' below.
Stefan Zagerfd5ba192014-08-23 00:29:39759 'name': 'win_toolchain',
760 'pattern': '.',
Nico Webera13ad932017-10-12 18:52:40761 'condition': 'checkout_win',
762 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'],
[email protected]c71d3282014-04-09 01:56:20763 },
justincohen6a03a3d2016-03-26 21:44:38764 {
765 # Update the Mac toolchain if necessary.
766 'name': 'mac_toolchain',
767 'pattern': '.',
Rohit Rao92489af2017-10-12 21:45:48768 'condition': 'checkout_ios or checkout_mac',
justincohen6a03a3d2016-03-26 21:44:38769 'action': ['python', 'src/build/mac_toolchain.py'],
770 },
hansb2eae972015-05-19 00:53:12771 # Pull binutils for linux, enabled debug fission for faster linking /
772 # debugging when used with clang on Ubuntu Precise.
773 # https://code.google.com/p/chromium/issues/detail?id=352046
774 {
775 'name': 'binutils',
776 'pattern': 'src/third_party/binutils',
Nico Weberb19437032017-10-09 02:45:09777 'condition': 'host_os == "linux"',
hansb2eae972015-05-19 00:53:12778 'action': [
779 'python',
780 'src/third_party/binutils/download.py',
781 ],
782 },
[email protected]c71d3282014-04-09 01:56:20783 {
Hans Wennborg28fb41c2014-09-22 23:25:12784 # Note: On Win, this should run after win_toolchain, as it may use it.
785 'name': 'clang',
786 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:09787 'action': ['python', 'src/tools/clang/scripts/update.py'],
Hans Wennborg28fb41c2014-09-22 23:25:12788 },
789 {
Nico Weber1df4a692017-10-16 21:36:30790 # Mac doesn't use lld so it's not included in the default clang bundle
791 # there. lld is however needed in win cross builds, so download it there.
792 # Should run after the clang hook.
793 'name': 'lld/mac',
794 'pattern': '.',
795 'condition': 'host_os == "mac" and checkout_win',
796 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'],
797 },
798 {
phajdan.jr2448b2c2015-04-24 21:04:17799 # Update LASTCHANGE.
Stefan Zagerfd5ba192014-08-23 00:29:39800 'name': 'lastchange',
801 'pattern': '.',
802 'action': ['python', 'src/build/util/lastchange.py',
803 '-o', 'src/build/util/LASTCHANGE'],
[email protected]9046a112012-01-31 20:45:25804 },
805 {
Kai Ninomiya96bd9ef92017-10-20 21:30:37806 # Update GPU lists version string (for gpu/config).
807 'name': 'gpu_lists_version',
808 'pattern': '.',
809 'action': ['python', 'src/build/util/lastchange.py',
810 '-m', 'GPU_LISTS_VERSION',
811 '--revision-id-only',
812 '--header', 'src/gpu/config/gpu_lists_version.h'],
813 },
814 {
halcanary5cacab3a2016-07-29 19:23:20815 # Update skia_commit_hash.h.
816 'name': 'lastchange_skia',
817 'pattern': '.',
818 'action': ['python', 'src/build/util/lastchange.py',
819 '-m', 'SKIA_COMMIT_HASH',
820 '-s', 'src/third_party/skia',
821 '--header', 'src/skia/ext/skia_commit_hash.h'],
822 },
[email protected]66968ba2014-03-18 20:27:54823 # Pull GN binaries. This needs to be before running GYP below.
824 {
Stefan Zagerfd5ba192014-08-23 00:29:39825 'name': 'gn_win',
826 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19827 'condition': 'host_os == "win"',
Dan Jacquesda2309d2017-06-08 21:48:12828 'action': [ 'python',
829 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39830 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39831 '--no_auth',
832 '--bucket', 'chromium-gn',
833 '-s', 'src/buildtools/win/gn.exe.sha1',
[email protected]66968ba2014-03-18 20:27:54834 ],
835 },
836 {
Stefan Zagerfd5ba192014-08-23 00:29:39837 'name': 'gn_mac',
838 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19839 'condition': 'host_os == "mac"',
Dan Jacquesda2309d2017-06-08 21:48:12840 'action': [ 'python',
841 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39842 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39843 '--no_auth',
844 '--bucket', 'chromium-gn',
845 '-s', 'src/buildtools/mac/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19846 ],
847 },
848 {
Stefan Zagerfd5ba192014-08-23 00:29:39849 'name': 'gn_linux64',
850 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19851 'condition': 'host_os == "linux"',
Dan Jacquesda2309d2017-06-08 21:48:12852 'action': [ 'python',
853 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39854 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39855 '--no_auth',
856 '--bucket', 'chromium-gn',
857 '-s', 'src/buildtools/linux64/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19858 ],
859 },
[email protected]6eabd702014-01-12 00:19:20860 # Pull clang-format binaries using checked-in hashes.
861 {
Stefan Zagerfd5ba192014-08-23 00:29:39862 'name': 'clang_format_win',
863 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19864 'condition': 'host_os == "win"',
Dan Jacquesda2309d2017-06-08 21:48:12865 'action': [ 'python',
866 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39867 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39868 '--no_auth',
869 '--bucket', 'chromium-clang-format',
870 '-s', 'src/buildtools/win/clang-format.exe.sha1',
[email protected]6eabd702014-01-12 00:19:20871 ],
872 },
873 {
Stefan Zagerfd5ba192014-08-23 00:29:39874 'name': 'clang_format_mac',
875 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19876 'condition': 'host_os == "mac"',
Dan Jacquesda2309d2017-06-08 21:48:12877 'action': [ 'python',
878 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39879 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39880 '--no_auth',
881 '--bucket', 'chromium-clang-format',
882 '-s', 'src/buildtools/mac/clang-format.sha1',
[email protected]6eabd702014-01-12 00:19:20883 ],
884 },
885 {
Stefan Zagerfd5ba192014-08-23 00:29:39886 'name': 'clang_format_linux',
887 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19888 'condition': 'host_os == "linux"',
Dan Jacquesda2309d2017-06-08 21:48:12889 'action': [ 'python',
890 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39891 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39892 '--no_auth',
893 '--bucket', 'chromium-clang-format',
894 '-s', 'src/buildtools/linux64/clang-format.sha1',
[email protected]6ec1d6fc2014-06-25 19:55:21895 ],
896 },
Nico Weber0c0ade82017-10-19 22:34:43897 # Pull rc binaries using checked-in hashes.
898 {
899 'name': 'rc_win',
900 'pattern': '.',
901 'condition': 'checkout_win and host_os == "win"',
902 'action': [ 'python',
903 'src/third_party/depot_tools/download_from_google_storage.py',
904 '--no_resume',
905 '--no_auth',
906 '--bucket', 'chromium-browser-clang/rc',
907 '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1',
908 ],
909 },
910 {
911 'name': 'rc_mac',
912 'pattern': '.',
913 'condition': 'checkout_win and host_os == "mac"',
914 'action': [ 'python',
915 'src/third_party/depot_tools/download_from_google_storage.py',
916 '--no_resume',
917 '--no_auth',
918 '--bucket', 'chromium-browser-clang/rc',
919 '-s', 'src/build/toolchain/win/rc/mac/rc.sha1',
920 ],
921 },
922 {
923 'name': 'rc_linux',
924 'pattern': '.',
925 'condition': 'checkout_win and host_os == "linux"',
926 'action': [ 'python',
927 'src/third_party/depot_tools/download_from_google_storage.py',
928 '--no_resume',
929 '--no_auth',
930 '--bucket', 'chromium-browser-clang/rc',
931 '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1',
932 ],
933 },
Hans Wennborgfc1e2972017-06-12 18:42:26934 # Pull order files for the win/clang build.
935 {
936 'name': 'orderfiles_win',
937 'pattern': '.',
Paweł Hajdan, Jr004d8b32017-10-02 18:44:22938 'condition': 'checkout_win',
Hans Wennborgfc1e2972017-06-12 18:42:26939 'action': [ 'python',
940 'src/third_party/depot_tools/download_from_google_storage.py',
941 '--no_resume',
Hans Wennborgfc1e2972017-06-12 18:42:26942 '--no_auth',
943 '--bucket', 'chromium-browser-clang/orderfiles',
944 '-d', 'src/chrome/build',
945 ],
946 },
maruel4fbba012015-05-22 21:52:29947 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
948 {
949 'name': 'luci-go_win',
950 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19951 'condition': 'host_os == "win"',
Dan Jacquesda2309d2017-06-08 21:48:12952 'action': [ 'python',
953 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:29954 '--no_resume',
maruel4fbba012015-05-22 21:52:29955 '--no_auth',
956 '--bucket', 'chromium-luci',
957 '-d', 'src/tools/luci-go/win64',
958 ],
959 },
960 {
961 'name': 'luci-go_mac',
962 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19963 'condition': 'host_os == "mac"',
Dan Jacquesda2309d2017-06-08 21:48:12964 'action': [ 'python',
965 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:29966 '--no_resume',
maruel4fbba012015-05-22 21:52:29967 '--no_auth',
968 '--bucket', 'chromium-luci',
969 '-d', 'src/tools/luci-go/mac64',
970 ],
971 },
972 {
973 'name': 'luci-go_linux',
974 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19975 'condition': 'host_os == "linux"',
Dan Jacquesda2309d2017-06-08 21:48:12976 'action': [ 'python',
977 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:29978 '--no_resume',
maruel4fbba012015-05-22 21:52:29979 '--no_auth',
980 '--bucket', 'chromium-luci',
981 '-d', 'src/tools/luci-go/linux64',
982 ],
983 },
[email protected]f1d116b2014-06-13 18:07:26984 # Pull the Syzygy binaries, used for optimization and instrumentation.
985 {
Stefan Zagerfd5ba192014-08-23 00:29:39986 'name': 'syzygy-binaries',
987 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:09988 'condition': 'host_os == "win"',
Stefan Zagerfd5ba192014-08-23 00:29:39989 'action': ['python',
990 'src/build/get_syzygy_binaries.py',
991 '--output-dir=src/third_party/syzygy/binaries',
Sebastien Marchand0881de72017-07-19 23:45:07992 '--revision=190dbfe74c6f5b5913820fa66d9176877924d7c5',
Stefan Zagerfd5ba192014-08-23 00:29:39993 '--overwrite',
sebmarchandaf7cc2f2016-10-04 18:22:25994 '--copy-dia-binaries',
[email protected]f1d116b2014-06-13 18:07:26995 ],
996 },
erikwright9bdc2bf2015-01-22 20:20:04997 {
Stefan Zagerfd5ba192014-08-23 00:29:39998 'name': 'apache_win32',
999 'pattern': '\\.sha1',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191000 'condition': 'host_os == "win"',
Dan Jacquesda2309d2017-06-08 21:48:121001 'action': [ 'python',
1002 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391003 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391004 '--directory',
1005 '--recursive',
1006 '--no_auth',
1007 '--num_threads=16',
1008 '--bucket', 'chromium-apache-win32',
1009 'src/third_party/apache-win32',
[email protected]2154052a2014-06-14 19:29:261010 ],
1011 },
1012 {
Dirk Pranke6c360be2017-10-09 19:06:591013 'name': 'msan_chained_origins',
1014 'pattern': '.',
1015 'condition': 'checkout_instrumented_libraries',
1016 'action': [ 'python',
1017 'src/third_party/depot_tools/download_from_google_storage.py',
1018 "--no_resume",
1019 "--no_auth",
1020 "--bucket", "chromium-instrumented-libraries",
1021 "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
1022 ],
1023 },
1024 {
1025 'name': 'msan_no_origins',
1026 'pattern': '.',
1027 'condition': 'checkout_instrumented_libraries',
1028 'action': [ 'python',
1029 'src/third_party/depot_tools/download_from_google_storage.py',
1030 "--no_resume",
1031 "--no_auth",
1032 "--bucket", "chromium-instrumented-libraries",
1033 "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
1034 ],
thomasandersonaa441f52017-04-04 22:35:391035 },
1036 {
bradnelson20c9a7312016-08-30 17:45:471037 "name": "wasm_fuzzer",
1038 "pattern": ".",
Dan Jacquesda2309d2017-06-08 21:48:121039 'action': [ 'python',
1040 'src/third_party/depot_tools/download_from_google_storage.py',
bradnelson20c9a7312016-08-30 17:45:471041 "--no_resume",
1042 "--no_auth",
1043 "-u",
1044 "--bucket", "v8-wasm-fuzzer",
ahaasec987e5d2017-05-17 11:25:361045 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1",
bradnelson20c9a7312016-08-30 17:45:471046 ],
1047 },
1048 {
chenwilliam56a90382016-12-09 02:16:281049 'name': 'devtools_install_node',
1050 'action': [ 'python',
1051 'src/third_party/WebKit/Source/devtools/scripts/local_node/node.py',
1052 '--running-as-hook',
1053 '--version',
1054 ],
1055 },
dpapadcbee6ab2017-01-14 03:05:531056
1057 # Pull down Node binaries for WebUI toolchain.
1058 {
1059 'name': 'node_linux64',
1060 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191061 'condition': 'host_os == "linux"',
Dan Jacquesda2309d2017-06-08 21:48:121062 'action': [ 'python',
1063 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531064 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531065 '--extract',
1066 '--no_auth',
1067 '--bucket', 'chromium-nodejs/6.9.4',
1068 '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1',
1069 ],
1070 },
1071 {
1072 'name': 'node_mac',
1073 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191074 'condition': 'host_os == "mac"',
Dan Jacquesda2309d2017-06-08 21:48:121075 'action': [ 'python',
1076 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531077 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531078 '--extract',
1079 '--no_auth',
1080 '--bucket', 'chromium-nodejs/6.9.4',
1081 '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1',
1082 ],
1083 },
1084 {
1085 'name': 'node_win',
1086 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191087 'condition': 'host_os == "win"',
Dan Jacquesda2309d2017-06-08 21:48:121088 'action': [ 'python',
1089 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531090 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531091 '--no_auth',
1092 '--bucket', 'chromium-nodejs/6.9.4',
1093 '-s', 'src/third_party/node/win/node.exe.sha1',
1094 ],
1095 },
1096
1097 # Pull down NPM dependencies for WebUI toolchain.
1098 {
1099 'name': 'webui_node_modules',
1100 'pattern': '.',
Dan Jacquesda2309d2017-06-08 21:48:121101 'action': [ 'python',
1102 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531103 '--no_resume',
1104 '--extract',
1105 '--no_auth',
1106 '--bucket', 'chromium-nodejs',
1107 '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
1108 ],
1109 },
kainino61f7bce2017-04-28 21:53:271110
Dirk Prankec1d528fc02017-11-03 15:15:031111 # Download Telemetry's binary dependencies via conditionals
1112 {
1113 'name': 'checkout_telemetry_binary_dependencies',
1114 'condition': 'checkout_telemetry_dependencies',
1115 'pattern': '.',
1116 'action': [ 'python',
1117 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1118 ],
1119 },
Stephen Martinis924a02d2017-11-08 10:12:031120 #
1121 # Download Telemetry's benchmark binary dependencies via conditionals
1122 {
1123 'name': 'checkout_telemetry_benchmark_deps',
1124 'condition': 'checkout_telemetry_dependencies',
1125 'pattern': '.',
1126 'action': [ 'python',
1127 'src/tools/perf/fetch_benchmark_deps.py',
1128 '-f',
1129 ],
1130 },
Dirk Prankec1d528fc02017-11-03 15:15:031131
kainino61f7bce2017-04-28 21:53:271132 # Download Telemetry's binary dependencies
Dirk Prankec1d528fc02017-11-03 15:15:031133 # TODO(crbug.com/780967) - remove this once the bots are setting the
1134 # `checkout_telemetry_dependencies` condition.
kainino61f7bce2017-04-28 21:53:271135 {
1136 'name': 'fetch_telemetry_binary_dependencies',
1137 'pattern': '.',
1138 'action': [ 'python',
Dirk Pranke4c3098b2017-10-10 18:57:221139 'src/tools/perf/conditionally_execute',
1140 '--gyp-condition', 'fetch_telemetry_dependencies=1',
kainino61f7bce2017-04-28 21:53:271141 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1142 ],
1143 },
John Budorickda2bfbb2017-05-30 22:17:591144
Dirk Pranke099b747b2017-10-06 04:29:091145 # This is used to ensure that all network operations are properly
1146 # annotated so we can document what they're for.
1147 {
1148 'name': 'tools_traffic_annotation_linux',
1149 'pattern': '.',
1150 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools',
1151 'action': [ 'python',
1152 'src/third_party/depot_tools/download_from_google_storage.py',
1153 '--no_resume',
Dirk Pranke099b747b2017-10-06 04:29:091154 '--no_auth',
1155 '--num_threads=4',
1156 '--bucket', 'chromium-tools-traffic_annotation',
1157 '-d', 'src/tools/traffic_annotation/bin/linux64',
1158 ],
1159 },
1160
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401161 # Pull down Zucchini test data.
1162 {
1163 'name': 'zucchini_testdata',
1164 'pattern': '.',
1165 'action': [ 'python',
1166 'src/third_party/depot_tools/download_from_google_storage.py',
1167 '--no_resume',
1168 '--no_auth',
huangs3bad8e22017-09-05 21:50:001169 '--num_threads=4',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401170 '--bucket', 'chromium-binary-patching',
1171 '-d', 'src/chrome/installer/zucchini/testdata',
1172 ],
1173 },
1174
Paweł Hajdan, Jre7eed642017-10-02 16:46:561175 {
John Budorickb80cf482017-11-07 19:32:051176 'name': 'Android CIPD Ensure',
1177 'pattern': '.',
1178 'condition': 'checkout_android',
1179 'action': ['src/build/cipd/cipd_wrapper.py',
1180 '--chromium-root', 'src',
1181 '--ensure-file', 'src/build/cipd/android/android.ensure',
1182 ],
1183 },
1184 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561185 # This downloads SDK extras and puts them in the
1186 # third_party/android_tools/sdk/extras directory.
1187 'name': 'sdkextras',
1188 'pattern': '.',
1189 'condition': 'checkout_android',
1190 # When adding a new sdk extras package to download, add the package
1191 # directory and zip file to .gitignore in third_party/android_tools.
John Budorickb80cf482017-11-07 19:32:051192 'action': [ 'python',
1193 'src/build/android/play_services/update.py',
1194 'download'
Paweł Hajdan, Jre7eed642017-10-02 16:46:561195 ],
1196 },
John Budorickbbdcc492017-10-09 18:57:091197 # Download checkstyle for use in PRESUBMIT for Java changes.
1198 {
1199 'name': 'checkstyle',
1200 'pattern': '.',
1201 # Must also be downloaded on linux for use on chromium_presubmit.
1202 'condition': 'checkout_android or checkout_linux',
1203 'action': [ 'python',
1204 'src/third_party/depot_tools/download_from_google_storage.py',
1205 '--no_resume',
1206 '--no_auth',
1207 '--bucket', 'chromium-android-tools/checkstyle',
1208 '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1'
1209 ],
1210 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561211 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561212 'name': 'gvr_static_shim_android_arm',
1213 'pattern': '\\.sha1',
1214 'condition': 'checkout_android',
Benoit L0a47fd182017-08-16 10:03:261215 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121216 'src/third_party/depot_tools/download_from_google_storage.py',
thakis973bb2432017-05-24 15:27:141217 '--no_resume',
thakis973bb2432017-05-24 15:27:141218 '--no_auth',
1219 '--bucket', 'chromium-gvr-static-shim',
1220 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561221 ],
1222 },
1223 {
1224 'name': 'gvr_static_shim_android_arm64',
1225 'pattern': '\\.sha1',
1226 'condition': 'checkout_android',
Benoit L0a47fd182017-08-16 10:03:261227 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121228 'src/third_party/depot_tools/download_from_google_storage.py',
thakis973bb2432017-05-24 15:27:141229 '--no_resume',
thakis973bb2432017-05-24 15:27:141230 '--no_auth',
1231 '--bucket', 'chromium-gvr-static-shim',
1232 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1',
1233 ],
Paweł Hajdan, Jre7eed642017-10-02 16:46:561234 },
1235 {
1236 'name': 'vr_controller_test_api',
1237 'pattern': '\\.sha1',
1238 'condition': 'checkout_android',
Benoit L0a47fd182017-08-16 10:03:261239 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121240 'src/third_party/depot_tools/download_from_google_storage.py',
thakis973bb2432017-05-24 15:27:141241 '--no_resume',
thakis973bb2432017-05-24 15:27:141242 '--no_auth',
1243 '--bucket', 'chromium-gvr-static-shim/controller_test_api',
1244 '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561245 ],
1246 },
1247 # Download VR test APKs only if the environment variable is set
1248 {
1249 'name': 'vr_test_apks',
1250 'pattern': '.',
1251 'condition': 'checkout_android',
1252 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051253 'src/third_party/gvr-android-sdk/test-apks/update.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561254 ],
1255 },
1256 {
1257 # Pull doclava binaries if building for Android.
1258 'name': 'doclava',
1259 'pattern': '.',
1260 'condition': 'checkout_android',
John Budorickb80cf482017-11-07 19:32:051261 'action': [ 'python',
1262 'src/build/android/download_doclava.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561263 ],
1264 },
1265
1266 {
1267 'name': 'fuchsia_sdk',
1268 'pattern': '.',
1269 'condition': 'checkout_fuchsia',
1270 'action': [
1271 'python',
1272 'src/build/fuchsia/update_sdk.py',
Scott Graham2ec42232017-11-01 06:22:491273 'ff6b8e980b4e5b0c898341e8a467b9c751857e5d',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561274 ],
1275 },
Dan Jacques9731b23a2017-10-12 20:40:171276
1277 # Download and initialize "vpython" VirtualEnv environment packages.
1278 {
1279 'name': 'vpython_common',
1280 'pattern': '.',
1281 'action': [ 'vpython',
1282 '-vpython-spec', 'src/.vpython',
1283 '-vpython-tool', 'install',
1284 ],
1285 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561286]
scottmg4cd62bec2017-05-16 03:55:251287
jbudoricke6932bfd2016-09-07 02:09:221288recursedeps = [
bungeman1835f982016-09-28 18:33:221289 # buildtools provides clang_format, libc++, and libc++abi
1290 'src/buildtools',
jbudoricke6932bfd2016-09-07 02:09:221291 # android_tools manages the NDK.
1292 'src/third_party/android_tools',
1293 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1294 ("src/third_party/angle", "DEPS.chromium"),
Paweł Hajdan, Jr37a7a742017-09-25 11:37:301295 # src-internal has its own DEPS file to pull additional internal repos
1296 'src-internal',
jbudoricke6932bfd2016-09-07 02:09:221297]