| Index: build/toolchain/win/BUILD.gn
|
| diff --git a/build/toolchain/win/BUILD.gn b/build/toolchain/win/BUILD.gn
|
| index 1934e9b19ad43287d8435364e318d8dd0b4b3d8f..7ad953d1d9eb3e090b54c028cb4da5bb3b178e68 100644
|
| --- a/build/toolchain/win/BUILD.gn
|
| +++ b/build/toolchain/win/BUILD.gn
|
| @@ -74,7 +74,7 @@ template("msvc_toolchain") {
|
| rspfile = "{{output}}.rsp"
|
| precompiled_header_type = "msvc"
|
| pdbname = "{{target_out_dir}}/{{label_name}}_c.pdb"
|
| - command = "ninja -t msvc -e $env -- $cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname"
|
| + command = "$cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname"
|
| depsformat = "msvc"
|
| description = "CC {{output}}"
|
| outputs = [
|
| @@ -89,7 +89,7 @@ template("msvc_toolchain") {
|
|
|
| # The PDB name needs to be different between C and C++ compiled files.
|
| pdbname = "{{target_out_dir}}/{{label_name}}_cc.pdb"
|
| - command = "ninja -t msvc -e $env -- $cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname"
|
| + command = "$cl /nologo /showIncludes /FC @$rspfile /c {{source}} /Fo{{output}} /Fd$pdbname"
|
| depsformat = "msvc"
|
| description = "CXX {{output}}"
|
| outputs = [
|
|
|