| Index: pylib/gyp/win_tool.py
|
| ===================================================================
|
| --- pylib/gyp/win_tool.py (revision 1498)
|
| +++ pylib/gyp/win_tool.py (working copy)
|
| @@ -184,7 +184,7 @@
|
| dependendency information which is stored in |depname|."""
|
| env = self._GetEnv(arch)
|
| args = ' '.join(args) + \
|
| - '| ninja-deplist-helper -r . -q -f cl -o ' + depname + '"'
|
| + '| ninja -t msvc -r . -o ' + depname + '"'
|
| popen = subprocess.Popen(args, shell=True, env=env)
|
| popen.wait()
|
| return popen.returncode
|
|
|