| 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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 285 Var("dart_root") + "/third_party/cygwin": | 285 Var("dart_root") + "/third_party/cygwin": |
| 286 Var("chromium_git") + "/chromium/deps/cygwin.git" + | 286 Var("chromium_git") + "/chromium/deps/cygwin.git" + |
| 287 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", | 287 "@c89e446b273697fadf3a10ff1007a97c0b7de6df", |
| 288 }, | 288 }, |
| 289 } | 289 } |
| 290 | 290 |
| 291 # TODO(iposva): Move the necessary tools so that hooks can be run | 291 # TODO(iposva): Move the necessary tools so that hooks can be run |
| 292 # without the runtime being available. | 292 # without the runtime being available. |
| 293 hooks = [ | 293 hooks = [ |
| 294 { | 294 { |
| 295 "pattern": ".", | |
| 296 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | |
| 297 }, | |
| 298 { | |
| 299 'name': 'd8_testing_binaries', | 295 'name': 'd8_testing_binaries', |
| 300 'pattern': '.', | 296 'pattern': '.', |
| 301 'action': [ | 297 'action': [ |
| 302 'download_from_google_storage', | 298 'download_from_google_storage', |
| 303 '--no_auth', | 299 '--no_auth', |
| 304 '--no_resume', | 300 '--no_resume', |
| 305 '--bucket', | 301 '--bucket', |
| 306 'dart-dependencies', | 302 'dart-dependencies', |
| 307 '--recursive', | 303 '--recursive', |
| 308 '--directory', | 304 '--directory', |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 422 "--no_auth", | 418 "--no_auth", |
| 423 "--no_resume", | 419 "--no_resume", |
| 424 "--bucket", | 420 "--bucket", |
| 425 "dart-dependencies", | 421 "dart-dependencies", |
| 426 "--platform=linux*", | 422 "--platform=linux*", |
| 427 "--extract", | 423 "--extract", |
| 428 "-s", | 424 "-s", |
| 429 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 425 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 430 ], | 426 ], |
| 431 }, | 427 }, |
| 428 { |
| 429 "pattern": ".", |
| 430 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 431 }, |
| 432 ] | 432 ] |
| OLD | NEW |