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

Unified Diff: build/internal/release_impl_official.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
« no previous file with comments | « build/internal/release_impl.gypi ('k') | build/perf_critical.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/internal/release_impl_official.gypi
diff --git a/build/internal/release_impl_official.gypi b/build/internal/release_impl_official.gypi
index d62e955250c8d8c8b54d13d4a16b5aeb87e768e3..11b15cc4b7334ba1129a59b0e92343b2442cb997 100644
--- a/build/internal/release_impl_official.gypi
+++ b/build/internal/release_impl_official.gypi
@@ -1,3 +1,6 @@
+# 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.
{
'includes': ['release_defaults.gypi'],
'defines': ['OFFICIAL_BUILD'],
@@ -9,15 +12,14 @@
'FavorSizeOrSpeed': '2',
'OmitFramePointers': 'true',
'EnableFiberSafeOptimizations': 'true',
- 'WholeProgramOptimization': 'true',
},
'VCLibrarianTool': {
- 'AdditionalOptions': ['/ltcg', '/expectedoutputsize:120000000'],
+ 'AdditionalOptions': [
+ '/ltcg',
+ '/expectedoutputsize:120000000'
+ ],
},
'VCLinkerTool': {
bradn 2011/12/16 23:44:45 How about using target_conditions to inject this i
- # Get more debug spew from the linker while we're sorting out
- # build problems and performance.
- # TODO(siggi): Remove these flags after we're out of the woods.
'AdditionalOptions': [
'/time',
# This may reduce memory fragmentation during linking.
« no previous file with comments | « build/internal/release_impl.gypi ('k') | build/perf_critical.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698