diff options
author | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 14:02:06 +0000 |
---|---|---|
committer | deanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-11 14:02:06 +0000 |
commit | 4ac8f670af190931c88542ae57295da97e2971ce (patch) | |
tree | c53779e5876223856392e291d340c20088ab339e /base/build | |
parent | 663fe3c5c9327b3b604fe7f2c7fd3f4d5cccc4e4 (diff) | |
download | chromium_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/build')
-rw-r--r-- | base/build/singleton_dll_unittest.def | 9 | ||||
-rw-r--r-- | base/build/singleton_dll_unittest.vsprops | 15 | ||||
-rw-r--r-- | base/build/singleton_unittest.vcproj | 157 |
3 files changed, 0 insertions, 181 deletions
diff --git a/base/build/singleton_dll_unittest.def b/base/build/singleton_dll_unittest.def deleted file mode 100644 index 6ad4d90..0000000 --- a/base/build/singleton_dll_unittest.def +++ /dev/null @@ -1,9 +0,0 @@ -EXPORTS - SingletonInt1 - SingletonInt2 - SingletonInt3 - SingletonInt4 - SingletonInt5 - SingletonNoLeak - SingletonLeak - GetLeakySingleton diff --git a/base/build/singleton_dll_unittest.vsprops b/base/build/singleton_dll_unittest.vsprops deleted file mode 100644 index a3eb79b..0000000 --- a/base/build/singleton_dll_unittest.vsprops +++ /dev/null @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioPropertySheet - ProjectType="Visual C++" - Version="8.00" - Name="singleton_dll_unittest" - > - <Tool - Name="VCCLCompilerTool" - PreprocessorDefinitions="SINGLETON_UNITTEST_EXPORTS" - /> - <Tool - Name="VCLinkerTool" - ModuleDefinitionFile="singleton_dll_unittest.def" - /> -</VisualStudioPropertySheet> diff --git a/base/build/singleton_unittest.vcproj b/base/build/singleton_unittest.vcproj deleted file mode 100644 index 6fcb715..0000000 --- a/base/build/singleton_unittest.vcproj +++ /dev/null @@ -1,157 +0,0 @@ -<?xml version="1.0" encoding="Windows-1252"?> -<VisualStudioProject - ProjectType="Visual C++" - Version="8.00" - Name="singleton_dll_unittest" - ProjectGUID="{E457F2FB-4708-4001-9B1C-275D7BD7F2A8}" - RootNamespace="singleton_unittest" - Keyword="Win32Proj" - > - <Platforms> - <Platform - Name="Win32" - /> - </Platforms> - <ToolFiles> - </ToolFiles> - <Configurations> - <Configuration - Name="Debug|Win32" - ConfigurationType="2" - InheritedPropertySheets="$(SolutionDir)..\build\debug.vsprops;.\singleton_dll_unittest.vsprops" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - <Configuration - Name="Release|Win32" - ConfigurationType="2" - InheritedPropertySheets="$(SolutionDir)..\build\release.vsprops;.\singleton_dll_unittest.vsprops" - > - <Tool - Name="VCPreBuildEventTool" - /> - <Tool - Name="VCCustomBuildTool" - /> - <Tool - Name="VCXMLDataGeneratorTool" - /> - <Tool - Name="VCWebServiceProxyGeneratorTool" - /> - <Tool - Name="VCMIDLTool" - /> - <Tool - Name="VCCLCompilerTool" - /> - <Tool - Name="VCManagedResourceCompilerTool" - /> - <Tool - Name="VCResourceCompilerTool" - /> - <Tool - Name="VCPreLinkEventTool" - /> - <Tool - Name="VCLinkerTool" - /> - <Tool - Name="VCALinkTool" - /> - <Tool - Name="VCManifestTool" - /> - <Tool - Name="VCXDCMakeTool" - /> - <Tool - Name="VCBscMakeTool" - /> - <Tool - Name="VCFxCopTool" - /> - <Tool - Name="VCAppVerifierTool" - /> - <Tool - Name="VCWebDeploymentTool" - /> - <Tool - Name="VCPostBuildEventTool" - /> - </Configuration> - </Configurations> - <References> - </References> - <Files> - <File - RelativePath="..\singleton_dll_unittest.cc" - > - </File> - <File - RelativePath=".\singleton_dll_unittest.def" - > - </File> - <File - RelativePath="..\singleton_dll_unittest.h" - > - </File> - </Files> - <Globals> - </Globals> -</VisualStudioProject> |