| 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 # IMPORTANT: | 5 # IMPORTANT: |
| 6 # Before adding or updating dependencies, please review the documentation here: | 6 # Before adding or updating dependencies, please review the documentation here: |
| 7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies | 7 # https://github.com/dart-lang/sdk/wiki/Adding-and-Updating-Dependencies |
| 8 | 8 |
| 9 vars = { | 9 vars = { |
| 10 # The dart_root is the root of our sdk checkout. This is normally | 10 # The dart_root is the root of our sdk checkout. This is normally |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 465 'name': 'download_android_tools', | 465 'name': 'download_android_tools', |
| 466 'pattern': '.', | 466 'pattern': '.', |
| 467 'action': ['python', 'sdk/tools/android/download_android_tools.py'], | 467 'action': ['python', 'sdk/tools/android/download_android_tools.py'], |
| 468 }, | 468 }, |
| 469 { | 469 { |
| 470 'name': 'buildtools', | 470 'name': 'buildtools', |
| 471 'pattern': '.', | 471 'pattern': '.', |
| 472 'action': ['python', 'sdk/tools/buildtools/update.py'], | 472 'action': ['python', 'sdk/tools/buildtools/update.py'], |
| 473 }, | 473 }, |
| 474 { | 474 { |
| 475 # Update the Windows toolchain if necessary. | |
| 476 'name': 'win_toolchain', | |
| 477 'pattern': '.', | |
| 478 'action': ['python', 'sdk/build/vs_toolchain.py', 'update'], | |
| 479 }, | |
| 480 { | |
| 481 "pattern": ".", | 475 "pattern": ".", |
| 482 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], | 476 "action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"], |
| 483 }, | 477 }, |
| 484 ] | 478 ] |
| OLD | NEW |