summaryrefslogtreecommitdiffstats
path: root/chrome/installer/setup
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-25 17:20:48 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-25 17:20:48 +0000
commit7002ac6566bb5472a99d0f8f3f6f4932e86dab44 (patch)
tree2102518edab4ba7adbbbd38e7934be3c341de65b /chrome/installer/setup
parent689e237ec010792fe78343d9eff48539050481b0 (diff)
downloadchromium_src-7002ac6566bb5472a99d0f8f3f6f4932e86dab44.zip
chromium_src-7002ac6566bb5472a99d0f8f3f6f4932e86dab44.tar.gz
chromium_src-7002ac6566bb5472a99d0f8f3f6f4932e86dab44.tar.bz2
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
Diffstat (limited to 'chrome/installer/setup')
-rw-r--r--chrome/installer/setup/SConscript11
1 files changed, 1 insertions, 10 deletions
diff --git a/chrome/installer/setup/SConscript b/chrome/installer/setup/SConscript
index edd5a3e..3c99c45 100644
--- a/chrome/installer/setup/SConscript
+++ b/chrome/installer/setup/SConscript
@@ -76,16 +76,7 @@ input_files = [
'uninstall.cc',
]
-if env['PLATFORM'] == 'win32':
- targets = [
- 'setup.exe',
- 'setup.pdb',
- 'setup.lib',
- ]
-else:
- targets = ['setup']
-
-exe = env.ChromeProgram(targets, resources + input_files)
+exe = env.ChromeProgram('setup', resources + input_files)
i = env.Install('$TARGET_ROOT', exe)
env.Alias('chrome', i)