| 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 26 matching lines...) Expand all Loading... |
| 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" : "@daeafc22c66ad48f6b32fc8d3362eb9ba31b774e", |
| 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 "code_transformers_rev": "@bfe9799e88d9c231747435e1c1d2495ef5ecd966", | 44 "code_transformers_rev": "@bfe9799e88d9c231747435e1c1d2495ef5ecd966", |
| 45 "collection_tag": "@1.6.0", | 45 "collection_tag": "@1.6.0", |
| 46 "convert_tag": "@1.0.0", | 46 "convert_tag": "@1.0.0", |
| 47 "crypto_tag" : "@1.1.0", | 47 "crypto_tag" : "@1.1.1", |
| 48 "csslib_tag" : "@0.12.0", | 48 "csslib_tag" : "@0.12.0", |
| 49 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", | 49 "dart2js_info_rev" : "@0a221eaf16aec3879c45719de656680ccb80d8a1", |
| 50 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", | 50 "dart_services_rev" : "@7aea2574e6f3924bf409a80afb8ad52aa2be4f97", |
| 51 "dart_style_tag": "@0.2.4", | 51 "dart_style_tag": "@0.2.4", |
| 52 "dartdoc_tag" : "@v0.9.0", | 52 "dartdoc_tag" : "@v0.9.0", |
| 53 "dev_compiler_rev": "@7f68e5ef424dd26344572daf02595ab23fb16941", | 53 "dev_compiler_rev": "@7f68e5ef424dd26344572daf02595ab23fb16941", |
| 54 "fixnum_tag": "@0.10.5", | 54 "fixnum_tag": "@0.10.5", |
| 55 "func_rev": "@8d4aea75c21be2179cb00dc2b94a71414653094e", | 55 "func_rev": "@8d4aea75c21be2179cb00dc2b94a71414653094e", |
| 56 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", | 56 "glob_rev": "@704cf75e4f26b417505c5c611bdaacd8808467dd", |
| 57 "html_tag" : "@0.12.1+1", | 57 "html_tag" : "@0.12.1+1", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 "--extract", | 460 "--extract", |
| 461 "-s", | 461 "-s", |
| 462 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 462 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 463 ], | 463 ], |
| 464 }, | 464 }, |
| 465 { | 465 { |
| 466 "pattern": ".", | 466 "pattern": ".", |
| 467 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 467 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 468 }, | 468 }, |
| 469 ] | 469 ] |
| OLD | NEW |