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 20 matching lines...) Expand all Loading... |
31 "github_mirror": | 31 "github_mirror": |
32 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", | 32 "https://chromium.googlesource.com/external/github.com/dart-lang/%s.git", |
33 | 33 |
34 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", | 34 "gyp_rev": "@6ee91ad8659871916f9aa840d42e1513befdf638", |
35 "co19_rev": "@ead3698f33d2cd41e75b6ce5d4a1203767cedd50", | 35 "co19_rev": "@ead3698f33d2cd41e75b6ce5d4a1203767cedd50", |
36 "chromium_url": "http://src.chromium.org/svn", | 36 "chromium_url": "http://src.chromium.org/svn", |
37 "chromium_git": "https://chromium.googlesource.com", | 37 "chromium_git": "https://chromium.googlesource.com", |
38 | 38 |
39 # Revisions of /third_party/* dependencies. | 39 # Revisions of /third_party/* dependencies. |
40 "7zip_rev" : "@19997", | 40 "7zip_rev" : "@19997", |
41 "analyzer_cli_rev" : "@a045e0e4c2b0c904354d8cba2a9bc2f9ed405ee9", | 41 "analyzer_cli_rev" : "@c7a22746baaa8ee6b3e6b0378f9ad9de6e486186", |
42 "args_tag": "@0.13.0", | 42 "args_tag": "@0.13.0", |
43 "async_tag": "@1.2.0", | 43 "async_tag": "@1.2.0", |
44 "barback_tag" : "@0.15.2+7", | 44 "barback_tag" : "@0.15.2+7", |
45 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", | 45 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", |
46 "charcode_tag": "@1.1.0", | 46 "charcode_tag": "@1.1.0", |
47 "chrome_rev" : "@19997", | 47 "chrome_rev" : "@19997", |
48 "clang_rev" : "@28450", | 48 "clang_rev" : "@28450", |
49 "cli_util_tag" : "@0.0.1+2", | 49 "cli_util_tag" : "@0.0.1+2", |
50 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", | 50 "collection_rev": "@1da9a07f32efa2ba0c391b289e2037391e31da0e", |
51 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", | 51 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 "--bucket", | 385 "--bucket", |
386 "dart-dependencies", | 386 "dart-dependencies", |
387 "--recursive", | 387 "--recursive", |
388 "--auto_platform", | 388 "--auto_platform", |
389 "--extract", | 389 "--extract", |
390 "--directory", | 390 "--directory", |
391 Var('dart_root') + "/tools/sdks", | 391 Var('dart_root') + "/tools/sdks", |
392 ], | 392 ], |
393 }, | 393 }, |
394 ] | 394 ] |
OLD | NEW |