| 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 29 matching lines...) Expand all Loading... |
| 40 "7zip_rev" : "@19997", | 40 "7zip_rev" : "@19997", |
| 41 "args_tag": "@0.13.0", | 41 "args_tag": "@0.13.0", |
| 42 "async_tag": "@1.4.0", | 42 "async_tag": "@1.4.0", |
| 43 "barback_tag" : "@0.15.2+7", | 43 "barback_tag" : "@0.15.2+7", |
| 44 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", | 44 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", |
| 45 "charcode_tag": "@1.1.0", | 45 "charcode_tag": "@1.1.0", |
| 46 "chrome_rev" : "@19997", | 46 "chrome_rev" : "@19997", |
| 47 "clang_rev" : "@28450", | 47 "clang_rev" : "@28450", |
| 48 "cli_util_tag" : "@0.0.1+2", | 48 "cli_util_tag" : "@0.0.1+2", |
| 49 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", | 49 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", |
| 50 "convert_tag": "@1.0.1", | 50 "convert_tag": "@1.0.0", |
| 51 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", | 51 "crypto_rev" : "@2df57a1e26dd88e8d0614207d4b062c73209917d", |
| 52 "csslib_tag" : "@0.12.0", | 52 "csslib_tag" : "@0.12.0", |
| 53 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 53 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
| 54 "dartdoc_tag" : "@v0.8.4", | 54 "dartdoc_tag" : "@v0.8.4", |
| 55 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 55 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
| 56 "dart_style_tag": "@0.2.2", | 56 "dart_style_tag": "@0.2.2", |
| 57 "dev_compiler_rev": "@0.1.9", | 57 "dev_compiler_rev": "@0.1.9", |
| 58 "fake_async_rev" : "@38614", | 58 "fake_async_rev" : "@38614", |
| 59 "firefox_jsshell_rev" : "@45554", | 59 "firefox_jsshell_rev" : "@45554", |
| 60 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", | 60 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", |
| (...skipping 324 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 |