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

Unified Diff: pylib/gyp/msvs_emulation.py

Issue 645223002: Add back support for /Gv now that gyp-win64 has VS2013 (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Rebase Created 6 years, 1 month 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/MSVSSettings_test.py ('k') | test/win/compiler-flags/calling-convention.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/msvs_emulation.py
diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
index f9af9b6d11c9c05f1fbfdd96b324b00e855a30a8..8dad191cd22ac8b610746893f2594d68da2164e9 100644
--- a/pylib/gyp/msvs_emulation.py
+++ b/pylib/gyp/msvs_emulation.py
@@ -439,7 +439,7 @@ class MsvsSettings(object):
cl('WarningLevel', prefix='/W')
cl('WarnAsError', map={'true': '/WX'})
cl('CallingConvention',
- map={'0': 'd', '1': 'r', '2': 'z'}, prefix='/G')
+ map={'0': 'd', '1': 'r', '2': 'z', '3': 'v'}, prefix='/G')
cl('DebugInformationFormat',
map={'1': '7', '3': 'i', '4': 'I'}, prefix='/Z')
cl('RuntimeTypeInfo', map={'true': '/GR', 'false': '/GR-'})
« no previous file with comments | « pylib/gyp/MSVSSettings_test.py ('k') | test/win/compiler-flags/calling-convention.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698