| 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "string_scanner_tag": "@1.0.1", | 115 "string_scanner_tag": "@1.0.1", |
| 116 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", | 116 "sunflower_rev": "@879b704933413414679396b129f5dfa96f7a0b1e", |
| 117 "test_reflective_loader_tag": "@0.1.0", | 117 "test_reflective_loader_tag": "@0.1.0", |
| 118 "test_tag": "@0.12.18+1", | 118 "test_tag": "@0.12.18+1", |
| 119 "typed_data_tag": "@1.1.3", | 119 "typed_data_tag": "@1.1.3", |
| 120 "usage_tag": "@v3.0.0+1", | 120 "usage_tag": "@v3.0.0+1", |
| 121 "utf_tag": "@0.9.0+3", | 121 "utf_tag": "@0.9.0+3", |
| 122 "watcher_tag": "@0.9.7+3", | 122 "watcher_tag": "@0.9.7+3", |
| 123 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", | 123 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", |
| 124 "web_socket_channel_tag": "@1.0.4", | 124 "web_socket_channel_tag": "@1.0.4", |
| 125 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", | 125 "WebCore_rev": "@3c45690813c112373757bbef53de1602a62af609", |
| 126 "when_tag": "@0.2.0+2", | 126 "when_tag": "@0.2.0+2", |
| 127 "which_tag": "@0.1.3+1", | 127 "which_tag": "@0.1.3+1", |
| 128 "yaml_tag": "@2.1.12", | 128 "yaml_tag": "@2.1.12", |
| 129 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 129 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 130 } | 130 } |
| 131 | 131 |
| 132 deps = { | 132 deps = { |
| 133 # Stuff needed for GYP to run. | 133 # Stuff needed for GYP to run. |
| 134 Var("dart_root") + "/third_party/gyp": | 134 Var("dart_root") + "/third_party/gyp": |
| 135 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), | 135 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 # Update the Windows toolchain if necessary. | 492 # Update the Windows toolchain if necessary. |
| 493 'name': 'win_toolchain', | 493 'name': 'win_toolchain', |
| 494 'pattern': '.', | 494 'pattern': '.', |
| 495 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 495 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 496 }, | 496 }, |
| 497 { | 497 { |
| 498 "pattern": ".", | 498 "pattern": ".", |
| 499 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 499 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 500 }, | 500 }, |
| 501 ] | 501 ] |
| OLD | NEW |