| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 "string_scanner_tag": "@0.1.4", | 90 "string_scanner_tag": "@0.1.4", |
| 91 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", | 91 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", |
| 92 "test_tag": "@0.12.12", | 92 "test_tag": "@0.12.12", |
| 93 "test_reflective_loader_tag": "@0.0.3", | 93 "test_reflective_loader_tag": "@0.0.3", |
| 94 "typed_data_tag": "@1.1.2", | 94 "typed_data_tag": "@1.1.2", |
| 95 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", | 95 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", |
| 96 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", | 96 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", |
| 97 "watcher_tag": "@0.9.7", | 97 "watcher_tag": "@0.9.7", |
| 98 "when_tag": "@0.2.0+2", | 98 "when_tag": "@0.2.0+2", |
| 99 "which_tag": "@0.1.3+1", | 99 "which_tag": "@0.1.3+1", |
| 100 "web_components_rev": "@0e636b534d9b12c9e96f841e6679398e91a986ec", | 100 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", |
| 101 "web_socket_channel_tag": "@1.0.0", | 101 "web_socket_channel_tag": "@1.0.0", |
| 102 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", | 102 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", |
| 103 "yaml_tag": "@2.1.5", | 103 "yaml_tag": "@2.1.5", |
| 104 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 104 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 105 "barback-0.13.0_rev": "@34853", | 105 "barback-0.13.0_rev": "@34853", |
| 106 "barback-0.14.0_rev": "@36398", | 106 "barback-0.14.0_rev": "@36398", |
| 107 "barback-0.14.1_rev": "@38525", | 107 "barback-0.14.1_rev": "@38525", |
| 108 "source_maps-0.9.4_rev": "@38524", | 108 "source_maps-0.9.4_rev": "@38524", |
| 109 } | 109 } |
| 110 | 110 |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 "--extract", | 441 "--extract", |
| 442 "-s", | 442 "-s", |
| 443 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 443 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 444 ], | 444 ], |
| 445 }, | 445 }, |
| 446 { | 446 { |
| 447 "pattern": ".", | 447 "pattern": ".", |
| 448 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 448 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 449 }, | 449 }, |
| 450 ] | 450 ] |
| OLD | NEW |