summaryrefslogtreecommitdiffstats
path: root/base/SConscript
diff options
context:
space:
mode:
authordeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-11 14:02:06 +0000
committerdeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-11 14:02:06 +0000
commit4ac8f670af190931c88542ae57295da97e2971ce (patch)
treec53779e5876223856392e291d340c20088ab339e /base/SConscript
parent663fe3c5c9327b3b604fe7f2c7fd3f4d5cccc4e4 (diff)
downloadchromium_src-4ac8f670af190931c88542ae57295da97e2971ce.zip
chromium_src-4ac8f670af190931c88542ae57295da97e2971ce.tar.gz
chromium_src-4ac8f670af190931c88542ae57295da97e2971ce.tar.bz2
Allow multiple AtExitManagers to be chained in a stack, this allows much easier testing for code that is expecting to be run via an AtExitManager. This actually cleaned up a lot of the at exit code.
Clean up singleton_dll_unittest. It is no longer windows specific DLL, and now is much simpler, and builds and runs cross platform. BUG=1314043 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@646 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r--base/SConscript19
1 files changed, 0 insertions, 19 deletions
diff --git a/base/SConscript b/base/SConscript
index 719e29b..b8d9da9 100644
--- a/base/SConscript
+++ b/base/SConscript
@@ -200,23 +200,6 @@ if env['PLATFORM'] == 'win32':
],
)
-
-env_tests_dll = env_tests.Clone()
-env_tests_dll.Append(
- CPPDEFINES = [
- '_WINDLL',
- 'SINGLETON_UNITTEST_EXPORTS',
- ],
-)
-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',
- 'build/singleton_dll_unittest.def'])
-i = env.Install('$TARGET_ROOT', dll[0])
-env.Alias('base', i)
-
env_tests.ChromeTestProgram(['debug_message.exe',
'debug_message.ilk',
'debug_message.pdb'],
@@ -269,8 +252,6 @@ test_files = [
'win_util_unittest.cc',
'word_iterator_unittest.cc',
'wmi_util_unittest.cc',
-
- dll[1],
]
if env['PLATFORM'] == 'win32':