| Index: build/toolchain/win/BUILD.gn
|
| diff --git a/build/toolchain/win/BUILD.gn b/build/toolchain/win/BUILD.gn
|
| index 7d98b030d515368cf8f5238a9d60ef7c3b62fbc1..8af252ef478c66ce22939d2f94d22d5cc063de80 100644
|
| --- a/build/toolchain/win/BUILD.gn
|
| +++ b/build/toolchain/win/BUILD.gn
|
| @@ -139,7 +139,8 @@ template("msvc_toolchain") {
|
| }
|
|
|
| tool("rc") {
|
| - command = "$python_path gyp-win-tool rc-wrapper $env rc.exe {{defines}} {{include_dirs}} /fo{{output}} {{source}}"
|
| + #command = "$python_path gyp-win-tool rc-wrapper $env rc.exe {{defines}} {{include_dirs}} /fo{{output}} {{source}}"
|
| + command = "touch {{output}}"
|
| outputs = [
|
| "$object_subdir/{{source_name_part}}.res",
|
| ]
|
| @@ -148,11 +149,12 @@ template("msvc_toolchain") {
|
|
|
| tool("asm") {
|
| if (invoker.toolchain_cpu == "x64") {
|
| - ml = "ml64.exe"
|
| + #ml = "ml64.exe"
|
| } else {
|
| - ml = "ml.exe"
|
| + #ml = "ml.exe"
|
| }
|
| - command = "$python_path gyp-win-tool asm-wrapper $env $ml {{defines}} {{include_dirs}} {{asmflags}} /c /Fo{{output}} {{source}}"
|
| + #command = "$python_path gyp-win-tool asm-wrapper $env $ml {{defines}} {{include_dirs}} {{asmflags}} /c /Fo{{output}} {{source}}"
|
| + command = "touch {{output}}"
|
| description = "ASM {{output}}"
|
| outputs = [
|
| "$object_subdir/{{source_name_part}}.obj",
|
|
|