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 'msvs_settings': { | 5 'msvs_settings': { |
3 'VCCLCompilerTool': { | 6 'VCCLCompilerTool': { |
4 'StringPooling': 'true', | 7 'StringPooling': 'true', |
5 }, | 8 }, |
6 'VCLinkerTool': { | 9 'VCLinkerTool': { |
| 10 # No incremental linking. |
7 'LinkIncremental': '1', | 11 'LinkIncremental': '1', |
| 12 # Eliminate Unreferenced Data (/OPT:REF). |
8 'OptimizeReferences': '2', | 13 'OptimizeReferences': '2', |
| 14 # Folding on (/OPT:ICF). |
9 'EnableCOMDATFolding': '2', | 15 'EnableCOMDATFolding': '2', |
10 }, | 16 }, |
11 }, | 17 }, |
12 } | 18 } |
OLD | NEW |