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

Unified Diff: build/internal/essential.scons

Issue 13039: Fixes and enhancements... (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
« no previous file with comments | « build/debug.scons ('k') | build/internal/release_defaults.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/internal/essential.scons
===================================================================
--- build/internal/essential.scons (revision 6147)
+++ build/internal/essential.scons (working copy)
@@ -17,10 +17,17 @@
],
LINKFLAGS = [
'$CHROMIUM_LINK_OPT_FLAGS',
+ '$CHROMIUM_INCREMENTAL_FLAGS',
],
)
if env['PLATFORM'] == 'win32':
+ incremental = env.get('INCREMENTAL')
+ if incremental is not None:
+ if incremental:
+ env['CHROMIUM_INCREMENTAL_FLAGS'] = '/INCREMENTAL'
+ else:
+ env['CHROMIUM_INCREMENTAL_FLAGS'] = '/INCREMENTAL:NO'
env.Append(
ARFLAGS = [
'/ignore:4221',
« no previous file with comments | « build/debug.scons ('k') | build/internal/release_defaults.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698