From f3f568b18078fa29f9b84cd66bd2d1029ce408a1 Mon Sep 17 00:00:00 2001 From: "mpcomplete@chromium.org" Date: Wed, 19 Nov 2008 22:38:46 +0000 Subject: Some cleanup work I did while adding more Safari builders. It got to be extensive so I decided to just check it in. Changes: - Use Return() instead of Export() from SConscript.inputs to pass 'env' back. - Move some of the build vars around to fix builders that aren't in SConscript.browser. - Refactor SConscript.installers so that we now have DirBuilder, a generic builder that creates a directory tree (used to be FF-specific). This will be used for OSX bundles. Review URL: http://codereview.chromium.org/11261 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5722 0039d316-1c4b-4281-b951-d872f2087c98 --- gears/SConscript.inputs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'gears/SConscript.inputs') diff --git a/gears/SConscript.inputs b/gears/SConscript.inputs index ff5ff4b..b63f6da 100755 --- a/gears/SConscript.inputs +++ b/gears/SConscript.inputs @@ -947,6 +947,13 @@ if env_res: ]) #----------------------------------------------------------------------------- +# Safari Installer Plugin + +env.Append(SF_INSTALLER_PLUGIN_CPPSRCS = [ + '$OPEN_DIR/base/safari/advanced_stats_sheet.m', +]) + +#----------------------------------------------------------------------------- # resources if env_res and env['OS'] in ['win32', 'wince']: @@ -1001,4 +1008,4 @@ if env['OS'] == 'win32': '$OPEN_DIR/tools/mscom.def', ]) -Export({'env_inputs': env}) +Return('env') -- cgit v1.1