OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
1 { | 4 { |
2 'includes': ['release_defaults.gypi'], | 5 'includes': ['release_defaults.gypi'], |
3 'defines': ['OFFICIAL_BUILD'], | 6 'defines': ['OFFICIAL_BUILD'], |
4 'msvs_settings': { | 7 'msvs_settings': { |
5 'VCCLCompilerTool': { | 8 'VCCLCompilerTool': { |
6 'Optimization': '3', | 9 'Optimization': '3', |
7 'InlineFunctionExpansion': '2', | 10 'InlineFunctionExpansion': '2', |
8 'EnableIntrinsicFunctions': 'true', | 11 'EnableIntrinsicFunctions': 'true', |
9 'FavorSizeOrSpeed': '2', | 12 'FavorSizeOrSpeed': '2', |
10 'OmitFramePointers': 'true', | 13 'OmitFramePointers': 'true', |
11 'EnableFiberSafeOptimizations': 'true', | 14 'EnableFiberSafeOptimizations': 'true', |
12 'WholeProgramOptimization': 'true', | |
13 }, | 15 }, |
14 'VCLibrarianTool': { | 16 'VCLibrarianTool': { |
15 'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'], | 17 'AdditionalOptions': [ |
18 '/ltcg', | |
19 '/expectedoutputsize:120000000' | |
20 ], | |
16 }, | 21 }, |
17 'VCLinkerTool': { | 22 'VCLinkerTool': { |
bradn
2011/12/16 23:44:45
How about using target_conditions to inject this i
| |
18 # Get more debug spew from the linker while we're sorting out | |
19 # build problems and performance. | |
20 # TODO(siggi): Remove these flags after we're out of the woods. | |
21 'AdditionalOptions': [ | 23 'AdditionalOptions': [ |
22 '/time', | 24 '/time', |
23 # This may reduce memory fragmentation during linking. | 25 # This may reduce memory fragmentation during linking. |
24 # The expected size is 40*1024*1024, which gives us about 10M of | 26 # The expected size is 40*1024*1024, which gives us about 10M of |
25 # headroom as of Dec 16, 2011. | 27 # headroom as of Dec 16, 2011. |
26 '/expectedoutputsize:41943040', | 28 '/expectedoutputsize:41943040', |
27 ], | 29 ], |
28 'LinkTimeCodeGeneration': '1', | 30 'LinkTimeCodeGeneration': '1', |
29 # The /PROFILE flag causes the linker to add a "FIXUP" debug stream to | 31 # The /PROFILE flag causes the linker to add a "FIXUP" debug stream to |
30 # the generated PDB. According to MSDN documentation, this flag is only | 32 # the generated PDB. According to MSDN documentation, this flag is only |
31 # available (or perhaps supported) in the Enterprise (team development) | 33 # available (or perhaps supported) in the Enterprise (team development) |
32 # version of Visual Studio. If this blocks your official build, simply | 34 # version of Visual Studio. If this blocks your official build, simply |
33 # comment out this line, then re-run "gclient runhooks". | 35 # comment out this line, then re-run "gclient runhooks". |
34 'Profile': 'true', | 36 'Profile': 'true', |
35 }, | 37 }, |
36 }, | 38 }, |
37 } | 39 } |
OLD | NEW |