From 7002ac6566bb5472a99d0f8f3f6f4932e86dab44 Mon Sep 17 00:00:00 2001 From: "sgk@google.com" Date: Sat, 25 Oct 2008 17:20:48 +0000 Subject: Fix SCons modules build on Windows: * Add 'midl' Tool module. * Filter out the default OS_WINDOWS= definition from the Hammer modules, which messes up our build. * Fix the $PLATFORMSDK_VISTA definition. * Remove the current directory from the 'base' Alias (avoid cycles). * Remove by-hand addition of .lib, .pdb and .ilk files to the target list when build shared libraries (multiple places). * Comment out a post-action Touch() of the themes/default resource. (Thanks to bradnelson for many of the above individual fixes.) Review URL: http://codereview.chromium.org/8207 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3980 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/app/theme/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chrome/app/theme') diff --git a/chrome/app/theme/SConscript b/chrome/app/theme/SConscript index 8efaa2e..6c013ca 100644 --- a/chrome/app/theme/SConscript +++ b/chrome/app/theme/SConscript @@ -44,7 +44,8 @@ env.Append( themes_default = env.ChromeSharedLibrary("$CHROME_DIR/themes/default", res) -env.AddPostAction(themes_default[1], Touch(themes_default[1:])) +# TODO(bradnelson): figure out why this was needed +#env.AddPostAction(themes_default[1], Touch(themes_default[1:])) i = env.Install("$TARGET_ROOT/themes", themes_default) env.Alias('chrome', i) -- cgit v1.1