diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-04 23:24:38 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-04 23:24:38 +0000 |
commit | 1edd2121b8df80f68107bf8dbdf0816865fa969f (patch) | |
tree | cf02c443f6b4e01f0bc8b75ae83bc9aecc92d85d /base/SConscript | |
parent | 354ec1d7a43b6bf00475943e257d2ee741a076ae (diff) | |
download | chromium_src-1edd2121b8df80f68107bf8dbdf0816865fa969f.zip chromium_src-1edd2121b8df80f68107bf8dbdf0816865fa969f.tar.gz chromium_src-1edd2121b8df80f68107bf8dbdf0816865fa969f.tar.bz2 |
Fix the base build of single_unittests.exe, which was trying to link in the .dll as a .lib.
TBR: bradnelson
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@349 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r-- | base/SConscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/SConscript b/base/SConscript index 100768c..0105bf4 100644 --- a/base/SConscript +++ b/base/SConscript @@ -188,6 +188,7 @@ env_tests_dll.Append( ],
)
dll = env_tests_dll.ChromeSharedLibrary(['singleton_dll_unittest.dll',
+ 'singleton_dll_unittest.lib',
'singleton_dll_unittest.ilk',
'singleton_dll_unittest.pdb'],
['singleton_dll_unittest.cc',
@@ -249,7 +250,7 @@ test_files = [ 'win_util_unittest.cc',
'wmi_util_unittest.cc',
- dll[0],
+ dll[1],
]
base_unittests = env_tests.ChromeTestProgram([
|