Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 'includes': ['release_defaults.gypi'], | 2 'includes': ['release_defaults.gypi'], |
| 3 'defines': ['OFFICIAL_BUILD'], | 3 'defines': ['OFFICIAL_BUILD'], |
| 4 'msvs_settings': { | 4 'msvs_settings': { |
| 5 'VCCLCompilerTool': { | 5 'VCCLCompilerTool': { |
| 6 'Optimization': '3', | 6 'Optimization': '3', |
| 7 'InlineFunctionExpansion': '2', | 7 'InlineFunctionExpansion': '2', |
| 8 'EnableIntrinsicFunctions': 'true', | 8 'EnableIntrinsicFunctions': 'true', |
| 9 'FavorSizeOrSpeed': '2', | 9 'FavorSizeOrSpeed': '2', |
| 10 'OmitFramePointers': 'true', | 10 'OmitFramePointers': 'true', |
| 11 'EnableFiberSafeOptimizations': 'true', | 11 'EnableFiberSafeOptimizations': 'true', |
| 12 'WholeProgramOptimization': 'true', | 12 'WholeProgramOptimization': 'true', |
| 13 }, | 13 }, |
| 14 'VCLibrarianTool': { | 14 'VCLibrarianTool': { |
| 15 'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'], | 15 'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'], |
| 16 }, | 16 }, |
| 17 'VCLinkerTool': { | 17 'VCLinkerTool': { |
| 18 'LinkTimeCodeGeneration': '1', | 18 'LinkTimeCodeGeneration': '1', |
| 19 # The /profile flag causes the linker to add a "FIXUP" | |
| 20 # debug stream to the generated PDB. | |
| 21 'Profile': 'true', | |
|
M-A Ruel
2011/06/02 13:23:02
Add a comment along the lines:
# /PROFILE is only
Sigurður Ásgeirsson
2011/06/02 13:33:46
Done.
| |
| 19 }, | 22 }, |
| 20 }, | 23 }, |
| 21 } | 24 } |
| OLD | NEW |