OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 vars = { | 5 vars = { |
6 # The dart_root is the root of our sdk checkout. This is normally | 6 # The dart_root is the root of our sdk checkout. This is normally |
7 # simply sdk, but if using special gclient specs it can be different. | 7 # simply sdk, but if using special gclient specs it can be different. |
8 "dart_root": "sdk", | 8 "dart_root": "sdk", |
9 | 9 |
10 # We use mirrors of all github repos to guarantee reproducibility and | 10 # We use mirrors of all github repos to guarantee reproducibility and |
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 } | 286 } |
287 | 287 |
288 # TODO(iposva): Move the necessary tools so that hooks can be run | 288 # TODO(iposva): Move the necessary tools so that hooks can be run |
289 # without the runtime being available. | 289 # without the runtime being available. |
290 hooks = [ | 290 hooks = [ |
291 { | 291 { |
292 "pattern": ".", | 292 "pattern": ".", |
293 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 293 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
294 }, | 294 }, |
295 { | 295 { |
296 'name': 'checked_in_dart_binaries', | |
297 'pattern': '.', | |
298 'action': [ | |
299 'download_from_google_storage', | |
300 '--no_auth', | |
301 '--no_resume', | |
302 '--bucket', | |
303 'dart-dependencies', | |
304 '--recursive', | |
305 '--directory', | |
306 Var('dart_root') + '/tools/testing/bin', | |
307 ], | |
308 }, | |
309 { | |
310 'name': 'd8_testing_binaries', | 296 'name': 'd8_testing_binaries', |
311 'pattern': '.', | 297 'pattern': '.', |
312 'action': [ | 298 'action': [ |
313 'download_from_google_storage', | 299 'download_from_google_storage', |
314 '--no_auth', | 300 '--no_auth', |
315 '--no_resume', | 301 '--no_resume', |
316 '--bucket', | 302 '--bucket', |
317 'dart-dependencies', | 303 'dart-dependencies', |
318 '--recursive', | 304 '--recursive', |
319 '--directory', | 305 '--directory', |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 "--no_resume", | 420 "--no_resume", |
435 "--bucket", | 421 "--bucket", |
436 "dart-dependencies", | 422 "dart-dependencies", |
437 "--platform=linux*", | 423 "--platform=linux*", |
438 "--extract", | 424 "--extract", |
439 "-s", | 425 "-s", |
440 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 426 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
441 ], | 427 ], |
442 }, | 428 }, |
443 ] | 429 ] |
OLD | NEW |