Chromium Code Reviews| 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 101 "shelf_web_socket_tag": "@0.2.0", | 101 "shelf_web_socket_tag": "@0.2.0", |
| 102 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", | 102 "smoke_rev" : "@f3361191cc2a85ebc1e4d4c33aec672d7915aba9", |
| 103 "source_map_stack_trace_tag": "@1.0.4", | 103 "source_map_stack_trace_tag": "@1.0.4", |
| 104 "source_maps-0.9.4_rev": "@38524", | 104 "source_maps-0.9.4_rev": "@38524", |
| 105 "source_maps_tag": "@0.10.1", | 105 "source_maps_tag": "@0.10.1", |
| 106 "source_span_tag": "@1.2.0", | 106 "source_span_tag": "@1.2.0", |
| 107 "stack_trace_tag": "@1.4.2", | 107 "stack_trace_tag": "@1.4.2", |
| 108 "stream_channel_tag": "@1.5.0", | 108 "stream_channel_tag": "@1.5.0", |
| 109 "string_scanner_tag": "@0.1.4", | 109 "string_scanner_tag": "@0.1.4", |
| 110 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", | 110 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", |
| 111 "test_reflective_loader_tag": "@0.0.3", | 111 "test_reflective_loader_tag": "@1630a63f151871197c1cf92f07f2d9debe0ea38d", |
|
kevmoo
2016/08/31 20:48:13
not a tag, right?
scheglov
2016/08/31 20:49:38
right
| |
| 112 "test_tag": "@0.12.15+1", | 112 "test_tag": "@0.12.15+1", |
| 113 "typed_data_tag": "@1.1.2", | 113 "typed_data_tag": "@1.1.2", |
| 114 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", | 114 "usage_rev": "@b5080dac0d26a5609b266f8fdb0d053bc4c1c638", |
| 115 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", | 115 "utf_rev": "@1f55027068759e2d52f2c12de6a57cce5f3c5ee6", |
| 116 "watcher_tag": "@0.9.7+2", | 116 "watcher_tag": "@0.9.7+2", |
| 117 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", | 117 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", |
| 118 "web_socket_channel_tag": "@1.0.4", | 118 "web_socket_channel_tag": "@1.0.4", |
| 119 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", | 119 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", |
| 120 "when_tag": "@0.2.0+2", | 120 "when_tag": "@0.2.0+2", |
| 121 "which_tag": "@0.1.3+1", | 121 "which_tag": "@0.1.3+1", |
| (...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 484 "--extract", | 484 "--extract", |
| 485 "-s", | 485 "-s", |
| 486 Var('dart_root') + "/third_party/clang.tar.gz.sha1", | 486 Var('dart_root') + "/third_party/clang.tar.gz.sha1", |
| 487 ], | 487 ], |
| 488 }, | 488 }, |
| 489 { | 489 { |
| 490 "pattern": ".", | 490 "pattern": ".", |
| 491 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], | 491 "action": ["python", Var("dart_root") + "/tools/gyp_dart.py"], |
| 492 }, | 492 }, |
| 493 ] | 493 ] |
| OLD | NEW |