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

Side by Side Diff: build/standalone.gypi

Issue 503643003: Add link time code generation option to win builder. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: WholeProgramOptimization: false Created 6 years, 2 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'msvs_settings': { 293 'msvs_settings': {
294 'VCCLCompilerTool': { 294 'VCCLCompilerTool': {
295 'MinimalRebuild': 'false', 295 'MinimalRebuild': 'false',
296 'BufferSecurityCheck': 'true', 296 'BufferSecurityCheck': 'true',
297 'EnableFunctionLevelLinking': 'true', 297 'EnableFunctionLevelLinking': 'true',
298 'RuntimeTypeInfo': 'false', 298 'RuntimeTypeInfo': 'false',
299 'WarningLevel': '3', 299 'WarningLevel': '3',
300 'WarnAsError': 'true', 300 'WarnAsError': 'true',
301 'DebugInformationFormat': '3', 301 'DebugInformationFormat': '3',
302 'Detect64BitPortabilityProblems': 'false', 302 'Detect64BitPortabilityProblems': 'false',
303 'WholeProgramOptimization': 'false',
303 'conditions': [ 304 'conditions': [
304 [ 'msvs_multi_core_compile', { 305 [ 'msvs_multi_core_compile', {
305 'AdditionalOptions': ['/MP'], 306 'AdditionalOptions': ['/MP'],
306 }], 307 }],
307 ['component=="shared_library"', { 308 ['component=="shared_library"', {
308 'ExceptionHandling': '1', # /EHsc 309 'ExceptionHandling': '1', # /EHsc
309 }, { 310 }, {
310 'ExceptionHandling': '0', 311 'ExceptionHandling': '0',
311 }], 312 }],
312 ], 313 ],
313 }, 314 },
314 'VCLibrarianTool': { 315 'VCLibrarianTool': {
315 'AdditionalOptions': ['/ignore:4221'], 316 'AdditionalOptions': ['/ignore:4221'],
316 }, 317 },
317 'VCLinkerTool': { 318 'VCLinkerTool': {
318 'MinimumRequiredVersion': '5.01', # XP. 319 'MinimumRequiredVersion': '5.01', # XP.
319 'AdditionalDependencies': [ 320 'AdditionalDependencies': [
320 'ws2_32.lib', 321 'ws2_32.lib',
321 ], 322 ],
322 'GenerateDebugInformation': 'true', 323 'GenerateDebugInformation': 'true',
323 'MapFileName': '$(OutDir)\\$(TargetName).map', 324 'MapFileName': '$(OutDir)\\$(TargetName).map',
324 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib', 325 'ImportLibrary': '$(OutDir)\\lib\\$(TargetName).lib',
325 'FixedBaseAddress': '1', 326 'FixedBaseAddress': '1',
327 #'LinkTimeCodeGeneration': '1',
326 # LinkIncremental values: 328 # LinkIncremental values:
327 # 0 == default 329 # 0 == default
328 # 1 == /INCREMENTAL:NO 330 # 1 == /INCREMENTAL:NO
329 # 2 == /INCREMENTAL 331 # 2 == /INCREMENTAL
330 'LinkIncremental': '1', 332 'LinkIncremental': '1',
331 # SubSystem values: 333 # SubSystem values:
332 # 0 == not set 334 # 0 == not set
333 # 1 == /SUBSYSTEM:CONSOLE 335 # 1 == /SUBSYSTEM:CONSOLE
334 # 2 == /SUBSYSTEM:WINDOWS 336 # 2 == /SUBSYSTEM:WINDOWS
335 'SubSystem': '1', 337 'SubSystem': '1',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 ], 398 ],
397 'target_conditions': [ 399 'target_conditions': [
398 ['_type!="static_library"', { 400 ['_type!="static_library"', {
399 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']}, 401 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-search_paths_first']},
400 }], 402 }],
401 ], # target_conditions 403 ], # target_conditions
402 }, # target_defaults 404 }, # target_defaults
403 }], # OS=="mac" 405 }], # OS=="mac"
404 ], 406 ],
405 } 407 }
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