blob: 4fb76e35e0cda31b81e2bbcf2eaff7ac430ebc49 [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.
Alexander Alekseevf76b1c02018-02-16 04:03:1461 'checkout_oculus_sdk' : 'checkout_src_internal and checkout_win',
Bill Orr7cccdf572017-12-19 17:05:4962
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 Zhange1830342018-02-22 03:47:0278 'sfntly_revision': '2804148152d27fa2e6ec97a32bc2d56318e51142',
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.com23b4a6e2018-03-23 08:03:2482 'skia_revision': 'b2ec726e3776d4f441d11c1c1c5443f32f36f32c',
[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-autorollee523ce52018-03-23 15:08:0086 'v8_revision': '7eb272edf2db89cc18bbc2e2fd7773558eb46246',
[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.comf9b4d042018-03-23 16:22:2494 'angle_revision': '49cef9a5218143d4d34d5c5efd159f870eea4ef6',
[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.
Dirk Prankea3f4f212018-03-20 02:49:1798 'buildtools_revision': '3748a2a90871fc25b0455790fa5a6699553f5197',
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 Hetu0eb74af2018-03-21 18:35:02102 'swiftshader_revision': 'b04881b856b90984a54c9d370f2d5e04d6383cc1',
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.com94c3416d2018-03-23 16:17:25106 'pdfium_revision': '3ae75c2f2e5759fcf8218e59fa380c26b98aa6b6',
[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.
Nico Weber014e076d2018-02-23 21:39:09110 'openmax_dl_revision': '63d8cf4708c94c9c8931c389ce333954541a96f2',
[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.
Adam Langleyb55ca2352018-03-07 23:50:20114 'boringssl_revision': 'a6bfc45b6286e358ba83f7daa769e1e9012cc7bb',
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.com9d644352018-03-16 02:57:29130 'nacl_revision': '303fc9961cb4231aa9828218362914ee4e51d16a',
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.
Dominik Röttschese611939e2018-02-19 09:50:21134 'freetype_revision': '713d68ee9f47cc8df56e47fa2f54b191bb8c3186',
robertocn4567f4d2016-03-23 03:36:07135 # Three lines of non-changing comments so that
Dominik Röttsches60dab7e12018-03-20 09:55:47136 # the commit queue can handle CLs rolling HarfBuzz
137 # and whatever else without interference from each other.
138 'harfbuzz_revision': '957e7756634a4fdf1654041e20e883cf964ecac9',
139 # Three lines of non-changing comments so that
robertocn4567f4d2016-03-23 03:36:07140 # the commit queue can handle CLs rolling catapult
141 # and whatever else without interference from each other.
catapult-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com6aea1cac2018-03-23 14:48:06142 'catapult_revision': 'c4e9b13328182a8f4f4be01089215a89f72f02cd',
ochangcbd1cf202016-04-01 21:37:37143 # Three lines of non-changing comments so that
144 # the commit queue can handle CLs rolling libFuzzer
145 # and whatever else without interference from each other.
Jonathan Metzmana86dd472017-12-15 20:43:39146 'libfuzzer_revision': 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f',
chenwilliam56a90382016-12-09 02:16:28147 # Three lines of non-changing comments so that
148 # the commit queue can handle CLs rolling devtools-node-modules
149 # and whatever else without interference from each other.
Will Chenfa874182018-01-03 19:03:26150 'devtools_node_modules_revision': '5f7cd2497d7a643125c3b6eb910d99ba28be6899',
kmarshall520f9512017-01-24 23:25:01151 # Three lines of non-changing comments so that
aizatsky8904f9c2017-03-03 19:50:05152 # the commit queue can handle CLs rolling libprotobuf-mutator
153 # and whatever else without interference from each other.
Jonathan Metzmana54e5af62017-11-01 19:29:06154 'libprotobuf-mutator': '3fc43a01d721ef1bacfefed170bc22abf1b8b051',
Filip Gorski796be852018-03-02 19:36:36155 # Three lines of non-changing comments so that
156 # the commit queue can handle CLs rolling feed
157 # and whatever else without interference from each other.
Filip Gorski4ef855942018-03-22 01:23:56158 'feed_revision': 'e52c1e023ddd8c192050cf23f71f7437cbe31409',
[email protected]5f129de2009-02-24 23:22:04159}
160
tandrii74b7e422014-09-23 16:45:27161# Only these hosts are allowed for dependencies in this DEPS file.
162# If you need to add a new host, contact chrome infrastracture team.
163allowed_hosts = [
tandriicb12c642015-03-27 19:00:55164 'android.googlesource.com',
Johanncf5bb4c62017-10-30 23:21:34165 'aomedia.googlesource.com',
agable851c6f7252016-11-04 17:17:39166 'boringssl.googlesource.com',
Achuith Bhandarkarf6a944c82018-02-22 21:56:04167 'chrome-infra-packages.appspot.com',
Paweł Hajdan, Jr37a7a742017-09-25 11:37:30168 'chrome-internal.googlesource.com',
agable851c6f7252016-11-04 17:17:39169 'chromium.googlesource.com',
170 'pdfium.googlesource.com',
171 'skia.googlesource.com',
capne3976c22016-08-12 22:06:17172 'swiftshader.googlesource.com',
Henrik Kjellander7c0b28b2017-09-13 20:25:02173 'webrtc.googlesource.com',
tandrii74b7e422014-09-23 16:45:27174]
175
[email protected]5f129de2009-02-24 23:22:04176deps = {
John Williamsff7a08d2018-02-01 03:20:21177 'src/chrome/browser/resources/media_router/extension/src':
mark a. foltzf942c512018-03-19 20:20:41178 Var('chromium_git') + '/media_router.git' + '@' + '50d927e720309777a39fdf1ca89fd096bb51e103',
John Williamsff7a08d2018-02-01 03:20:21179
Stefan Zagerfd5ba192014-08-23 00:29:39180 'src/buildtools':
dpranke4778c712016-09-23 01:15:56181 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_revision'),
[email protected]f58d3292014-05-14 01:56:54182
Paweł Hajdan, Jr7af368952017-10-02 12:25:36183 'src/chrome/installer/mac/third_party/xz/xz': {
184 'url': Var('chromium_git') + '/chromium/deps/xz.git' + '@' + 'eecaf55632ca72e90eb2641376bce7cdbc7284f7',
185 'condition': 'checkout_mac',
186 },
187
Stefan Zagerfd5ba192014-08-23 00:29:39188 'src/chrome/test/data/perf/canvas_bench':
dpranke4778c712016-09-23 01:15:56189 Var('chromium_git') + '/chromium/canvas_bench.git' + '@' + 'a7b40ea5ae0239517d78845a5fc9b12976bfc732',
[email protected]700e7e32012-02-22 17:04:38190
Stefan Zagerfd5ba192014-08-23 00:29:39191 'src/chrome/test/data/perf/frame_rate/content':
dpranke4778c712016-09-23 01:15:56192 Var('chromium_git') + '/chromium/frame_rate/content.git' + '@' + 'c10272c88463efeef6bb19c9ec07c42bc8fe22b9',
[email protected]40646b012011-07-26 02:30:26193
bsheedy01d93942017-07-27 22:49:38194 'src/chrome/test/data/vr/webvr_info':
bsheedyac7c01a2017-11-07 18:53:12195 Var('chromium_git') + '/external/github.com/toji/webvr.info.git' + '@' + 'c58ae99b9ff9e2aa4c524633519570bf33536248',
bsheedy01d93942017-07-27 22:49:38196
Paweł Hajdan, Jr7af368952017-10-02 12:25:36197 'src/ios/third_party/earl_grey/src': {
Mike Baxleyc1441e72017-11-03 18:26:47198 'url': Var('chromium_git') + '/external/github.com/google/EarlGrey.git' + '@' + '2fd8a7d4b76f820fb95bce495c0ceb324dbe3edb',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36199 'condition': 'checkout_ios',
200 },
201
202 'src/ios/third_party/fishhook/src': {
203 'url': Var('chromium_git') + '/external/github.com/facebook/fishhook.git' + '@' + 'd172d5247aa590c25d0b1885448bae76036ea22c',
204 'condition': 'checkout_ios',
205 },
206
207 'src/ios/third_party/gcdwebserver/src': {
208 'url': Var('chromium_git') + '/external/github.com/swisspol/GCDWebServer.git' + '@' + '43555c66627f6ed44817855a0f6d465f559d30e0',
209 'condition': 'checkout_ios',
210 },
211
212 'src/ios/third_party/material_components_ios/src': {
Olivier Robinf1a59cc2018-03-21 17:31:57213 'url': Var('chromium_git') + '/external/github.com/material-components/material-components-ios.git' + '@' + '3ac6d0ff2ac59613b12f3278a2ca36f43692ad8c',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36214 'condition': 'checkout_ios',
215 },
216
217 'src/ios/third_party/material_font_disk_loader_ios/src': {
iOS Autorollered4c9f72017-12-21 15:01:19218 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-font-disk-loader-ios.git' + '@' + '8e30188777b016182658fbaa0a4a020a48183224',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36219 'condition': 'checkout_ios',
220 },
221
Gauthier Ambard8d034462017-10-25 16:39:55222 'src/ios/third_party/material_internationalization_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13223 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-internationalization-ios.git' + '@' + '8f28a55c7f35b95a587bba01a8467ea470647873',
Gauthier Ambard8d034462017-10-25 16:39:55224 'condition': 'checkout_ios',
225 },
226
Paweł Hajdan, Jr7af368952017-10-02 12:25:36227 'src/ios/third_party/material_roboto_font_loader_ios/src': {
228 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-roboto-font-loader-ios.git' + '@' + '4aa51e906e5671c71d24e991f1f10d782a58409f',
229 'condition': 'checkout_ios',
230 },
231
232 'src/ios/third_party/material_sprited_animation_view_ios/src': {
233 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-sprited-animation-view-ios.git' + '@' + 'c6e16d06bdafd95540c62b3402d9414692fbca81',
234 'condition': 'checkout_ios',
235 },
236
237 'src/ios/third_party/material_text_accessibility_ios/src': {
Louis Romero2c7e321c2017-12-21 10:38:13238 'url': Var('chromium_git') + '/external/github.com/material-foundation/material-text-accessibility-ios.git' + '@' + '92c9e56f4e07622084b3d931247db974fec55dde',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36239 'condition': 'checkout_ios',
240 },
241
mrefaat070940d2017-12-01 02:59:38242 'src/ios/third_party/motion_interchange_objc/src': {
Louis Romero2c7e321c2017-12-21 10:38:13243 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-interchange-objc.git' + '@' + '9be1e8572f8debb8dd9033ce9bd6ae56dc7ae1ab',
mrefaat070940d2017-12-01 02:59:38244 'condition': 'checkout_ios',
245 },
246
mrefaatb4b862312017-12-01 20:03:05247 'src/ios/third_party/motion_animator_objc/src': {
iOS Autorollere82ca942018-03-06 20:32:21248 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-animator-objc.git' + '@' + '5df831026445004b2fc0f6a42f8b8f33af46512b',
mrefaatb4b862312017-12-01 20:03:05249 'condition': 'checkout_ios',
250 },
251
Louis Romeroe1d73292017-12-07 01:28:17252 'src/ios/third_party/motion_transitioning_objc/src': {
253 'url': Var('chromium_git') + '/external/github.com/material-motion/motion-transitioning-objc.git' + '@' + '994fd02d1de3d80ed284f0c1a4b5f459b8b051a6',
254 'condition': 'checkout_ios',
255 },
256
Paweł Hajdan, Jr7af368952017-10-02 12:25:36257 'src/ios/third_party/ochamcrest/src': {
Eric Noyaudaabeb52017-10-13 16:29:11258 'url': Var('chromium_git') + '/external/github.com/hamcrest/OCHamcrest.git' + '@' + '92d9c14d13bb864255e65c09383564653896916b',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36259 'condition': 'checkout_ios',
260 },
261
jrummellf715b1692015-10-21 23:26:26262 'src/media/cdm/api':
John Rummell52d66212018-03-05 23:41:55263 Var('chromium_git') + '/chromium/cdm.git' + '@' + 'cc347b850c11ea791837d5c70b12421fd77a3731',
[email protected]255c43f2013-06-07 08:54:11264
Dirk Pranke4dabe802017-11-02 07:18:55265 'src/native_client': {
266 'url': Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nacl_revision'),
267 'condition': 'checkout_nacl',
268 },
[email protected]bba1c0dd2013-08-19 10:33:31269
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42270 'src/third_party/SPIRV-Tools/src':
271 Var('chromium_git') + '/external/github.com/KhronosGroup/SPIRV-Tools.git' + '@' + '9166854ac93ef81b026e943ccd230fed6c8b8d3c',
jinsukkim21d3369fc2016-06-21 06:16:03272
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16273 'src/third_party/android_protobuf/src': {
Aaron Gable6fcf0062018-02-22 20:28:57274 'url': Var('android_git') + '/platform/external/protobuf.git' + '@' + '7fca48d8ce97f7ba3ab8eea5c472f1ad3711762f',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16275 'condition': 'checkout_android',
276 },
277
Shenghua Zhang0c102b12018-01-11 00:25:57278 'src/third_party/android_ndk': {
Peter Collingbournee3d421f2018-03-05 05:11:38279 'url': Var('chromium_git') + '/android_ndk.git' + '@' + '635bc380968a76f6948fee65f80a0b28db53ae81',
Shenghua Zhang0c102b12018-01-11 00:25:57280 'condition': 'checkout_android',
281 },
282
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16283 'src/third_party/android_tools': {
Peter Wen17a03d62018-03-05 17:54:33284 'url': Var('chromium_git') + '/android_tools.git' + '@' + 'c22a664c39af72dd8f89200220713dcad811300a',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16285 'condition': 'checkout_android',
286 },
287
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42288 'src/third_party/angle':
289 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'),
290
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16291 'src/third_party/apache-portable-runtime/src': {
bsheedy2a59f252018-01-03 21:30:05292 'url': Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c3f11fcd86b42922834cae91103cf068246c6bb6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16293 'condition': 'checkout_android',
294 },
295
Peter Wend0cc6d62017-11-02 16:32:30296 'src/third_party/auto/src': {
Peter Wen46893982018-01-18 16:53:46297 'url': Var('chromium_git') + '/external/github.com/google/auto.git' + '@' + '8a81a858ae7b78a1aef71ac3905fade0bbd64e82',
Peter Wend0cc6d62017-11-02 16:32:30298 'condition': 'checkout_android',
299 },
300
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42301 'src/third_party/bidichecker':
302 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c28c57eca56992235c79850fa9e0',
303
Paweł Hajdan, Jr7af368952017-10-02 12:25:36304 'src/third_party/bison': {
305 'url': Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affdd5464ee2b224c2df649c6e26c3',
306 'condition': 'checkout_win',
307 },
308
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42309 'src/third_party/boringssl/src':
310 Var('boringssl_git') + '/boringssl.git' + '@' + Var('boringssl_revision'),
311
312 'src/third_party/breakpad/breakpad':
Nico Webera0a05a82018-02-01 01:29:01313 Var('chromium_git') + '/breakpad/breakpad.git' + '@' + 'ac4a549e29fbc8fe58212380e41fa24f36e6c3ec',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42314
315 'src/third_party/catapult':
316 Var('chromium_git') + '/catapult.git' + '@' + Var('catapult_revision'),
317
318 'src/third_party/ced/src':
319 Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@' + '94c367a1fe3a13207f4b22604fcfd1d9f9ddf6d9',
320
Paweł Hajdan, Jr7af368952017-10-02 12:25:36321 # Build tools for Chrome OS. Note: This depends on third_party/pyelftools.
322 'src/third_party/chromite': {
chromite-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.comd3347e72018-03-23 15:35:32323 'url': Var('chromium_git') + '/chromiumos/chromite.git' + '@' + '31a3eb064ea32f48a704c1321f33458365d40d13',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36324 'condition': 'checkout_linux',
325 },
326
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42327 'src/third_party/cld_3/src':
Nico Webera8d4b462018-01-31 20:54:52328 Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '484afe9ba7438d078e60b3a26e7fb590213c0e17',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42329
330 'src/third_party/colorama/src':
331 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
332
333 'src/third_party/crc32c/src':
Victor Costanf05fce322017-10-02 20:25:24334 Var('chromium_git') + '/external/github.com/google/crc32c.git' + '@' + '0f771ed5ef83556451e1736f22b1a11054dc81c3',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42335
Paweł Hajdan, Jr7af368952017-10-02 12:25:36336 # For Linux and Chromium OS.
337 'src/third_party/cros_system_api': {
Nicholas Verne1ccdac4a2018-03-19 08:23:08338 'url': Var('chromium_git') + '/chromiumos/platform/system_api.git' + '@' + '72bfdd343136630b33cff1b1975fd929c4eb9e44',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36339 'condition': 'checkout_linux',
340 },
341
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42342 'src/third_party/custom_tabs_client/src': {
Lei Tianfff09082018-03-19 21:59:04343 'url': Var('chromium_git') + '/custom-tabs-client.git' + '@' + '5f4df5ce54f4956212eef396e67be376fc4c043c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42344 'condition': 'checkout_android',
345 },
346
347 'src/third_party/depot_tools':
depot-tools-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com325503c2018-03-23 23:25:39348 Var('chromium_git') + '/chromium/tools/depot_tools.git' + '@' + '0d9ecc925d389c0ae72014d15a021788b2e824f2',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42349
Will Chen48fbfe0f2018-01-03 01:26:35350 'src/third_party/devtools-node-modules':
351 Var('chromium_git') + '/external/github.com/ChromeDevTools/devtools-node-modules' + '@' + Var('devtools_node_modules_revision'),
Paweł Hajdan, Jr7af368952017-10-02 12:25:36352
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42353 'src/third_party/dom_distiller_js/dist':
Wei-Yin Chen (陳威尹)f1f82a12017-12-13 15:52:40354 Var('chromium_git') + '/chromium/dom-distiller/dist.git' + '@' + '60b46718e28f553ab57e3d2bbda5b3b41456f417',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42355
356 'src/third_party/elfutils/src': {
357 'url': Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de4f3760bdcaa3d23d154d7',
358 'condition': 'checkout_android',
359 },
360
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16361 'src/third_party/errorprone/lib': {
Peter Wen4690acc2018-01-11 15:12:45362 'url': Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + 'ecc57c2b00627667874744b9ad8efe10734d97a8',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16363 'condition': 'checkout_android',
364 },
365
Filip Gorski796be852018-03-02 19:36:36366 'src/third_party/feed/src': {
367 'url': Var('chromium_git') + '/feed' + '@' + Var('feed_revision'),
368 'condition': 'checkout_android',
369 },
370
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42371 'src/third_party/ffmpeg':
Matt Wolenetz53f2cab2018-03-20 23:15:04372 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '5baad932589a94969782df630db02ec0293d920f',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42373
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42374 'src/third_party/flac':
375 Var('chromium_git') + '/chromium/deps/flac.git' + '@' + '7d0f5b3a173ffe98db08057d1f52b7787569e0a6',
376
377 'src/third_party/flatbuffers/src':
378 Var('chromium_git') + '/external/github.com/google/flatbuffers.git' + '@' + '01c50d57a67a52ee3cddd81b54d4647e9123a290',
379
Paweł Hajdan, Jr7af368952017-10-02 12:25:36380 # Used for embedded builds. CrOS & Linux use the system version.
381 'src/third_party/fontconfig/src': {
Tom Anderson34db191c2017-12-13 22:36:48382 'url': Var('chromium_git') + '/external/fontconfig.git' + '@' + 'b546940435ebfb0df575bc7a2350d1e913919c34',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36383 'condition': 'checkout_linux',
384 },
385
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42386 'src/third_party/freetype/src':
387 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var('freetype_revision'),
388
Dominik Röttsches60dab7e12018-03-20 09:55:47389 'src/third_party/harfbuzz-ng/src':
390 Var('chromium_git') + '/external/github.com/harfbuzz/harfbuzz.git' + '@' + Var('harfbuzz_revision'),
391
Paweł Hajdan, Jr7af368952017-10-02 12:25:36392 # Chrome OS touchpad gestures library.
393 'src/third_party/gestures/gestures': {
David Revemane25bd88e2017-10-02 21:06:05394 'url': Var('chromium_git') + '/chromiumos/platform/gestures.git' + '@' + '74f55100df966280d305d5d5ada824605f875839',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36395 'condition': 'checkout_linux',
396 },
397
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42398 'src/third_party/glslang/src':
Peng Huang80463de2018-02-07 21:06:33399 Var('chromium_git') + '/external/github.com/google/glslang.git' + '@' + 'ec1476b7060306fd9109faf7a4c70a20ea3b538c',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42400
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22401 'src/third_party/google_toolbox_for_mac/src': {
402 'url': Var('chromium_git') + '/external/github.com/google/google-toolbox-for-mac.git' + '@' + Var('google_toolbox_for_mac_revision'),
403 'condition': 'checkout_ios or checkout_mac',
404 },
405
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42406 'src/third_party/googletest/src':
Victor Costan4d7d59f2018-03-15 18:07:22407 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + 'a325ad2db5deb623eab740527e559b81c0f39d65',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42408
Paweł Hajdan, Jr7af368952017-10-02 12:25:36409 # GNU binutils assembler for x86-32.
410 'src/third_party/gnu_binutils': {
411 'url': Var('chromium_git') + '/native_client/deps/third_party/gnu_binutils.git' + '@' + 'f4003433b61b25666565690caf3d7a7a1a4ec436',
Dirk Pranke4dabe802017-11-02 07:18:55412 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36413 },
414
415 'src/third_party/gperf': {
416 'url': Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f9449770443fb06da49b5a1e5d33c1',
417 'condition': 'checkout_win',
418 },
419
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42420 'src/third_party/gvr-android-sdk/src': {
Michael Thiessen9b0bf722018-03-01 22:41:52421 'url': Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' + '@' + '233e7fe922a543e0bc55382d64cacd047307d0e7',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16422 'condition': 'checkout_android',
423 },
424
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42425 'src/third_party/hunspell_dictionaries':
Chris Nardieea5de82017-10-14 22:21:31426 Var('chromium_git') + '/chromium/deps/hunspell_dictionaries.git' + '@' + 'a9bac57ce6c9d390a52ebaad3259f5fdb871210e',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42427
428 'src/third_party/icu':
Jungshik Shin363e1ec2018-02-05 23:26:23429 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + 'd888fd2a1be890f4d35e43f68d6d79f42519a357',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42430
431 'src/third_party/jsoncpp/source':
432 Var('chromium_git') + '/external/github.com/open-source-parsers/jsoncpp.git' + '@' + 'f572e8e42e22cfcf5ab0aea26574f408943edfa4', # from svn 248
433
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16434 'src/third_party/jsr-305/src': {
435 'url': Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220af6d5df2d3210e3bfc0919',
436 'condition': 'checkout_android',
437 },
438
439 'src/third_party/junit/src': {
440 'url': Var('chromium_git') + '/external/junit.git' + '@' + '64155f8a9babcfcf4263cf4d08253a1556e75481',
441 'condition': 'checkout_android',
442 },
443
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42444 'src/third_party/leakcanary/src': {
445 'url': Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' + '608ded739e036a3aa69db47ac43777dcee506f8e',
446 'condition': 'checkout_android',
447 },
448
449 'src/third_party/leveldatabase/src':
Victor Costan1a375172018-02-16 11:55:44450 Var('chromium_git') + '/external/leveldb.git' + '@' + '41172a24016bc29fc795ed504737392587f54e3d',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42451
452 'src/third_party/libFuzzer/src':
Max Moroz1ee969e2017-10-04 16:27:26453 Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + Var('libfuzzer_revision'),
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42454
455 'src/third_party/libaddressinput/src':
Peter Collingbournec85bc322018-02-28 02:22:15456 Var('chromium_git') + '/external/libaddressinput.git' + '@' + 'd955c63ec7048d59dffd20af25eeec23da878d27',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42457
Johanncf5bb4c62017-10-30 23:21:34458 'src/third_party/libaom/source/libaom': {
Tom Finegan525e45372017-12-22 21:32:24459 'url': Var('aomedia_git') + '/aom.git' + '@' + 'cc92258a08d98f469dff1be288acbc322632377b',
Johanncf5bb4c62017-10-30 23:21:34460 'condition': 'checkout_libaom',
461 },
462
Paweł Hajdan, Jr7af368952017-10-02 12:25:36463 # Userspace interface to kernel DRM services.
464 'src/third_party/libdrm/src': {
Kristian H. Kristensen03ecc6d2017-10-30 23:53:36465 'url': Var('chromium_git') + '/chromiumos/third_party/libdrm.git' + '@' + '16ffb1e6fce0fbd57f7a1e76021c575a40f6dc7a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36466 'condition': 'checkout_linux',
467 },
468
469 # The libevdev library (Chrome OS version).
470 'src/third_party/libevdev/src': {
471 'url': Var('chromium_git') + '/chromiumos/platform/libevdev.git' + '@' + '9f7a1961eb4726211e18abd147d5a11a4ea86744',
472 'condition': 'checkout_linux',
473 },
474
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42475 'src/third_party/libjpeg_turbo':
476 Var('chromium_git') + '/chromium/deps/libjpeg_turbo.git' + '@' + 'a1750dbc79a8792dde3d3f7d7d8ac28ba01ac9dd',
477
Paweł Hajdan, Jr7af368952017-10-02 12:25:36478 'src/third_party/liblouis/src': {
479 'url': Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a3478561deb6ae4798175094be8a26c2',
480 'condition': 'checkout_linux',
481 },
482
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42483 'src/third_party/libphonenumber/dist':
484 Var('chromium_git') + '/external/libphonenumber.git' + '@' + 'a4da30df63a097d67e3c429ead6790ad91d36cf4',
485
486 'src/third_party/libprotobuf-mutator/src':
487 Var('chromium_git') + '/external/github.com/google/libprotobuf-mutator.git' + '@' + Var('libprotobuf-mutator'),
488
489 'src/third_party/libsrtp':
490 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '1d45b8e599dc2db6ea3ae22dbc94a8c504652423',
491
Paweł Hajdan, Jr7af368952017-10-02 12:25:36492 # Android Explicit Synchronization.
493 'src/third_party/libsync/src': {
Alexandros Frantzis3ad9a222018-01-25 17:09:54494 'url': Var('chromium_git') + '/aosp/platform/system/core/libsync.git' + '@' + 'f4f4387b6bf2387efbcfd1453af4892e8982faf6',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36495 'condition': 'checkout_linux',
496 },
497
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42498 'src/third_party/libvpx/source/libvpx':
Jerome Jiang221017732018-03-22 17:25:52499 Var('chromium_git') + '/webm/libvpx.git' + '@' + '1f82e061229352b6e86564da7e3132b97ed924be',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42500
501 'src/third_party/libwebm/source':
bsheedy2a59f252018-01-03 21:30:05502 Var('chromium_git') + '/webm/libwebm.git' + '@' + 'b03c65468b06d097f27235d93d76bfc45f490ede',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42503
504 'src/third_party/libyuv':
Frank Barchard42ba86212018-03-02 22:12:08505 Var('chromium_git') + '/libyuv/libyuv.git' + '@' + '98a0a157dcf5dee0882b2dfcc9578ab1f44afb12', # from r1703
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42506
Paweł Hajdan, Jrc3ae0852017-10-02 16:46:22507 'src/third_party/lighttpd': {
508 'url': Var('chromium_git') + '/chromium/deps/lighttpd.git' + '@' + Var('lighttpd_revision'),
509 'condition': 'checkout_mac or checkout_win',
510 },
511
512 'src/third_party/lss': {
513 'url': Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revision'),
514 'condition': 'checkout_android or checkout_linux',
515 },
516
Paweł Hajdan, Jr7af368952017-10-02 12:25:36517 'src/third_party/material_design_icons/src': {
518 'url': Var('chromium_git') + '/external/github.com/google/material-design-icons.git' + '@' +
519 '5ab428852e35dc177a8c37a2df9dc9ccf768c65a',
520 'condition': 'checkout_ios',
521 },
522
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42523 'src/third_party/mesa/src':
Antoine Labourbc02b842018-03-02 23:49:00524 Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + '92521a7a302b58aaa242b90192eaddb67ea3d0c2',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42525
Paweł Hajdan, Jr7af368952017-10-02 12:25:36526 # GNU binutils assembler for x86-64.
527 'src/third_party/mingw-w64/mingw/bin': {
528 'url': Var('chromium_git') + '/native_client/deps/third_party/mingw-w64/mingw/bin.git' + '@' + '3cc8b140b883a9fe4986d12cfd46c16a093d3527',
Dirk Pranke4dabe802017-11-02 07:18:55529 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36530 },
531
532 # Graphics buffer allocator for Chrome OS.
533 'src/third_party/minigbm/src': {
Sergey Volkbd363182018-03-09 05:42:15534 'url': Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + '6eca36809e185337bfcca95310a1765c34c360e1',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36535 'condition': 'checkout_linux',
536 },
537
538 # Minizip library. Used on Chrome OS.
539 'src/third_party/minizip/src': {
Tatsuhisa Yamaguchi0c5fc82a2017-12-27 01:52:10540 'url': Var('chromium_git') + '/external/github.com/nmoinvaz/minizip' + '@' + '53a657318af1fccc4bac7ed230729302b2391d1d',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36541 'condition': 'checkout_linux',
542 },
543
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16544 'src/third_party/mockito/src': {
545 'url': Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598ad4cf5ea53c69a8a8053780b04b850',
546 'condition': 'checkout_android',
547 },
548
Paweł Hajdan, Jr7af368952017-10-02 12:25:36549 # Binaries for nacl sdk.
550 'src/third_party/nacl_sdk_binaries': {
551 'url': Var('chromium_git') + '/chromium/deps/nacl_sdk_binaries.git' + '@' + '759dfca03bdc774da7ecbf974f6e2b84f43699a5',
Dirk Pranke4dabe802017-11-02 07:18:55552 'condition': 'checkout_nacl and checkout_win',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36553 },
554
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16555 'src/third_party/netty-tcnative/src': {
556 'url': Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '5b46a8ef4a39c39c576fcdaaf718b585d75df463',
557 'condition': 'checkout_android',
558 },
559
560 'src/third_party/netty4/src': {
561 'url': Var('chromium_git') + '/external/netty4.git' + '@' + 'cc4420b13bb4eeea5b1cf4f93b2755644cd3b120',
562 'condition': 'checkout_android',
563 },
564
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42565 'src/third_party/openh264/src':
Tom Anderson308f0632018-01-15 23:16:11566 Var('chromium_git') + '/external/github.com/cisco/openh264' + '@' + '2e96d62426547ac4fb5cbcd122e5f6eb68d66ee6',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16567
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42568 'src/third_party/openmax_dl':
569 Var('webrtc_git') + '/deps/third_party/openmax.git' + '@' + Var('openmax_dl_revision'),
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16570
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42571 'src/third_party/pdfium':
572 Var('pdfium_git') + '/pdfium.git' + '@' + Var('pdfium_revision'),
573
Paweł Hajdan, Jr7af368952017-10-02 12:25:36574 # Parses Windows PE/COFF executable format.
575 'src/third_party/pefile': {
576 'url': Var('chromium_git') + '/external/pefile.git' + '@' + '72c6ae42396cb913bcab63c15585dc3b5c3f92f1',
577 'condition': 'checkout_win',
578 },
579
Oystein Eftevaaga9439b922018-01-08 19:30:14580 'src/third_party/perfetto':
Oystein Eftevaag9ef31282018-01-23 00:57:50581 Var('android_git') + '/platform/external/perfetto.git' + '@' + '135841c8077f13f14c6b80e32d391da84d2ee131',
Oystein Eftevaaga9439b922018-01-08 19:30:14582
Paweł Hajdan, Jr7af368952017-10-02 12:25:36583 'src/third_party/perl': {
584 'url': Var('chromium_git') + '/chromium/deps/perl.git' + '@' + 'ac0d98b5cee6c024b0cffeb4f8f45b6fc5ccdb78',
585 'condition': 'checkout_win',
586 },
587
588 # Dependency of chromite.git and skia.
589 'src/third_party/pyelftools': {
590 'url': Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3e610c86fcadb837d252c794cb5e8008826ae',
591 'condition': 'checkout_linux',
592 },
593
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42594 'src/third_party/pyftpdlib/src':
595 Var('chromium_git') + '/external/pyftpdlib.git' + '@' + '2be6d65e31c7ee6320d059f581f05ae8d89d7e45',
596
597 'src/third_party/pywebsocket/src':
598 Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2',
599
600 'src/third_party/re2/src':
Max Moroz13bd9f722017-12-05 18:12:11601 Var('chromium_git') + '/external/github.com/google/re2.git' + '@' + '5185d85264d23cfae4b38e2703703e9a4c8e974c',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16602
603 'src/third_party/requests/src': {
604 'url': Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4',
605 'condition': 'checkout_android',
606 },
607
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42608 'src/third_party/robolectric/robolectric': {
John Budoricke7f2d1332017-11-30 23:35:22609 'url': Var('chromium_git') + '/external/robolectric.git' + '@' + '7e067f1112e1502caa742f7be72d37b5678d3403',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16610 'condition': 'checkout_android',
611 },
612
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42613 'src/third_party/sfntly/src':
614 Var('chromium_git') + '/external/github.com/googlei18n/sfntly.git' + '@' + Var('sfntly_revision'),
615
616 'src/third_party/shaderc/src':
617 Var('chromium_git') + '/external/github.com/google/shaderc.git' + '@' + 'cd8793c34907073025af2622c28bcee64e9879a4',
618
619 'src/third_party/skia':
620 Var('skia_git') + '/skia.git' + '@' + Var('skia_revision'),
621
622 'src/third_party/smhasher/src':
623 Var('chromium_git') + '/external/smhasher.git' + '@' + 'e87738e57558e0ec472b2fc3a643b838e5b6e88f',
624
625 'src/third_party/snappy/src':
Victor Costanf0794a012018-02-20 23:18:32626 Var('chromium_git') + '/external/github.com/google/snappy.git' + '@' + 'ca37ab7fb9b718e056009babb4fea591626e5882',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42627
628 'src/third_party/swiftshader':
629 Var('swiftshader_git') + '/SwiftShader.git' + '@' + Var('swiftshader_revision'),
630
631 'src/third_party/ub-uiautomator/lib': {
632 'url': Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '00270549ce3161ae72ceb24712618ea28b4f9434',
Paweł Hajdan, Jr78b426d02017-09-29 07:49:16633 'condition': 'checkout_android',
634 },
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42635
636 'src/third_party/usrsctp/usrsctplib':
Taylor Brandstetterf274fcc2018-03-23 19:07:00637 Var('chromium_git') + '/external/github.com/sctplab/usrsctp' + '@' + '159d060dceec41a64a57356cbba8c455105f3f72',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42638
639 'src/third_party/visualmetrics/src':
640 Var('chromium_git') + '/external/github.com/WPO-Foundation/visualmetrics.git' + '@' + '1edde9d2fe203229c895b648fdec355917200ad6',
641
Paweł Hajdan, Jr7af368952017-10-02 12:25:36642 # Display server protocol for Linux.
643 'src/third_party/wayland/src': {
644 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland.git' + '@' + '1361da9cd5a719b32d978485a29920429a31ed25',
645 'condition': 'checkout_linux',
646 },
647
648 # Wayland protocols that add functionality not available in the core protocol.
649 'src/third_party/wayland-protocols/src': {
Alexandros Frantzisaed3360b2018-01-24 18:40:04650 'url': Var('chromium_git') + '/external/anongit.freedesktop.org/git/wayland/wayland-protocols.git' + '@' + '4f789286e4ab7f6fecc2ccb895d79362a9b2382a',
Paweł Hajdan, Jr7af368952017-10-02 12:25:36651 'condition': 'checkout_linux',
652 },
653
654 # Wireless Display Software. Used on Chrome OS.
655 'src/third_party/wds/src': {
656 'url': Var('chromium_git') + '/external/github.com/01org/wds' + '@' + 'ac3d8210d95f3000bf5c8e16a79dbbbf22d554a5',
657 'condition': 'checkout_linux',
658 },
659
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42660 'src/third_party/webdriver/pylib':
661 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d27ca4835fb6c5ce4b42275bd',
662
663 'src/third_party/webgl/src':
Vikas Soniaa7b54e02018-03-03 14:43:41664 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '3c1cb0203b6cfc10389e85a350b2ea6ca29d01ce',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42665
666 'src/third_party/webrtc':
webrtc-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.com84a907f2018-03-23 20:02:37667 Var('webrtc_git') + '/src.git' + '@' + '9718711deed8d932503842df39bb161d578b1d64', # commit position 21742
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42668
Paweł Hajdan, Jr7af368952017-10-02 12:25:36669 'src/third_party/xdg-utils': {
670 'url': Var('chromium_git') + '/chromium/deps/xdg-utils.git' + '@' + 'd80274d5869b17b8c9067a1022e4416ee7ed5e0d',
671 'condition': 'checkout_linux',
672 },
673
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42674 'src/third_party/yasm/source/patched-yasm':
675 Var('chromium_git') + '/chromium/deps/yasm/patched-yasm.git' + '@' + 'b98114e18d8b9b84586b10d24353ab8616d4c5fc',
676
677 'src/tools/gyp':
678 Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
679
680 'src/tools/page_cycler/acid3':
681 Var('chromium_git') + '/chromium/deps/acid3.git' + '@' + '6be0a66a1ebd7ebc5abc1b2f405a945f6d871521',
682
683 'src/tools/swarming_client':
684 Var('chromium_git') + '/infra/luci/client-py.git' + '@' + Var('swarming_revision'),
685
686 'src/v8':
687 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'),
688
689 'src-internal': {
src-internal-chromium-autoroll@skia-buildbots.google.com.iam.gserviceaccount.comdbc05d72018-03-23 01:38:21690 'url': 'https://chrome-internal.googlesource.com/chrome/src-internal.git@48c82919be0ec44223941341bf2f8c199649df89',
Paweł Hajdan, Jrf5e7996a2017-09-29 11:37:42691 'condition': 'checkout_src_internal',
692 },
Nicolas Dossou-gbete2d6b66c2018-02-21 13:58:03693
694 # === ANDROID_DEPS Generated Code Start ===
695 # Generated by //tools/android/roll/android_deps/fetch_all.sh
696 # === ANDROID_DEPS Generated Code End ===
[email protected]5f129de2009-02-24 23:22:04697}
698
[email protected]00c517672010-11-04 00:27:29699
[email protected]5f129de2009-02-24 23:22:04700include_rules = [
701 # Everybody can use some things.
John Abd-El-Malek5b6373f2015-04-01 19:44:14702 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these.
Stefan Zagerfd5ba192014-08-23 00:29:39703 '+base',
704 '+build',
705 '+ipc',
[email protected]5f129de2009-02-24 23:22:04706
[email protected]dfbff862012-11-28 19:08:14707 # Everybody can use headers generated by tools/generate_library_loader.
Stefan Zagerfd5ba192014-08-23 00:29:39708 '+library_loaders',
[email protected]dfbff862012-11-28 19:08:14709
Stefan Zagerfd5ba192014-08-23 00:29:39710 '+testing',
711 '+third_party/icu/source/common/unicode',
712 '+third_party/icu/source/i18n/unicode',
713 '+url',
[email protected]5f129de2009-02-24 23:22:04714]
715
716
717# checkdeps.py shouldn't check include paths for files in these dirs:
718skip_child_includes = [
Stefan Zagerfd5ba192014-08-23 00:29:39719 'native_client_sdk',
John Abd-El-Malek5b6373f2015-04-01 19:44:14720 'out',
Stefan Zagerfd5ba192014-08-23 00:29:39721 'skia',
722 'testing',
Mark Mentovaiebb9ddd62017-09-25 17:24:41723 'third_party/breakpad/breakpad',
Stefan Zagerfd5ba192014-08-23 00:29:39724 'v8',
725 'win8',
[email protected]5f129de2009-02-24 23:22:04726]
[email protected]bfa24b962009-03-02 00:16:16727
728
729hooks = [
730 {
[email protected]9372bec2014-08-14 14:03:30731 # This clobbers when necessary (based on get_landmines.py). It must be the
732 # first hook so that other things that get/generate into the output
733 # directory will not subsequently be clobbered.
Stefan Zagerfd5ba192014-08-23 00:29:39734 'name': 'landmines',
735 'pattern': '.',
736 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48737 'python',
Stefan Zagerfd5ba192014-08-23 00:29:39738 'src/build/landmines.py',
[email protected]9372bec2014-08-14 14:03:30739 ],
740 },
741 {
Dan Jacquescea92c512017-06-02 23:59:16742 # Ensure that the DEPS'd "depot_tools" has its self-update capability
743 # disabled.
744 'name': 'disable_depot_tools_selfupdate',
745 'pattern': '.',
746 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48747 'python',
Dan Jacquescea92c512017-06-02 23:59:16748 'src/third_party/depot_tools/update_depot_tools_toggle.py',
749 '--disable',
750 ],
751 },
752 {
jbudorick94a712c2016-03-09 19:03:52753 # Ensure that while generating dependencies lists in .gyp files we don't
754 # accidentally reference any .pyc files whose corresponding .py files have
755 # already been deleted.
756 # We should actually try to avoid generating .pyc files, crbug.com/500078.
757 'name': 'remove_stale_pyc_files',
758 'pattern': '.',
759 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48760 'python',
jbudorick94a712c2016-03-09 19:03:52761 'src/tools/remove_stale_pyc_files.py',
762 'src/android_webview/tools',
763 'src/build/android',
764 'src/gpu/gles2_conform_support',
765 'src/infra',
766 'src/ppapi',
767 'src/printing',
768 'src/third_party/catapult',
769 'src/third_party/closure_compiler/build',
qyearsleydfda207b2016-07-08 14:16:12770 'src/third_party/WebKit/Tools/Scripts', # See http://crbug.com/625877.
jbudorick94a712c2016-03-09 19:03:52771 'src/tools',
772 ],
773 },
774 {
[email protected]89e43f652011-08-18 00:03:17775 # This downloads binaries for Native Client's newlib toolchain.
776 # Done in lieu of building the toolchain from scratch as it can take
777 # anywhere from 30 minutes to 4 hours depending on platform to build.
Stefan Zagerfd5ba192014-08-23 00:29:39778 'name': 'nacltools',
779 'pattern': '.',
Dirk Pranke4dabe802017-11-02 07:18:55780 'condition': 'checkout_nacl',
Stefan Zagerfd5ba192014-08-23 00:29:39781 'action': [
Nodir Turakulovdd080902018-01-20 01:06:48782 'python',
dyen249880632014-11-20 23:02:20783 'src/build/download_nacl_toolchains.py',
ncbray474ab322015-01-05 22:04:22784 '--mode', 'nacl_core_sdk',
ncbray4453c50a2015-02-18 20:10:55785 'sync', '--extract',
[email protected]89e43f652011-08-18 00:03:17786 ],
787 },
[email protected]3a0b2492011-08-24 20:41:16788 {
Tom Andersona07b9fe2018-02-09 04:08:26789 'name': 'sysroot_arm',
Stefan Zagerfd5ba192014-08-23 00:29:39790 'pattern': '.',
Tom Andersona07b9fe2018-02-09 04:08:26791 'condition': 'checkout_linux and checkout_arm',
Nodir Turakulovdd080902018-01-20 01:06:48792 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
Tom Andersona07b9fe2018-02-09 04:08:26793 '--arch=arm'],
794 },
795 {
796 'name': 'sysroot_arm64',
797 'pattern': '.',
798 'condition': 'checkout_linux and checkout_arm64',
799 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
800 '--arch=arm64'],
801 },
802 {
803 'name': 'sysroot_x86',
804 'pattern': '.',
805 'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
806 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
807 '--arch=x86'],
808 },
809 {
810 'name': 'sysroot_mips',
811 'pattern': '.',
812 'condition': 'checkout_linux and checkout_mips',
813 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
814 '--arch=mips'],
815 },
816 {
817 'name': 'sysroot_x64',
818 'pattern': '.',
819 'condition': 'checkout_linux and checkout_x64',
820 'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
821 '--arch=x64'],
sbc41d0e082014-10-22 20:39:29822 },
823 {
Nico Weber76299302018-02-01 20:36:45824 # Case-insensitivity for the Win SDK. Must run before win_toolchain below.
825 'name': 'ciopfs_linux',
826 'pattern': '.',
827 'condition': 'checkout_win and host_os == "linux"',
828 'action': [ 'python',
829 'src/third_party/depot_tools/download_from_google_storage.py',
830 '--no_resume',
831 '--no_auth',
832 '--bucket', 'chromium-browser-clang/ciopfs',
833 '-s', 'src/build/ciopfs.sha1',
834 ]
835 },
836 {
Nico Weberb19437032017-10-09 02:45:09837 # Update the Windows toolchain if necessary. Must run before 'clang' below.
Stefan Zagerfd5ba192014-08-23 00:29:39838 'name': 'win_toolchain',
839 'pattern': '.',
Nico Webera13ad932017-10-12 18:52:40840 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:48841 'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'],
[email protected]c71d3282014-04-09 01:56:20842 },
justincohen6a03a3d2016-03-26 21:44:38843 {
844 # Update the Mac toolchain if necessary.
845 'name': 'mac_toolchain',
846 'pattern': '.',
Rohit Rao92489af2017-10-12 21:45:48847 'condition': 'checkout_ios or checkout_mac',
Nodir Turakulov52cd53f2017-11-14 22:08:02848 'action': ['python', 'src/build/mac_toolchain.py'],
justincohen6a03a3d2016-03-26 21:44:38849 },
hansb2eae972015-05-19 00:53:12850 # Pull binutils for linux, enabled debug fission for faster linking /
851 # debugging when used with clang on Ubuntu Precise.
852 # https://code.google.com/p/chromium/issues/detail?id=352046
853 {
854 'name': 'binutils',
855 'pattern': 'src/third_party/binutils',
Nico Weberb19437032017-10-09 02:45:09856 'condition': 'host_os == "linux"',
hansb2eae972015-05-19 00:53:12857 'action': [
Nodir Turakulovfec77cd2017-11-14 18:22:32858 'python',
hansb2eae972015-05-19 00:53:12859 'src/third_party/binutils/download.py',
860 ],
861 },
[email protected]c71d3282014-04-09 01:56:20862 {
Hans Wennborg28fb41c2014-09-22 23:25:12863 # Note: On Win, this should run after win_toolchain, as it may use it.
864 'name': 'clang',
865 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48866 'action': ['python', 'src/tools/clang/scripts/update.py'],
Hans Wennborg28fb41c2014-09-22 23:25:12867 },
868 {
Nico Weber1df4a692017-10-16 21:36:30869 # Mac doesn't use lld so it's not included in the default clang bundle
870 # there. lld is however needed in win cross builds, so download it there.
871 # Should run after the clang hook.
872 'name': 'lld/mac',
873 'pattern': '.',
874 'condition': 'host_os == "mac" and checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:48875 'action': ['python', 'src/tools/clang/scripts/download_lld_mac.py'],
Nico Weber1df4a692017-10-16 21:36:30876 },
877 {
phajdan.jr2448b2c2015-04-24 21:04:17878 # Update LASTCHANGE.
Stefan Zagerfd5ba192014-08-23 00:29:39879 'name': 'lastchange',
880 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48881 'action': ['python', 'src/build/util/lastchange.py',
Stefan Zagerfd5ba192014-08-23 00:29:39882 '-o', 'src/build/util/LASTCHANGE'],
[email protected]9046a112012-01-31 20:45:25883 },
884 {
Kai Ninomiya96bd9ef92017-10-20 21:30:37885 # Update GPU lists version string (for gpu/config).
886 'name': 'gpu_lists_version',
887 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48888 'action': ['python', 'src/build/util/lastchange.py',
Kai Ninomiya96bd9ef92017-10-20 21:30:37889 '-m', 'GPU_LISTS_VERSION',
890 '--revision-id-only',
891 '--header', 'src/gpu/config/gpu_lists_version.h'],
892 },
893 {
halcanary5cacab3a2016-07-29 19:23:20894 # Update skia_commit_hash.h.
895 'name': 'lastchange_skia',
896 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:48897 'action': ['python', 'src/build/util/lastchange.py',
halcanary5cacab3a2016-07-29 19:23:20898 '-m', 'SKIA_COMMIT_HASH',
899 '-s', 'src/third_party/skia',
900 '--header', 'src/skia/ext/skia_commit_hash.h'],
901 },
[email protected]66968ba2014-03-18 20:27:54902 # Pull GN binaries. This needs to be before running GYP below.
903 {
Stefan Zagerfd5ba192014-08-23 00:29:39904 'name': 'gn_win',
905 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19906 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48907 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12908 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39909 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39910 '--no_auth',
911 '--bucket', 'chromium-gn',
912 '-s', 'src/buildtools/win/gn.exe.sha1',
[email protected]66968ba2014-03-18 20:27:54913 ],
914 },
915 {
Stefan Zagerfd5ba192014-08-23 00:29:39916 'name': 'gn_mac',
917 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19918 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48919 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12920 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39921 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39922 '--no_auth',
923 '--bucket', 'chromium-gn',
924 '-s', 'src/buildtools/mac/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19925 ],
926 },
927 {
Stefan Zagerfd5ba192014-08-23 00:29:39928 'name': 'gn_linux64',
929 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19930 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:48931 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12932 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39933 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39934 '--no_auth',
935 '--bucket', 'chromium-gn',
936 '-s', 'src/buildtools/linux64/gn.sha1',
[email protected]0d5e05822014-06-18 19:23:19937 ],
938 },
[email protected]6eabd702014-01-12 00:19:20939 # Pull clang-format binaries using checked-in hashes.
940 {
Stefan Zagerfd5ba192014-08-23 00:29:39941 'name': 'clang_format_win',
942 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19943 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48944 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12945 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39946 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39947 '--no_auth',
948 '--bucket', 'chromium-clang-format',
949 '-s', 'src/buildtools/win/clang-format.exe.sha1',
[email protected]6eabd702014-01-12 00:19:20950 ],
951 },
952 {
Stefan Zagerfd5ba192014-08-23 00:29:39953 'name': 'clang_format_mac',
954 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19955 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48956 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12957 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39958 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39959 '--no_auth',
960 '--bucket', 'chromium-clang-format',
961 '-s', 'src/buildtools/mac/clang-format.sha1',
[email protected]6eabd702014-01-12 00:19:20962 ],
963 },
964 {
Stefan Zagerfd5ba192014-08-23 00:29:39965 'name': 'clang_format_linux',
966 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:19967 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:48968 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:12969 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:39970 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:39971 '--no_auth',
972 '--bucket', 'chromium-clang-format',
973 '-s', 'src/buildtools/linux64/clang-format.sha1',
[email protected]6ec1d6fc2014-06-25 19:55:21974 ],
975 },
Nico Weber0c0ade82017-10-19 22:34:43976 # Pull rc binaries using checked-in hashes.
977 {
978 'name': 'rc_win',
979 'pattern': '.',
980 'condition': 'checkout_win and host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:48981 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:43982 'src/third_party/depot_tools/download_from_google_storage.py',
983 '--no_resume',
984 '--no_auth',
985 '--bucket', 'chromium-browser-clang/rc',
986 '-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1',
987 ],
988 },
989 {
990 'name': 'rc_mac',
991 'pattern': '.',
992 'condition': 'checkout_win and host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:48993 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:43994 'src/third_party/depot_tools/download_from_google_storage.py',
995 '--no_resume',
996 '--no_auth',
997 '--bucket', 'chromium-browser-clang/rc',
998 '-s', 'src/build/toolchain/win/rc/mac/rc.sha1',
999 ],
1000 },
1001 {
1002 'name': 'rc_linux',
1003 'pattern': '.',
1004 'condition': 'checkout_win and host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481005 'action': [ 'python',
Nico Weber0c0ade82017-10-19 22:34:431006 'src/third_party/depot_tools/download_from_google_storage.py',
1007 '--no_resume',
1008 '--no_auth',
1009 '--bucket', 'chromium-browser-clang/rc',
1010 '-s', 'src/build/toolchain/win/rc/linux64/rc.sha1',
Dominik Röttschesf49ef762017-11-17 09:26:311011 ]
1012 },
Nico Weber76299302018-02-01 20:36:451013 {
Tom Anderson44027d42018-03-15 17:14:531014 'name': 'test_fonts',
Dominik Röttschesf49ef762017-11-17 09:26:311015 'pattern': '.',
Alexander Semashkod9431dcf2018-03-01 07:51:161016 'condition': 'checkout_linux or (checkout_android or checkout_fuchsia)',
Dominik Röttschesf49ef762017-11-17 09:26:311017 'action': [ 'download_from_google_storage',
1018 '--no_resume',
Dominik Röttschesf49ef762017-11-17 09:26:311019 '--extract',
1020 '--no_auth',
1021 '--bucket', 'chromium-fonts',
Tom Anderson44027d42018-03-15 17:14:531022 '-s', 'src/third_party/test_fonts/test_fonts.tar.gz.sha1',
Nico Weber0c0ade82017-10-19 22:34:431023 ],
1024 },
Hans Wennborgfc1e2972017-06-12 18:42:261025 # Pull order files for the win/clang build.
1026 {
1027 'name': 'orderfiles_win',
1028 'pattern': '.',
Paweł Hajdan, Jr004d8b32017-10-02 18:44:221029 'condition': 'checkout_win',
Nodir Turakulovdd080902018-01-20 01:06:481030 'action': [ 'python',
Hans Wennborgfc1e2972017-06-12 18:42:261031 'src/third_party/depot_tools/download_from_google_storage.py',
1032 '--no_resume',
Hans Wennborgfc1e2972017-06-12 18:42:261033 '--no_auth',
1034 '--bucket', 'chromium-browser-clang/orderfiles',
1035 '-d', 'src/chrome/build',
1036 ],
1037 },
maruel4fbba012015-05-22 21:52:291038 # Pull luci-go binaries (isolate, swarming) using checked-in hashes.
1039 {
1040 'name': 'luci-go_win',
1041 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191042 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481043 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121044 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291045 '--no_resume',
maruel4fbba012015-05-22 21:52:291046 '--no_auth',
1047 '--bucket', 'chromium-luci',
1048 '-d', 'src/tools/luci-go/win64',
1049 ],
1050 },
1051 {
1052 'name': 'luci-go_mac',
1053 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191054 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481055 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121056 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291057 '--no_resume',
maruel4fbba012015-05-22 21:52:291058 '--no_auth',
1059 '--bucket', 'chromium-luci',
1060 '-d', 'src/tools/luci-go/mac64',
1061 ],
1062 },
1063 {
1064 'name': 'luci-go_linux',
1065 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191066 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481067 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121068 'src/third_party/depot_tools/download_from_google_storage.py',
maruel4fbba012015-05-22 21:52:291069 '--no_resume',
maruel4fbba012015-05-22 21:52:291070 '--no_auth',
1071 '--bucket', 'chromium-luci',
1072 '-d', 'src/tools/luci-go/linux64',
1073 ],
1074 },
[email protected]f1d116b2014-06-13 18:07:261075 # Pull the Syzygy binaries, used for optimization and instrumentation.
1076 {
Stefan Zagerfd5ba192014-08-23 00:29:391077 'name': 'syzygy-binaries',
1078 'pattern': '.',
Nico Weberb19437032017-10-09 02:45:091079 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481080 'action': ['python',
Stefan Zagerfd5ba192014-08-23 00:29:391081 'src/build/get_syzygy_binaries.py',
1082 '--output-dir=src/third_party/syzygy/binaries',
Sebastien Marchand75ac1cc2017-12-06 16:58:381083 '--revision=8164b24ebde9c5649c9a09e88a7fc0b0fcbd1bc5',
Stefan Zagerfd5ba192014-08-23 00:29:391084 '--overwrite',
sebmarchandaf7cc2f2016-10-04 18:22:251085 '--copy-dia-binaries',
[email protected]f1d116b2014-06-13 18:07:261086 ],
1087 },
erikwright9bdc2bf2015-01-22 20:20:041088 {
Stefan Zagerfd5ba192014-08-23 00:29:391089 'name': 'apache_win32',
1090 'pattern': '\\.sha1',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191091 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481092 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121093 'src/third_party/depot_tools/download_from_google_storage.py',
Stefan Zagerfd5ba192014-08-23 00:29:391094 '--no_resume',
Stefan Zagerfd5ba192014-08-23 00:29:391095 '--directory',
1096 '--recursive',
1097 '--no_auth',
1098 '--num_threads=16',
1099 '--bucket', 'chromium-apache-win32',
1100 'src/third_party/apache-win32',
[email protected]2154052a2014-06-14 19:29:261101 ],
1102 },
1103 {
Dirk Pranke6c360be2017-10-09 19:06:591104 'name': 'msan_chained_origins',
1105 'pattern': '.',
1106 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481107 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591108 'src/third_party/depot_tools/download_from_google_storage.py',
1109 "--no_resume",
1110 "--no_auth",
1111 "--bucket", "chromium-instrumented-libraries",
1112 "-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
1113 ],
1114 },
1115 {
1116 'name': 'msan_no_origins',
1117 'pattern': '.',
1118 'condition': 'checkout_instrumented_libraries',
Nodir Turakulovdd080902018-01-20 01:06:481119 'action': [ 'python',
Dirk Pranke6c360be2017-10-09 19:06:591120 'src/third_party/depot_tools/download_from_google_storage.py',
1121 "--no_resume",
1122 "--no_auth",
1123 "--bucket", "chromium-instrumented-libraries",
1124 "-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
1125 ],
thomasandersonaa441f52017-04-04 22:35:391126 },
1127 {
bradnelson20c9a7312016-08-30 17:45:471128 "name": "wasm_fuzzer",
1129 "pattern": ".",
Nodir Turakulovdd080902018-01-20 01:06:481130 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121131 'src/third_party/depot_tools/download_from_google_storage.py',
bradnelson20c9a7312016-08-30 17:45:471132 "--no_resume",
1133 "--no_auth",
1134 "-u",
1135 "--bucket", "v8-wasm-fuzzer",
ahaasec987e5d2017-05-17 11:25:361136 "-s", "src/v8/test/fuzzer/wasm_corpus.tar.gz.sha1",
bradnelson20c9a7312016-08-30 17:45:471137 ],
1138 },
dpapadcbee6ab2017-01-14 03:05:531139
1140 # Pull down Node binaries for WebUI toolchain.
1141 {
1142 'name': 'node_linux64',
1143 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191144 'condition': 'host_os == "linux"',
Nodir Turakulovdd080902018-01-20 01:06:481145 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121146 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531147 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531148 '--extract',
1149 '--no_auth',
dpapad40b00b452017-11-21 05:00:091150 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531151 '-s', 'src/third_party/node/linux/node-linux-x64.tar.gz.sha1',
1152 ],
1153 },
1154 {
1155 'name': 'node_mac',
1156 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191157 'condition': 'host_os == "mac"',
Nodir Turakulovdd080902018-01-20 01:06:481158 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121159 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531160 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531161 '--extract',
1162 '--no_auth',
dpapad40b00b452017-11-21 05:00:091163 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531164 '-s', 'src/third_party/node/mac/node-darwin-x64.tar.gz.sha1',
1165 ],
1166 },
1167 {
1168 'name': 'node_win',
1169 'pattern': '.',
Paweł Hajdan, Jr0c5df4c2017-09-18 22:58:191170 'condition': 'host_os == "win"',
Nodir Turakulovdd080902018-01-20 01:06:481171 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121172 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531173 '--no_resume',
dpapadcbee6ab2017-01-14 03:05:531174 '--no_auth',
dpapad40b00b452017-11-21 05:00:091175 '--bucket', 'chromium-nodejs/8.9.1',
dpapadcbee6ab2017-01-14 03:05:531176 '-s', 'src/third_party/node/win/node.exe.sha1',
1177 ],
1178 },
1179
1180 # Pull down NPM dependencies for WebUI toolchain.
1181 {
1182 'name': 'webui_node_modules',
1183 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481184 'action': [ 'python',
Dan Jacquesda2309d2017-06-08 21:48:121185 'src/third_party/depot_tools/download_from_google_storage.py',
dpapadcbee6ab2017-01-14 03:05:531186 '--no_resume',
1187 '--extract',
1188 '--no_auth',
1189 '--bucket', 'chromium-nodejs',
1190 '-s', 'src/third_party/node/node_modules.tar.gz.sha1',
1191 ],
1192 },
kainino61f7bce2017-04-28 21:53:271193
Dirk Prankec1d528fc02017-11-03 15:15:031194 # Download Telemetry's binary dependencies via conditionals
1195 {
1196 'name': 'checkout_telemetry_binary_dependencies',
1197 'condition': 'checkout_telemetry_dependencies',
1198 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271199 'action': [ 'vpython',
Dirk Prankec1d528fc02017-11-03 15:15:031200 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1201 ],
1202 },
Miguel Casasbbcf56ca2017-12-21 00:50:281203 #
Stephen Martinis924a02d2017-11-08 10:12:031204 # Download Telemetry's benchmark binary dependencies via conditionals
1205 {
1206 'name': 'checkout_telemetry_benchmark_deps',
1207 'condition': 'checkout_telemetry_dependencies',
1208 'pattern': '.',
Nodir Turakuloveea875a2018-01-22 23:52:521209 'action': [ 'vpython',
Stephen Martinis924a02d2017-11-08 10:12:031210 'src/tools/perf/fetch_benchmark_deps.py',
1211 '-f',
1212 ],
1213 },
Dirk Prankec1d528fc02017-11-03 15:15:031214
kainino61f7bce2017-04-28 21:53:271215 # Download Telemetry's binary dependencies
Dirk Prankec1d528fc02017-11-03 15:15:031216 # TODO(crbug.com/780967) - remove this once the bots are setting the
1217 # `checkout_telemetry_dependencies` condition.
kainino61f7bce2017-04-28 21:53:271218 {
1219 'name': 'fetch_telemetry_binary_dependencies',
1220 'pattern': '.',
Nodir Turakulove2d81c32017-11-10 07:47:271221 'action': [ 'vpython',
Dirk Pranke4c3098b2017-10-10 18:57:221222 'src/tools/perf/conditionally_execute',
1223 '--gyp-condition', 'fetch_telemetry_dependencies=1',
kainino61f7bce2017-04-28 21:53:271224 'src/third_party/catapult/telemetry/bin/fetch_telemetry_binary_dependencies',
1225 ],
1226 },
John Budorickda2bfbb2017-05-30 22:17:591227
Dirk Pranke099b747b2017-10-06 04:29:091228 # This is used to ensure that all network operations are properly
1229 # annotated so we can document what they're for.
1230 {
1231 'name': 'tools_traffic_annotation_linux',
1232 'pattern': '.',
1233 'condition': 'host_os == "linux" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481234 'action': [ 'python',
Dirk Pranke099b747b2017-10-06 04:29:091235 'src/third_party/depot_tools/download_from_google_storage.py',
1236 '--no_resume',
Dirk Pranke099b747b2017-10-06 04:29:091237 '--no_auth',
1238 '--num_threads=4',
1239 '--bucket', 'chromium-tools-traffic_annotation',
1240 '-d', 'src/tools/traffic_annotation/bin/linux64',
1241 ],
1242 },
1243
Ramin Halavatib7e55d92017-11-21 08:00:571244# This is used to ensure that all network operations are properly
1245# annotated so we can document what they're for.
1246 {
1247 'name': 'tools_traffic_annotation_windows',
1248 'pattern': '.',
Ramin Halavati4478d112018-02-01 06:33:521249 'condition': 'host_os == "win" and checkout_traffic_annotation_tools',
Nodir Turakulovdd080902018-01-20 01:06:481250 'action': [ 'python',
Ramin Halavatib7e55d92017-11-21 08:00:571251 'src/third_party/depot_tools/download_from_google_storage.py',
1252 '--no_resume',
1253 '--no_auth',
1254 '--num_threads=4',
1255 '--bucket', 'chromium-tools-traffic_annotation',
1256 '-d', 'src/tools/traffic_annotation/bin/win32',
1257 ],
1258 },
1259
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401260 # Pull down Zucchini test data.
1261 {
1262 'name': 'zucchini_testdata',
1263 'pattern': '.',
Nodir Turakulovdd080902018-01-20 01:06:481264 'action': [ 'python',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401265 'src/third_party/depot_tools/download_from_google_storage.py',
1266 '--no_resume',
1267 '--no_auth',
huangs3bad8e22017-09-05 21:50:001268 '--num_threads=4',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401269 '--bucket', 'chromium-binary-patching',
Samuel Huang577ef6c2018-03-13 18:19:341270 '-d', 'src/components/zucchini/testdata',
Etienne Pierre-Doray44c7431c2017-08-21 19:42:401271 ],
1272 },
1273
Paweł Hajdan, Jre7eed642017-10-02 16:46:561274 {
John Budorick366124f2018-03-23 04:20:111275 # We're going to soon be using the gclient root directory as a CIPD root.
1276 # This hook is here to ensure that the conversion to that configuration
1277 # can be safely reverted and relanded if necessary, as removing the CIPD
1278 # root will force CIPD to actually reinstall all packages.
1279 'name': 'Clobber Upcoming GClient CIPD Root',
1280 'pattern': '.',
1281 'action': ['python',
1282 'src/build/cipd/clobber_cipd_root.py',
1283 '--root', '.',
1284 ],
1285 },
1286 {
John Budorickda801692018-02-21 23:24:281287 'name': 'Android CIPD Ensure',
1288 'pattern': '.',
1289 'condition': 'checkout_android',
1290 'action': ['src/build/cipd/cipd_wrapper.py',
1291 '--chromium-root', 'src',
1292 '--ensure-file', 'src/build/cipd/android/android.ensure',
1293 ],
1294 },
1295 {
George Burgess IV1f751e42018-01-23 22:10:001296 'name': 'Fetch Android AFDO profile',
1297 'pattern': '.',
1298 'condition': 'checkout_android',
1299 'action': ['vpython', 'src/chrome/android/profiles/update_afdo_profile.py'],
1300 },
1301 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561302 # This downloads SDK extras and puts them in the
1303 # third_party/android_tools/sdk/extras directory.
1304 'name': 'sdkextras',
1305 'pattern': '.',
1306 'condition': 'checkout_android',
1307 # When adding a new sdk extras package to download, add the package
1308 # directory and zip file to .gitignore in third_party/android_tools.
Nodir Turakulovdd080902018-01-20 01:06:481309 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051310 'src/build/android/play_services/update.py',
1311 'download'
Paweł Hajdan, Jre7eed642017-10-02 16:46:561312 ],
1313 },
John Budorickbbdcc492017-10-09 18:57:091314 # Download checkstyle for use in PRESUBMIT for Java changes.
1315 {
1316 'name': 'checkstyle',
1317 'pattern': '.',
1318 # Must also be downloaded on linux for use on chromium_presubmit.
1319 'condition': 'checkout_android or checkout_linux',
Nodir Turakulovdd080902018-01-20 01:06:481320 'action': [ 'python',
John Budorickbbdcc492017-10-09 18:57:091321 'src/third_party/depot_tools/download_from_google_storage.py',
1322 '--no_resume',
1323 '--no_auth',
1324 '--bucket', 'chromium-android-tools/checkstyle',
1325 '-s', 'src/third_party/checkstyle/checkstyle-8.0-all.jar.sha1'
1326 ],
1327 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561328 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561329 'name': 'gvr_static_shim_android_arm',
1330 'pattern': '\\.sha1',
1331 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481332 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271333 'src/third_party/depot_tools/download_from_google_storage.py',
1334 '--no_resume',
1335 '--no_auth',
1336 '--bucket', 'chromium-gvr-static-shim',
1337 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561338 ],
1339 },
1340 {
1341 'name': 'gvr_static_shim_android_arm64',
1342 'pattern': '\\.sha1',
1343 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481344 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271345 'src/third_party/depot_tools/download_from_google_storage.py',
1346 '--no_resume',
1347 '--no_auth',
1348 '--bucket', 'chromium-gvr-static-shim',
1349 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm64.a.sha1',
thakis973bb2432017-05-24 15:27:141350 ],
Paweł Hajdan, Jre7eed642017-10-02 16:46:561351 },
1352 {
Tibor Goldschwendt21235c82018-01-08 23:00:021353 'name': 'vr_assets',
1354 'pattern': '.',
Tibor Goldschwendtad8048f2018-02-05 18:26:001355 'condition': 'checkout_src_internal and checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481356 'action': ['python',
Tibor Goldschwendt21235c82018-01-08 23:00:021357 'src/third_party/depot_tools/download_from_google_storage.py',
1358 '--bucket', 'chrome-vr-assets',
1359 '--recursive',
1360 '--directory',
Tibor Goldschwendtfd6806b82018-02-14 22:32:501361 'src/chrome/browser/resources/vr/assets/google_chrome',
Tibor Goldschwendt21235c82018-01-08 23:00:021362 ],
1363 },
1364 {
Paweł Hajdan, Jre7eed642017-10-02 16:46:561365 'name': 'vr_controller_test_api',
1366 'pattern': '\\.sha1',
1367 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481368 'action': [ 'python',
Nodir Turakulove2d81c32017-11-10 07:47:271369 'src/third_party/depot_tools/download_from_google_storage.py',
1370 '--no_resume',
1371 '--no_auth',
1372 '--bucket', 'chromium-gvr-static-shim/controller_test_api',
1373 '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller_test_api.aar.sha1',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561374 ],
1375 },
1376 # Download VR test APKs only if the environment variable is set
1377 {
1378 'name': 'vr_test_apks',
1379 'pattern': '.',
1380 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481381 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051382 'src/third_party/gvr-android-sdk/test-apks/update.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561383 ],
1384 },
Bill Orr7cccdf572017-12-19 17:05:491385 # Download Oculus SDK if appropriate.
1386 {
1387 'name': 'libovr',
1388 'pattern': '.',
1389 'condition': 'checkout_oculus_sdk',
Nodir Turakulovdd080902018-01-20 01:06:481390 'action': ['python',
Bill Orr7cccdf572017-12-19 17:05:491391 'src/third_party/depot_tools/download_from_google_storage.py',
1392 '--bucket', 'chrome-oculus-sdk',
1393 '--recursive',
1394 '--num_threads=10',
1395 '--directory',
1396 'src/third_party/libovr/src',
1397 ],
1398 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561399 {
1400 # Pull doclava binaries if building for Android.
1401 'name': 'doclava',
1402 'pattern': '.',
1403 'condition': 'checkout_android',
Nodir Turakulovdd080902018-01-20 01:06:481404 'action': [ 'python',
John Budorickb80cf482017-11-07 19:32:051405 'src/build/android/download_doclava.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561406 ],
1407 },
1408
1409 {
1410 'name': 'fuchsia_sdk',
1411 'pattern': '.',
1412 'condition': 'checkout_fuchsia',
1413 'action': [
Nodir Turakulovdd080902018-01-20 01:06:481414 'python',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561415 'src/build/fuchsia/update_sdk.py',
Paweł Hajdan, Jre7eed642017-10-02 16:46:561416 ],
1417 },
Dan Jacques9731b23a2017-10-12 20:40:171418
1419 # Download and initialize "vpython" VirtualEnv environment packages.
1420 {
1421 'name': 'vpython_common',
1422 'pattern': '.',
1423 'action': [ 'vpython',
1424 '-vpython-spec', 'src/.vpython',
1425 '-vpython-tool', 'install',
1426 ],
1427 },
Paweł Hajdan, Jre7eed642017-10-02 16:46:561428]
scottmg4cd62bec2017-05-16 03:55:251429
jbudoricke6932bfd2016-09-07 02:09:221430recursedeps = [
bungeman1835f982016-09-28 18:33:221431 # buildtools provides clang_format, libc++, and libc++abi
1432 'src/buildtools',
jbudoricke6932bfd2016-09-07 02:09:221433 # ANGLE manages DEPS that it also owns the build files for, such as dEQP.
1434 ("src/third_party/angle", "DEPS.chromium"),
Paweł Hajdan, Jr37a7a742017-09-25 11:37:301435 # src-internal has its own DEPS file to pull additional internal repos
1436 'src-internal',
jbudoricke6932bfd2016-09-07 02:09:221437]