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

Unified Diff: pylib/gyp/msvs_emulation.py

Issue 521693002: Added Windows 8.1/Windows Phone 8.1 minimal support for creating projects that compile modules that… (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Updated change based on codereview feedback. Created 6 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
Index: pylib/gyp/msvs_emulation.py
diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
index 5384df1c31ab60dfb1a80d157b955a286323775d..45fb16747378104d5ca321c67cb381ebcacef4a2 100644
--- a/pylib/gyp/msvs_emulation.py
+++ b/pylib/gyp/msvs_emulation.py
@@ -476,7 +476,8 @@ class MsvsSettings(object):
libflags.extend(self._GetAdditionalLibraryDirectories(
'VCLibrarianTool', config, gyp_to_build_path))
lib('LinkTimeCodeGeneration', map={'true': '/LTCG'})
- lib('TargetMachine', map={'1': 'X86', '17': 'X64'}, prefix='/MACHINE:')
+ lib('TargetMachine', map={'1': 'X86', '17': 'X64'},
scottmg 2014/09/23 16:25:09 please revert this file
+ prefix='/MACHINE:')
lib('AdditionalOptions')
return libflags

Powered by Google App Engine
This is Rietveld 408576698