OLD | NEW |
| 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
1 # 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 |
2 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
3 | 4 |
4 vars = { | 5 vars = { |
5 # 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 |
6 # 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. |
7 "dart_root": "sdk", | 8 "dart_root": "sdk", |
8 | 9 |
9 # We use mirrors of all github repos to guarantee reproducibility and | 10 # We use mirrors of all github repos to guarantee reproducibility and |
10 # consistency between what users see and what the bots see. | 11 # consistency between what users see and what the bots see. |
(...skipping 586 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
597 # Update the Windows toolchain if necessary. | 598 # Update the Windows toolchain if necessary. |
598 'name': 'win_toolchain', | 599 'name': 'win_toolchain', |
599 'pattern': '.', | 600 'pattern': '.', |
600 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | 601 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], |
601 }, | 602 }, |
602 { | 603 { |
603 "pattern": ".", | 604 "pattern": ".", |
604 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 605 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
605 }, | 606 }, |
606 ] | 607 ] |
OLD | NEW |