| 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 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 # Revisions of /third_party/* dependencies. | 31 # Revisions of /third_party/* dependencies. |
| 32 "args_tag": "@0.13.4", | 32 "args_tag": "@0.13.4", |
| 33 "async_tag": "@1.9.0", | 33 "async_tag": "@1.9.0", |
| 34 "barback-0.13.0_rev": "@34853", | 34 "barback-0.13.0_rev": "@34853", |
| 35 "barback-0.14.0_rev": "@36398", | 35 "barback-0.14.0_rev": "@36398", |
| 36 "barback-0.14.1_rev": "@38525", | 36 "barback-0.14.1_rev": "@38525", |
| 37 "barback_tag" : "@0.15.2+7", | 37 "barback_tag" : "@0.15.2+7", |
| 38 "bazel_worker_tag": "@v0.1.0", | 38 "bazel_worker_tag": "@v0.1.0", |
| 39 "boolean_selector_tag" : "@1.0.0", | 39 "boolean_selector_tag" : "@1.0.0", |
| 40 "boringssl_rev" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", | 40 "boringssl_rev" : "@c880e42ba1c8032d4cdde2aba0541d8a9d9fa2e9", |
| 41 "charcode_tag": "@1.1.0", | 41 "charcode_tag": "@1.1.0", |
| 42 "chrome_rev" : "@19997", | 42 "chrome_rev" : "@19997", |
| 43 "cli_util_tag" : "@0.0.1+2", | 43 "cli_util_tag" : "@0.0.1+2", |
| 44 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", | 44 "collection_rev": "@f6135e6350c63eb3f4dd12953b8d4363faff16fc", |
| 45 "convert_tag": "@1.0.0", | 45 "convert_tag": "@1.0.0", |
| 46 "crypto_tag" : "@1.1.0", | 46 "crypto_tag" : "@1.1.0", |
| 47 "csslib_tag" : "@0.12.0", | 47 "csslib_tag" : "@0.12.0", |
| 48 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 48 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
| 49 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 49 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
| 50 "dart_style_tag": "@0.2.4", | 50 "dart_style_tag": "@0.2.4", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 453 "--extract", | 453 "--extract", |
| 454 "-s", | 454 "-s", |
| 455 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 455 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 456 ], | 456 ], |
| 457 }, | 457 }, |
| 458 { | 458 { |
| 459 "pattern": ".", | 459 "pattern": ".", |
| 460 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 460 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 461 }, | 461 }, |
| 462 ] | 462 ] |
| OLD | NEW |