Chromium Code Reviews| Index: build/toolchain/win/setup_toolchain.py |
| diff --git a/build/toolchain/win/setup_toolchain.py b/build/toolchain/win/setup_toolchain.py |
| index 569f4da4a40f47a899a90a030a81d03fc339994d..0bac744f0380c9976cca995b4e619f0ce9d59827 100644 |
| --- a/build/toolchain/win/setup_toolchain.py |
| +++ b/build/toolchain/win/setup_toolchain.py |
| @@ -8,15 +8,13 @@ import re |
| import subprocess |
| import sys |
| -""" |
| -Copies the given "win tool" (which the toolchain uses to wrap compiler |
| -invocations) and the environment blocks for the 32-bit and 64-bit builds on |
| -Windows to the build directory. |
| - |
| -The arguments are the visual studio install location and the location of the |
| -win tool. The script assumes that the root build directory is the current dir |
| -and the files will be written to the current directory. |
| -""" |
| +# Copies the given "win tool" (which the toolchain uses to wrap compiler |
| +# invocations) and the environment blocks for the 32-bit and 64-bit builds on |
| +# Windows to the build directory. |
| +# |
| +# The arguments are the visual studio install location and the location of the |
| +# win tool. The script assumes that the root build directory is the current dir |
| +# and the files will be written to the current directory. |
| def _ExtractImportantEnvironment(output_of_set): |
| @@ -104,7 +102,7 @@ def main(): |
| '<visual studio path> <win tool path> <win sdk path> ' |
| '<runtime dirs> <cpu_arch>') |
| sys.exit(2) |
| - vs_path = sys.argv[1] |
| + dummy_vs_path = sys.argv[1] |
|
scottmg
2015/02/17 02:51:56
I think just delete this line is fine. Someone wil
Yoshisato Yanagisawa
2015/02/17 03:39:34
Done.
|
| tool_source = sys.argv[2] |
| win_sdk_path = sys.argv[3] |
| runtime_dirs = sys.argv[4] |