mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2025-11-11 17:25:09 +00:00
This is in preparation for creating GYP build files for each platform. BUG=https://code.google.com/p/google-breakpad/issues/detail?id=575 R=mark@chromium.org Review URL: https://breakpad.appspot.com/1414002 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1304 4c0a9323-5329-0410-9bdc-e9ce6186880e
22 lines
567 B
Python
22 lines
567 B
Python
{
|
|
'includes': ['release_defaults.gypi'],
|
|
'defines': ['OFFICIAL_BUILD'],
|
|
'msvs_settings': {
|
|
'VCCLCompilerTool': {
|
|
'Optimization': '3',
|
|
'InlineFunctionExpansion': '2',
|
|
'EnableIntrinsicFunctions': 'true',
|
|
'FavorSizeOrSpeed': '2',
|
|
'OmitFramePointers': 'true',
|
|
'EnableFiberSafeOptimizations': 'true',
|
|
'WholeProgramOptimization': 'true',
|
|
},
|
|
'VCLibrarianTool': {
|
|
'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'],
|
|
},
|
|
'VCLinkerTool': {
|
|
'LinkTimeCodeGeneration': '1',
|
|
},
|
|
},
|
|
}
|