Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(339)

Side by Side Diff: DEPS

Issue 2988953002: Remove "Windows toolchain" step from DEPS. May only be used by gyp. (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 ]
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698