| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "plugin_tag": "@0.2.0", | 79 "plugin_tag": "@0.2.0", |
| 80 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", | 80 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", |
| 81 "pool_tag": "@1.2.1", | 81 "pool_tag": "@1.2.1", |
| 82 "protobuf_tag": "@0.5.1+1", | 82 "protobuf_tag": "@0.5.1+1", |
| 83 "pub_cache_tag": "@v0.1.0", | 83 "pub_cache_tag": "@v0.1.0", |
| 84 "pub_rev": "@488ab539770512a234f0a01b74882dcbb3f1a4da", | 84 "pub_rev": "@488ab539770512a234f0a01b74882dcbb3f1a4da", |
| 85 "pub_semver_tag": "@1.2.1", | 85 "pub_semver_tag": "@1.2.1", |
| 86 "quiver_tag": "@0.21.4", | 86 "quiver_tag": "@0.21.4", |
| 87 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1", | 87 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1", |
| 88 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc", | 88 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc", |
| 89 "scheduled_test_tag": "@0.12.5+5", | 89 "scheduled_test_tag": "@0.12.5+2", |
| 90 "shelf_static_tag": "@0.2.3+1", | 90 "shelf_static_tag": "@0.2.3+1", |
| 91 "shelf_tag": "@0.6.5", | 91 "shelf_tag": "@0.6.5", |
| 92 "shelf_web_socket_tag": "@0.2.0", | 92 "shelf_web_socket_tag": "@0.2.0", |
| 93 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", | 93 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", |
| 94 "source_map_stack_trace_tag": "@1.0.4", | 94 "source_map_stack_trace_tag": "@1.0.4", |
| 95 "source_maps-0.9.4_rev": "@38524", | 95 "source_maps-0.9.4_rev": "@38524", |
| 96 "source_maps_tag": "@0.10.1", | 96 "source_maps_tag": "@0.10.1", |
| 97 "source_span_tag": "@1.2.0", | 97 "source_span_tag": "@1.2.0", |
| 98 "stack_trace_tag": "@1.4.2", | 98 "stack_trace_tag": "@1.4.2", |
| 99 "stream_channel_tag": "@1.3.1", | 99 "stream_channel_tag": "@1.3.1", |
| (...skipping 360 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 |