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

Unified Diff: pylib/gyp/generator/ninja.py

Issue 10537170: Print full path in diagnostic messages building with ninja on windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Print full path in diagnostic messages building with ninja on windows. Created 8 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/generator/ninja.py
===================================================================
--- pylib/gyp/generator/ninja.py (revision 1415)
+++ pylib/gyp/generator/ninja.py (working copy)
@@ -1305,11 +1305,11 @@
# and generating PCH. In the case of PCH, the "output" is specified by /Fp
# rather than /Fo (for object files), but we still need to specify an /Fo
# when compiling PCH.
- cc_template = ('cmd /s /c "$cc /nologo /showIncludes '
+ cc_template = ('cmd /s /c "$cc /nologo /showIncludes /FC '
'@$out.rsp '
'$cflags_pch_c /c $in %(outspec)s /Fd$pdbname '
'| ninja-deplist-helper -r . -q -f cl -o $out.dl"')
- cxx_template = ('cmd /s /c "$cxx /nologo /showIncludes '
+ cxx_template = ('cmd /s /c "$cxx /nologo /showIncludes /FC '
'@$out.rsp '
'$cflags_pch_cc /c $in %(outspec)s $pchobj /Fd$pdbname '
'| ninja-deplist-helper -r . -q -f cl -o $out.dl"')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698