Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: pylib/gyp/win_tool.py

Issue 10907263: Make gyp/win32 compatible with upstream ninja. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/win_tool.py
===================================================================
--- pylib/gyp/win_tool.py (revision 1498)
+++ pylib/gyp/win_tool.py (working copy)
@@ -179,16 +179,6 @@
print line
return popen.returncode
- def ExecClWrapper(self, arch, depname, *args):
- """Runs cl.exe and filters output through ninja-deplist-helper to get
- dependendency information which is stored in |depname|."""
- env = self._GetEnv(arch)
- args = ' '.join(args) + \
- '| ninja-deplist-helper -r . -q -f cl -o ' + depname + '"'
- popen = subprocess.Popen(args, shell=True, env=env)
- popen.wait()
- return popen.returncode
-
def ExecActionWrapper(self, arch, rspfile, *dir):
"""Runs an action command line from a response file using the environment
for |arch|. If |dir| is supplied, use that as the working directory."""
« no previous file with comments | « pylib/gyp/generator/ninja.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698