| Index: build/toolchain/win/BUILD.gn
|
| diff --git a/build/toolchain/win/BUILD.gn b/build/toolchain/win/BUILD.gn
|
| index 11ff2f25d2654d7833d98d9e03615eebe0e6cb96..3f0d0d76262cd37fd10a750445bfc8cd9248029d 100644
|
| --- a/build/toolchain/win/BUILD.gn
|
| +++ b/build/toolchain/win/BUILD.gn
|
| @@ -35,14 +35,14 @@ toolchain("32") {
|
| description = "CC \$out"
|
| rspfile = "\$out.rsp"
|
| rspfile_content = "\$defines \$includes \$cflags \$cflags_c"
|
| - deps = "msvc"
|
| + depsformat = "msvc"
|
| }
|
| tool("cxx") {
|
| command = cc_command # Same as above
|
| description = "CXX \$out"
|
| rspfile = "\$out.rsp"
|
| rspfile_content = "\$defines \$includes \$cflags \$cflags_cc"
|
| - deps = "msvc"
|
| + depsformat = "msvc"
|
| }
|
| tool("rc") {
|
| command = "$python_path gyp-win-tool rc-wrapper environment.x86 rc.exe \$defines \$includes \$rcflags /fo\$out \$in"
|
| @@ -94,14 +94,14 @@ toolchain("64") {
|
| description = "CC \$out"
|
| rspfile = "\$out.rsp"
|
| rspfile_content = "\$defines \$includes \$cflags \$cflags_c"
|
| - deps = "msvc"
|
| + depsformat = "msvc"
|
| }
|
| tool("cxx") {
|
| command = cc_command # Same as above
|
| description = "CXX \$out"
|
| rspfile = "\$out.rsp"
|
| rspfile_content = "\$defines \$includes \$cflags \$cflags_cc"
|
| - deps = "msvc"
|
| + depsformat = "msvc"
|
| }
|
| tool("rc") {
|
| command = "$python_path gyp-win-tool rc-wrapper environment.x64 rc.exe \$defines \$includes \$rcflags /fo\$out \$in"
|
|
|