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

Side by Side Diff: build/common.gypi

Issue 10573008: Add msvs_configuration_platform to common.gypi to allow x64 builds on Windows (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 'V8_TARGET_ARCH_X64', 220 'V8_TARGET_ARCH_X64',
221 ], 221 ],
222 'xcode_settings': { 222 'xcode_settings': {
223 'ARCHS': [ 'x86_64' ], 223 'ARCHS': [ 'x86_64' ],
224 }, 224 },
225 'msvs_settings': { 225 'msvs_settings': {
226 'VCLinkerTool': { 226 'VCLinkerTool': {
227 'StackReserveSize': '2097152', 227 'StackReserveSize': '2097152',
228 }, 228 },
229 }, 229 },
230 'msvs_configuration_platform': 'x64',
230 }], # v8_target_arch=="x64" 231 }], # v8_target_arch=="x64"
231 ['v8_use_liveobjectlist=="true"', { 232 ['v8_use_liveobjectlist=="true"', {
232 'defines': [ 233 'defines': [
233 'ENABLE_DEBUGGER_SUPPORT', 234 'ENABLE_DEBUGGER_SUPPORT',
234 'INSPECTOR', 235 'INSPECTOR',
235 'OBJECT_PRINT', 236 'OBJECT_PRINT',
236 'LIVEOBJECTLIST', 237 'LIVEOBJECTLIST',
237 ], 238 ],
238 }], 239 }],
239 ['v8_compress_startup_data=="bz2"', { 240 ['v8_compress_startup_data=="bz2"', {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'OptimizeReferences': '2', 394 'OptimizeReferences': '2',
394 'EnableCOMDATFolding': '2', 395 'EnableCOMDATFolding': '2',
395 }, 396 },
396 }, 397 },
397 }], # OS=="win" 398 }], # OS=="win"
398 ], # conditions 399 ], # conditions
399 }, # Release 400 }, # Release
400 }, # configurations 401 }, # configurations
401 }, # target_defaults 402 }, # target_defaults
402 } 403 }
OLDNEW
« 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