OLD | NEW |
1 { | 1 { |
2 'conditions': [ | 2 'conditions': [ |
3 # Handle build types. | 3 # Handle build types. |
4 ['buildtype=="Dev"', { | 4 ['buildtype=="Dev"', { |
5 'includes': ['internal/release_impl.gypi'], | 5 'includes': ['internal/release_impl.gypi'], |
6 }], | 6 }], |
| 7 ['buildtype=="Dev" and incremental_chrome_dll==1', { |
| 8 'msvs_settings': { |
| 9 'VCLinkerTool': { |
| 10 # Enable incremental linking and disable conflicting link options: |
| 11 # http://msdn.microsoft.com/en-us/library/4khtbfyf.aspx |
| 12 'LinkIncremental': '2', |
| 13 'OptimizeReferences': '1', |
| 14 'EnableCOMDATFolding': '1', |
| 15 'Profile': 'false', |
| 16 }, |
| 17 }, |
| 18 }], |
7 ['buildtype=="Official"', { | 19 ['buildtype=="Official"', { |
8 'includes': ['internal/release_impl_official.gypi'], | 20 'includes': ['internal/release_impl_official.gypi'], |
9 }], | 21 }], |
10 # TODO(bradnelson): may also need: | 22 # TODO(bradnelson): may also need: |
11 # checksenabled | 23 # checksenabled |
12 # coverage | 24 # coverage |
13 # dom_stats | 25 # dom_stats |
14 # pgo_instrument | 26 # pgo_instrument |
15 # pgo_optimize | 27 # pgo_optimize |
16 ], | 28 ], |
17 } | 29 } |
OLD | NEW |