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

Unified Diff: build/common.gypi

Issue 981333002: win: Default build to x64 (Closed) Base URL: https://chromium.googlesource.com/chromium/mini_chromium@master
Patch Set: . Created 5 years, 9 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: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index d7f812fd01a2bc12968844849e4b4b81d461d666..2370f32bddcdf8f0035305c184ccc72ea3fa4d68 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -162,6 +162,7 @@
'msvs_configuration_attributes': {
'CharacterSet': '1',
},
+ 'msvs_configuration_platform': 'x64',
'msvs_settings': {
'VCCLCompilerTool': {
'WarningLevel': '4',
@@ -175,6 +176,11 @@
'VCLinkerTool': {
'GenerateDebugInformation': 'true',
'SubSystem': '1',
+ 'MinimumRequiredVersion': '5.02', # Server 2003.
+ 'TargetMachine': '17', # x64.
+ },
+ 'VCLibrarianTool': {
+ 'TargetMachine': '17', # x64.
},
},
'msvs_disabled_warnings': [
@@ -282,9 +288,16 @@
},
}],
-
],
},
+
+ # gyp-ninja seems to requires these, but we don't use them.
+ 'Debug_x64': {
+ 'inherit_from': ['Debug'],
+ },
+ 'Release_x64': {
+ 'inherit_from': ['Release'],
+ },
},
},
« 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