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 11 matching lines...) Expand all Loading... |
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 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 24 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
25 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", | 25 "co19_rev": "@3ed795ea02e022ef19c77cf1b6095b7c8f5584d0", |
26 "chromium_git": "https://chromium.googlesource.com", | 26 "chromium_git": "https://chromium.googlesource.com", |
27 | 27 |
28 # Revisions of /third_party/* dependencies. | 28 # Revisions of /third_party/* dependencies. |
29 "args_tag": "@0.13.0", | 29 "args_tag": "@0.13.0", |
30 "async_tag": "@1.4.0", | 30 "async_tag": "@1.4.0", |
31 "barback_tag" : "@0.15.2+7", | 31 "barback_tag" : "@0.15.2+7", |
32 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", | 32 "boringssl_rev" : "@afe57cb14d36f70ad4a109fc5e7765d1adc67035", |
33 "charcode_tag": "@1.1.0", | 33 "charcode_tag": "@1.1.0", |
34 "chrome_rev" : "@19997", | 34 "chrome_rev" : "@19997", |
35 "cli_util_tag" : "@0.0.1+2", | 35 "cli_util_tag" : "@0.0.1+2", |
36 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", | 36 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", |
37 "convert_tag": "@1.0.0", | 37 "convert_tag": "@1.0.0", |
38 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", | 38 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", |
39 "csslib_tag" : "@0.12.0", | 39 "csslib_tag" : "@0.12.0", |
40 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 40 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
41 "dartdoc_tag" : "@v0.8.5", | 41 "dartdoc_tag" : "@v0.8.5", |
42 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 42 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 "--no_resume", | 434 "--no_resume", |
435 "--bucket", | 435 "--bucket", |
436 "dart-dependencies", | 436 "dart-dependencies", |
437 "--platform=linux*", | 437 "--platform=linux*", |
438 "--extract", | 438 "--extract", |
439 "-s", | 439 "-s", |
440 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 440 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
441 ], | 441 ], |
442 }, | 442 }, |
443 ] | 443 ] |
OLD | NEW |