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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: build/perf_critical.gypi
diff --git a/build/perf_critical.gypi b/build/perf_critical.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..3967628da518dea99e94c4d782338d3573bc5ea6
--- /dev/null
+++ b/build/perf_critical.gypi
@@ -0,0 +1,20 @@
+# Copyright (c) 2011 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+#
+# This file enables hard optimizations on a per-target basis, it needs to be
+# included inside targets that require the absolute best performance.
+# This currently affects only the official Windows build, where it turns on
+# whole program optimizations for all sources compiled by the target.
+{
+ 'conditions': [
+ ['buildtype=="Official"', {
+ 'msvs_settings': {
+ 'VCCLCompilerTool': {
+ 'WholeProgramOptimization': 'true',
+ },
+ },
+ },
+ ],
+ ],
+}
« 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