Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Side by Side Diff: build/internal/release_defaults.gypi

Issue 8983002: Allow targets to self-select optimization level in official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix merge resolution issue. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 }
OLDNEW
« build/common.gypi ('K') | « build/common.gypi ('k') | build/internal/release_impl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698