| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "oauth2_tag": "@1.0.0", | 81 "oauth2_tag": "@1.0.0", |
| 82 "observatory_pub_packages_rev": "@e5e1e543bea10d4bed95b22ad3e7aa2b20a23584", | 82 "observatory_pub_packages_rev": "@e5e1e543bea10d4bed95b22ad3e7aa2b20a23584", |
| 83 "observe_rev": "@eee2b8ec34236fa46982575fbccff84f61202ac6", | 83 "observe_rev": "@eee2b8ec34236fa46982575fbccff84f61202ac6", |
| 84 "package_config_rev": "@1.0.0", | 84 "package_config_rev": "@1.0.0", |
| 85 "path_tag": "@1.3.6", | 85 "path_tag": "@1.3.6", |
| 86 "plugin_tag": "@0.2.0", | 86 "plugin_tag": "@0.2.0", |
| 87 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", | 87 "ply_rev": "@604b32590ffad5cbb82e4afef1d305512d06ae93", |
| 88 "pool_tag": "@1.2.1", | 88 "pool_tag": "@1.2.1", |
| 89 "protobuf_tag": "@0.5.1+1", | 89 "protobuf_tag": "@0.5.1+1", |
| 90 "pub_cache_tag": "@v0.1.0", | 90 "pub_cache_tag": "@v0.1.0", |
| 91 "pub_rev": "@391b445dc6b28958794658b18caedb69d8cf8719", | 91 "pub_rev": "@02443903ebaada11cad89386ad6d0202d2dbee38", |
| 92 "pub_semver_tag": "@1.3.0", | 92 "pub_semver_tag": "@1.3.0", |
| 93 "quiver_tag": "@0.21.4", | 93 "quiver_tag": "@0.21.4", |
| 94 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1", | 94 "resource_rev":"@a49101ba2deb29c728acba6fb86000a8f730f4b1", |
| 95 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc", | 95 "root_certificates_rev": "@aed07942ce98507d2be28cbd29e879525410c7fc", |
| 96 "scheduled_test_tag": "@0.12.6", | 96 "scheduled_test_tag": "@0.12.6", |
| 97 "shelf_static_tag": "@0.2.3+4", | 97 "shelf_static_tag": "@0.2.3+4", |
| 98 "shelf_tag": "@0.6.5+2", | 98 "shelf_tag": "@0.6.5+2", |
| 99 "shelf_web_socket_tag": "@0.2.0", | 99 "shelf_web_socket_tag": "@0.2.0", |
| 100 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", | 100 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", |
| 101 "source_map_stack_trace_tag": "@1.0.4", | 101 "source_map_stack_trace_tag": "@1.0.4", |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 477 "--extract", | 477 "--extract", |
| 478 "-s", | 478 "-s", |
| 479 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 479 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 480 ], | 480 ], |
| 481 }, | 481 }, |
| 482 { | 482 { |
| 483 "pattern": ".", | 483 "pattern": ".", |
| 484 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 484 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 485 }, | 485 }, |
| 486 ] | 486 ] |
| OLD | NEW |