| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 "source_map_stack_trace_tag": "@1.0.4", | 101 "source_map_stack_trace_tag": "@1.0.4", |
| 102 "source_span_tag": "@1.1.2", | 102 "source_span_tag": "@1.1.2", |
| 103 "stack_trace_tag": "@1.3.4", | 103 "stack_trace_tag": "@1.3.4", |
| 104 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", | 104 "string_scanner_rev": "@3e7617d6f74ba382e9b6130b1cc12091d89a9bc5", |
| 105 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", | 105 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", |
| 106 "test_tag": "@0.12.3+8", | 106 "test_tag": "@0.12.3+8", |
| 107 "test_reflective_loader_tag": "@0.0.3", | 107 "test_reflective_loader_tag": "@0.0.3", |
| 108 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", | 108 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", |
| 109 "unittest_tag": "@0.11.6", | 109 "unittest_tag": "@0.11.6", |
| 110 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", | 110 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", |
| 111 "watcher_tag": "@0.9.6", | 111 "watcher_tag": "@0.9.7", |
| 112 "when_tag": "@0.2.0+2", | 112 "when_tag": "@0.2.0+2", |
| 113 "which_tag": "@0.1.3+1", | 113 "which_tag": "@0.1.3+1", |
| 114 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", | 114 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", |
| 115 "WebCore_rev" : "@44061", | 115 "WebCore_rev" : "@44061", |
| 116 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", | 116 "yaml_rev": "@563a5ffd4a800a2897b8f4dd6b19f2a370df2f2b", |
| 117 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 117 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 118 "font_awesome_rev": "@31824", | 118 "font_awesome_rev": "@31824", |
| 119 "barback-0.13.0_rev": "@34853", | 119 "barback-0.13.0_rev": "@34853", |
| 120 "barback-0.14.0_rev": "@36398", | 120 "barback-0.14.0_rev": "@36398", |
| 121 "barback-0.14.1_rev": "@38525", | 121 "barback-0.14.1_rev": "@38525", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 '--no_resume', | 384 '--no_resume', |
| 385 '--bucket', | 385 '--bucket', |
| 386 'dart-dependencies', | 386 'dart-dependencies', |
| 387 '-d', | 387 '-d', |
| 388 '-r', | 388 '-r', |
| 389 Var('dart_root') + '/third_party/d8', | 389 Var('dart_root') + '/third_party/d8', |
| 390 ], | 390 ], |
| 391 }, | 391 }, |
| 392 | 392 |
| 393 ] | 393 ] |
| OLD | NEW |