From 6b50058889099e4287f683b97a86ca74607172c4 Mon Sep 17 00:00:00 2001 From: Jeff McGlynn Date: Thu, 26 Jul 2018 13:08:01 -0700 Subject: Remove third_party/googletest and reference git repo instead Use a Bazel git_repository rule to reference the git repository instead of bundling the source. Change-Id: I32a0970178cb87fbf0e381db2e2d51fcccab542f --- .../googletest/googlemock/msvc/2010/gmock.sln | 46 ------ .../googletest/googlemock/msvc/2010/gmock.vcxproj | 145 ----------------- .../googlemock/msvc/2010/gmock_config.props | 19 --- .../googlemock/msvc/2010/gmock_main.vcxproj | 151 ------------------ .../googlemock/msvc/2010/gmock_test.vcxproj | 176 --------------------- 5 files changed, 537 deletions(-) delete mode 100644 third_party/googletest/googlemock/msvc/2010/gmock.sln delete mode 100644 third_party/googletest/googlemock/msvc/2010/gmock.vcxproj delete mode 100644 third_party/googletest/googlemock/msvc/2010/gmock_config.props delete mode 100644 third_party/googletest/googlemock/msvc/2010/gmock_main.vcxproj delete mode 100644 third_party/googletest/googlemock/msvc/2010/gmock_test.vcxproj (limited to 'third_party/googletest/googlemock/msvc/2010') diff --git a/third_party/googletest/googlemock/msvc/2010/gmock.sln b/third_party/googletest/googlemock/msvc/2010/gmock.sln deleted file mode 100644 index bb48f5b..0000000 --- a/third_party/googletest/googlemock/msvc/2010/gmock.sln +++ /dev/null @@ -1,46 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual C++ Express 2010 -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gmock", "gmock.vcxproj", "{34681F0D-CE45-415D-B5F2-5C662DFE3BD5}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gmock_test", "gmock_test.vcxproj", "{F10D22F8-AC7B-4213-8720-608E7D878CD2}" -EndProject -Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gmock_main", "gmock_main.vcxproj", "{E4EF614B-30DF-4954-8C53-580A0BF6B589}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Win32 = Debug|Win32 - Debug|x64 = Debug|x64 - Release|Win32 = Release|Win32 - Release|x64 = Release|x64 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Debug|Win32.ActiveCfg = Debug|Win32 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Debug|Win32.Build.0 = Debug|Win32 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Debug|x64.ActiveCfg = Debug|x64 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Debug|x64.Build.0 = Debug|x64 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Release|Win32.ActiveCfg = Release|Win32 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Release|Win32.Build.0 = Release|Win32 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Release|x64.ActiveCfg = Release|x64 - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5}.Release|x64.Build.0 = Release|x64 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Debug|Win32.ActiveCfg = Debug|Win32 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Debug|Win32.Build.0 = Debug|Win32 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Debug|x64.ActiveCfg = Debug|x64 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Debug|x64.Build.0 = Debug|x64 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Release|Win32.ActiveCfg = Release|Win32 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Release|Win32.Build.0 = Release|Win32 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Release|x64.ActiveCfg = Release|x64 - {F10D22F8-AC7B-4213-8720-608E7D878CD2}.Release|x64.Build.0 = Release|x64 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Debug|Win32.ActiveCfg = Debug|Win32 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Debug|Win32.Build.0 = Debug|Win32 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Debug|x64.ActiveCfg = Debug|x64 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Debug|x64.Build.0 = Debug|x64 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Release|Win32.ActiveCfg = Release|Win32 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Release|Win32.Build.0 = Release|Win32 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Release|x64.ActiveCfg = Release|x64 - {E4EF614B-30DF-4954-8C53-580A0BF6B589}.Release|x64.Build.0 = Release|x64 - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal diff --git a/third_party/googletest/googlemock/msvc/2010/gmock.vcxproj b/third_party/googletest/googlemock/msvc/2010/gmock.vcxproj deleted file mode 100644 index 7bc71d3..0000000 --- a/third_party/googletest/googlemock/msvc/2010/gmock.vcxproj +++ /dev/null @@ -1,145 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {34681F0D-CE45-415D-B5F2-5C662DFE3BD5} - gmock - Win32Proj - - - - StaticLibrary - Unicode - true - v100 - - - StaticLibrary - Unicode - true - v100 - - - StaticLibrary - Unicode - v100 - - - StaticLibrary - Unicode - v100 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - - Disabled - ..\..\include;..\..;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - - - Disabled - ..\..\include;..\..;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_LIB;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - - - ..\..\include;..\..;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_LIB;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - - - ..\..\include;..\..;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_LIB;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - - - - $(GTestDir);%(AdditionalIncludeDirectories) - $(GTestDir);%(AdditionalIncludeDirectories) - $(GTestDir);%(AdditionalIncludeDirectories) - $(GTestDir);%(AdditionalIncludeDirectories) - - - - - - \ No newline at end of file diff --git a/third_party/googletest/googlemock/msvc/2010/gmock_config.props b/third_party/googletest/googlemock/msvc/2010/gmock_config.props deleted file mode 100644 index 017d710..0000000 --- a/third_party/googletest/googlemock/msvc/2010/gmock_config.props +++ /dev/null @@ -1,19 +0,0 @@ - - - - ../../../googletest - - - <_ProjectFileVersion>10.0.30319.1 - - - - $(GTestDir)/include;%(AdditionalIncludeDirectories) - - - - - $(GTestDir) - - - \ No newline at end of file diff --git a/third_party/googletest/googlemock/msvc/2010/gmock_main.vcxproj b/third_party/googletest/googlemock/msvc/2010/gmock_main.vcxproj deleted file mode 100644 index 43da043..0000000 --- a/third_party/googletest/googlemock/msvc/2010/gmock_main.vcxproj +++ /dev/null @@ -1,151 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {E4EF614B-30DF-4954-8C53-580A0BF6B589} - gmock_main - Win32Proj - - - - StaticLibrary - Unicode - true - v100 - - - StaticLibrary - Unicode - true - v100 - - - StaticLibrary - Unicode - v100 - - - StaticLibrary - Unicode - v100 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - - Disabled - ../../include;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_LIB;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - - - Disabled - ../../include;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_LIB;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - - - ../../include;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_LIB;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - - - ../../include;%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_LIB;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - - - {34681f0d-ce45-415d-b5f2-5c662dfe3bd5} - true - true - - - - - ../../include;%(AdditionalIncludeDirectories) - ../../include;%(AdditionalIncludeDirectories) - ../../include;%(AdditionalIncludeDirectories) - ../../include;%(AdditionalIncludeDirectories) - - - - - - \ No newline at end of file diff --git a/third_party/googletest/googlemock/msvc/2010/gmock_test.vcxproj b/third_party/googletest/googlemock/msvc/2010/gmock_test.vcxproj deleted file mode 100644 index dcbeb58..0000000 --- a/third_party/googletest/googlemock/msvc/2010/gmock_test.vcxproj +++ /dev/null @@ -1,176 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - {F10D22F8-AC7B-4213-8720-608E7D878CD2} - gmock_test - Win32Proj - - - - Application - Unicode - true - v100 - - - Application - Unicode - true - v100 - - - Application - Unicode - v100 - - - Application - Unicode - v100 - - - - - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - true - true - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - false - false - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - $(SolutionDir)$(Platform)-$(Configuration)\ - $(OutDir)$(ProjectName)\ - - - - /bigobj %(AdditionalOptions) - Disabled - ..\..\include;..\..;$(GTestDir);%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - true - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - true - Console - MachineX86 - - - - - /bigobj %(AdditionalOptions) - Disabled - ..\..\include;..\..;$(GTestDir);%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) - EnableFastChecks - MultiThreadedDebug - - - Level3 - ProgramDatabase - - - true - Console - - - - - /bigobj %(AdditionalOptions) - ..\..\include;..\..;$(GTestDir);%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - true - Console - true - true - MachineX86 - - - - - /bigobj %(AdditionalOptions) - ..\..\include;..\..;$(GTestDir);%(AdditionalIncludeDirectories) - WIN32;_VARIADIC_MAX=10;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) - MultiThreaded - - - Level3 - ProgramDatabase - - - true - Console - true - true - - - - - {e4ef614b-30df-4954-8c53-580a0bf6b589} - true - true - - - - - - - - - \ No newline at end of file -- cgit v1.2.3