| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 # Revisions of /third_party/* dependencies. | 39 # Revisions of /third_party/* dependencies. |
| 40 "args_tag": "@0.13.5", | 40 "args_tag": "@0.13.5", |
| 41 "async_tag": "@1.11.1", | 41 "async_tag": "@1.11.1", |
| 42 "barback-0.13.0_rev": "@34853", | 42 "barback-0.13.0_rev": "@34853", |
| 43 "barback-0.14.0_rev": "@36398", | 43 "barback-0.14.0_rev": "@36398", |
| 44 "barback-0.14.1_rev": "@38525", | 44 "barback-0.14.1_rev": "@38525", |
| 45 "barback_tag" : "@0.15.2+9", | 45 "barback_tag" : "@0.15.2+9", |
| 46 "bazel_worker_tag": "@0.1.1", | 46 "bazel_worker_tag": "@0.1.1", |
| 47 "boolean_selector_tag" : "@1.0.2", | 47 "boolean_selector_tag" : "@1.0.2", |
| 48 "boringssl_gen_rev": "@e3a1b341a3890ab10d372dc2fe6d1c6798828293", | 48 "boringssl_gen_rev": "@ef64e76254a12ee08a7142c825aa59ea32005958", |
| 49 "boringssl_rev" : "@8d343b44bbab829d1a28fdef650ca95f7db4412e", | 49 "boringssl_rev" : "@8d343b44bbab829d1a28fdef650ca95f7db4412e", |
| 50 "charcode_tag": "@1.1.0", | 50 "charcode_tag": "@1.1.0", |
| 51 "chrome_rev" : "@19997", | 51 "chrome_rev" : "@19997", |
| 52 "cli_util_tag" : "@0.0.1+2", | 52 "cli_util_tag" : "@0.0.1+2", |
| 53 "code_transformers_tag": "@v0.4.2+3", | 53 "code_transformers_tag": "@v0.4.2+3", |
| 54 "collection_tag": "@1.9.1", | 54 "collection_tag": "@1.9.1", |
| 55 "convert_tag": "@2.0.1", | 55 "convert_tag": "@2.0.1", |
| 56 "crypto_tag" : "@2.0.1", | 56 "crypto_tag" : "@2.0.1", |
| 57 "csslib_tag" : "@0.13.2", | 57 "csslib_tag" : "@0.13.2", |
| 58 "dart2js_info_tag" : "@0.2.7+1", | 58 "dart2js_info_tag" : "@0.2.7+1", |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 495 "--extract", | 495 "--extract", |
| 496 "-s", | 496 "-s", |
| 497 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 497 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 498 ], | 498 ], |
| 499 }, | 499 }, |
| 500 { | 500 { |
| 501 "pattern": ".", | 501 "pattern": ".", |
| 502 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 502 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 503 }, | 503 }, |
| 504 ] | 504 ] |
| OLD | NEW |