Revert "Remove "Windows toolchain" step from DEPS. May only be used by gyp."

This reverts commit 5a8520ba91.
Also reverts removal of gyp from Dart DEPS.

BUG=
TBR=kustermann@google.com

Review-Url: https://codereview.chromium.org/2986943002 .
This commit is contained in:
William Hesse 2017-07-27 13:54:34 +02:00
parent 2331199968
commit c1db164c8b

11
DEPS
View file

@ -33,6 +33,7 @@ vars = {
# "github_dartlang": "https://github.com/dart-lang/%s.git",
"co19_rev": "@dec2b67aaab3bb7339b9764049707e71e601da3d",
"gyp_rev": "@4801a5331ae62da9769a327f11c4213d32fb0dad",
# Revisions of GN related dependencies. This should match the revision
# pulled by Flutter.
@ -139,6 +140,10 @@ vars = {
}
deps = {
# Stuff needed for GYP to run.
Var("dart_root") + "/third_party/gyp":
Var('chromium_git') + '/external/gyp.git' + Var("gyp_rev"),
# Stuff needed for GN build.
Var("dart_root") + "/buildtools":
Var("fuchsia_git") + "/buildtools" + Var("buildtools_revision"),
@ -471,6 +476,12 @@ hooks = [
'pattern': '.',
'action': ['python', 'sdk/tools/buildtools/update.py'],
},
{
# Update the Windows toolchain if necessary.
'name': 'win_toolchain',
'pattern': '.',
'action': ['python', 'sdk/build/vs_toolchain.py', 'update'],
},
{
"pattern": ".",
"action": ["python", Var("dart_root") + "/tools/generate_buildfiles.py"],