summaryrefslogtreecommitdiffstats
path: root/gears/SConscript.common
diff options
context:
space:
mode:
authormpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 01:43:42 +0000
committermpcomplete@google.com <mpcomplete@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-26 01:43:42 +0000
commit2dedae30825fe2c1b7f7ac0ffb0c75145cb24bc1 (patch)
treed02c326767b9d14781d5d447594437750e7ffefe /gears/SConscript.common
parent45abb0b369be7575b9e5b081ec405b4c0cfa6c2e (diff)
downloadchromium_src-2dedae30825fe2c1b7f7ac0ffb0c75145cb24bc1.zip
chromium_src-2dedae30825fe2c1b7f7ac0ffb0c75145cb24bc1.tar.gz
chromium_src-2dedae30825fe2c1b7f7ac0ffb0c75145cb24bc1.tar.bz2
Clean up the gears-scons scripts a bit.
- Remove the ugly StripOutdir() hacks in SConscript.installers. I'm not sure why I even introduced this, but it's much cleaner now. - Include Sconscript.input in the main SConscript file. This required removing its dependence on env['BROWSER'] and env_res. Fix win32. - Use a custom action instead of 'rm -rf `find FOO`'. - Don't rely on 'date' command. Review URL: http://codereview.chromium.org/12662 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6024 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gears/SConscript.common')
-rw-r--r--gears/SConscript.common5
1 files changed, 1 insertions, 4 deletions
diff --git a/gears/SConscript.common b/gears/SConscript.common
index 385c6c4..205392f1 100644
--- a/gears/SConscript.common
+++ b/gears/SConscript.common
@@ -30,7 +30,7 @@ env.Append(BUILDERS = {'Bin2cpp': bin2cpp_builder})
env.Prepend(
CPPDEFINES = [
-# Common items, like notifier, is not related to any browser.
+# Common items, like notifier, are not related to any browser.
'BROWSER_NONE=1',
]
)
@@ -41,9 +41,6 @@ env.Prepend(
if env['OS'] == 'osx':
env.Append(CPPDEFINES = ['LINUX'])
-# Include the input file list.
-env = env.SConscript('SConscript.inputs', exports={'env': env, 'env_res': None})
-
#-----------------------------------------------------------------------------
# Generate the dependency tree.