| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "test_tag": "@0.12.15+6", | 113 "test_tag": "@0.12.15+6", |
| 114 "typed_data_tag": "@1.1.3", | 114 "typed_data_tag": "@1.1.3", |
| 115 "usage_tag": "@v2.2.2", | 115 "usage_tag": "@v2.2.2", |
| 116 "utf_tag": "@0.9.0+3", | 116 "utf_tag": "@0.9.0+3", |
| 117 "watcher_tag": "@0.9.7+3", | 117 "watcher_tag": "@0.9.7+3", |
| 118 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", | 118 "web_components_rev": "@6349e09f9118dce7ae1b309af5763745e25a9d61", |
| 119 "web_socket_channel_tag": "@1.0.4", | 119 "web_socket_channel_tag": "@1.0.4", |
| 120 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", | 120 "WebCore_rev": "@a86fe28efadcfc781f836037a80f27e22a5dad17", |
| 121 "when_tag": "@0.2.0+2", | 121 "when_tag": "@0.2.0+2", |
| 122 "which_tag": "@0.1.3+1", | 122 "which_tag": "@0.1.3+1", |
| 123 "yaml_tag": "@2.1.12", | 123 "yaml_tag": "@2.1.11", |
| 124 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", | 124 "zlib_rev": "@c3d0a6190f2f8c924a05ab6cc97b8f975bddd33f", |
| 125 } | 125 } |
| 126 | 126 |
| 127 deps = { | 127 deps = { |
| 128 # Stuff needed for GYP to run. | 128 # Stuff needed for GYP to run. |
| 129 Var("dart_root") + "/third_party/gyp": | 129 Var("dart_root") + "/third_party/gyp": |
| 130 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), | 130 Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"), |
| 131 | 131 |
| 132 # Stuff needed for GN build. | 132 # Stuff needed for GN build. |
| 133 Var("dart_root") + "/buildtools": | 133 Var("dart_root") + "/buildtools": |
| (...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 # Update the Windows toolchain if necessary. | 592 # Update the Windows toolchain if necessary. |
| 593 'name': 'win_toolchain', | 593 'name': 'win_toolchain', |
| 594 'pattern': '.', | 594 'pattern': '.', |
| 595 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 595 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
| 596 }, | 596 }, |
| 597 { | 597 { |
| 598 "pattern": ".", | 598 "pattern": ".", |
| 599 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 599 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 600 }, | 600 }, |
| 601 ] | 601 ] |
| OLD | NEW |