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

Side by Side Diff: build/perf_critical.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: 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
(Empty)
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.
4 #
5 # This file enables hard optimizations on a per-target basis, it needs to be
6 # included inside targets that require the absolute best performance.
7 # This currently affects only the official Windows build, where it turns on
8 # whole program optimizations for all sources compiled by the target.
9 {
10 'conditions': [
11 ['buildtype=="Official"', {
12 'msvs_settings': {
13 'VCCLCompilerTool': {
14 'WholeProgramOptimization': 'true',
15 },
16 },
17 },
18 ],
19 ],
20 }
OLDNEW
« build/internal/release_impl_official.gypi ('K') | « build/internal/release_impl_official.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698