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

Unified Diff: build/internal/essential.scons

Issue 15051: Convert from using env['PLATFORM'] directly to using the more flexible... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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/googleurl_unittests.scons ('k') | build/internal/release_impl_dom_stats.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 7247)
+++ build/internal/essential.scons (working copy)
@@ -21,7 +21,7 @@
],
)
-if env['PLATFORM'] == 'win32':
+if env.Bit('windows'):
incremental = env.get('INCREMENTAL')
if incremental is not None:
if incremental:
@@ -110,7 +110,7 @@
'/EH', # VCCLCompilerTool.ExceptionHandling="0"
],
)
-elif env['PLATFORM'] == 'posix':
+elif env.Bit('linux'):
pass
-elif env['PLATFORM'] == 'mac':
+elif env.Bit('mac'):
pass
« no previous file with comments | « build/googleurl_unittests.scons ('k') | build/internal/release_impl_dom_stats.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698