| 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 |
| 11 # consistency between what users see and what the bots see. | 11 # consistency between what users see and what the bots see. |
| 12 # We need the mirrors to not have 100+ bots pulling github constantly. | 12 # We need the mirrors to not have 100+ bots pulling github constantly. |
| 13 # We mirror our github repos on chromium git servers. | 13 # We mirror our github repos on chromium git servers. |
| 14 # DO NOT use this var if you don't see a mirror here: | 14 # DO NOT use this var if you don't see a mirror here: |
| 15 # https://chromium.googlesource.com/ | 15 # https://chromium.googlesource.com/ |
| 16 # named like: | 16 # named like: |
| 17 # external/github.com/dart-lang/NAME | 17 # external/github.com/dart-lang/NAME |
| 18 # It is ok to add a dependency directly on dart-lang (dart-lang only) | 18 # It is ok to add a dependency directly on dart-lang (dart-lang only) |
| 19 # github repo until the mirror has been created, but please do file a bug | 19 # github repo until the mirror has been created, but please do file a bug |
| 20 # against infra to make that happen. | 20 # against infra to make that happen. |
| 21 "github_mirror": | 21 "github_mirror": |
| 22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 22 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", |
| 23 | 23 |
| 24 # Only use this temporarily while waiting for a mirror for a new package. | 24 # Only use this temporarily while waiting for a mirror for a new package. |
| 25 "github_dartlang": "https://github.com/dart-lang/%s.git", | 25 "github_dartlang": "https://github.com/dart-lang/%s.git", |
| 26 | 26 |
| 27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 27 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
| 28 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", | 28 "co19_rev": "@c5185eab2f2769d83515025df00410021c781ba5", |
| 29 "chromium_git": "https://chromium.googlesource.com", | 29 "chromium_git": "https://chromium.googlesource.com", |
| 30 | 30 |
| 31 # Revisions of /third_party/* dependencies. | 31 # Revisions of /third_party/* dependencies. |
| 32 "args_tag": "@0.13.4", | 32 "args_tag": "@0.13.4", |
| 33 "async_tag": "@1.10.0", | 33 "async_tag": "@1.10.0", |
| 34 "barback-0.13.0_rev": "@34853", | 34 "barback-0.13.0_rev": "@34853", |
| 35 "barback-0.14.0_rev": "@36398", | 35 "barback-0.14.0_rev": "@36398", |
| 36 "barback-0.14.1_rev": "@38525", | 36 "barback-0.14.1_rev": "@38525", |
| 37 "barback_tag" : "@0.15.2+7", | 37 "barback_tag" : "@0.15.2+7", |
| 38 "bazel_worker_tag": "@v0.1.0", | 38 "bazel_worker_tag": "@v0.1.0", |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 "--extract", | 453 "--extract", |
| 454 "-s", | 454 "-s", |
| 455 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 455 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 456 ], | 456 ], |
| 457 }, | 457 }, |
| 458 { | 458 { |
| 459 "pattern": ".", | 459 "pattern": ".", |
| 460 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 460 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 461 }, | 461 }, |
| 462 ] | 462 ] |
| OLD | NEW |