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

Unified Diff: build/internal/release_impl_official.scons

Issue 11368: Purify support:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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/internal/release_impl_official.scons
===================================================================
--- build/internal/release_impl_official.scons (revision 5880)
+++ build/internal/release_impl_official.scons (working copy)
@@ -11,12 +11,16 @@
env.ApplySConscript(['release_defaults.scons'])
if env.Bit('windows'):
+ env.Replace(
+ CHROMIUM_CC_OPT_FLAGS = [
+ '/Ox', # VCCLCompilerTool.Optimization="3"
+ ],
+ ),
env.Append(
ARFLAGS = [
'/ltcg',
],
CCFLAGS = [
- '/Ox', # VCCLCompilerTool.Optimization="3"
'/Ob2', # VCCLCompilerTool.InlineFunctionExpansion="2"
'/Oi', # VCCLCompilerTool.EnableIntrinsicFunctions="true"
'/Os', # VCCLCompilerTool.FavorSizeOrSpeed="2"

Powered by Google App Engine
This is Rietveld 408576698