| 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 # The svn location to pull out dependencies from | 10 # The svn location to pull out dependencies from |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 }, | 363 }, |
| 364 { | 364 { |
| 365 'name': 'checked_in_dart_binaries', | 365 'name': 'checked_in_dart_binaries', |
| 366 'pattern': '.', | 366 'pattern': '.', |
| 367 'action': [ | 367 'action': [ |
| 368 'download_from_google_storage', | 368 'download_from_google_storage', |
| 369 '--no_auth', | 369 '--no_auth', |
| 370 '--no_resume', | 370 '--no_resume', |
| 371 '--bucket', | 371 '--bucket', |
| 372 'dart-dependencies', | 372 'dart-dependencies', |
| 373 '-d', | 373 '--recursive', |
| 374 '-r', | 374 '--directory', |
| 375 Var('dart_root') + '/tools/testing/bin', | 375 Var('dart_root') + '/tools/testing/bin', |
| 376 ], | 376 ], |
| 377 }, | 377 }, |
| 378 { | 378 { |
| 379 'name': 'd8_testing_binaries', | 379 'name': 'd8_testing_binaries', |
| 380 'pattern': '.', | 380 'pattern': '.', |
| 381 'action': [ | 381 'action': [ |
| 382 'download_from_google_storage', | 382 'download_from_google_storage', |
| 383 '--no_auth', | 383 '--no_auth', |
| 384 '--no_resume', | 384 '--no_resume', |
| 385 '--bucket', | 385 '--bucket', |
| 386 'dart-dependencies', | 386 'dart-dependencies', |
| 387 '-d', | 387 '--recursive', |
| 388 '-r', | 388 '--directory', |
| 389 Var('dart_root') + '/third_party/d8', | 389 Var('dart_root') + '/third_party/d8', |
| 390 ], | 390 ], |
| 391 }, | 391 }, |
| 392 | 392 { |
| 393 "name": "checked_in_dart_sdks", |
| 394 "pattern": ".", |
| 395 "action": [ |
| 396 "download_from_google_storage", |
| 397 "--no_auth", |
| 398 "--no_resume", |
| 399 "--bucket", |
| 400 "dart-dependencies", |
| 401 "--recursive", |
| 402 "--auto_platform", |
| 403 "--extract", |
| 404 "--directory", |
| 405 Var('dart_root') + "/tools/sdks", |
| 406 ], |
| 407 }, |
| 393 ] | 408 ] |
| OLD | NEW |