diff options
Diffstat (limited to 'testing')
-rw-r--r-- | testing/SConscript.gtest | 102 | ||||
-rw-r--r-- | testing/using_gtest.scons | 22 |
2 files changed, 0 insertions, 124 deletions
diff --git a/testing/SConscript.gtest b/testing/SConscript.gtest deleted file mode 100644 index 83be06f..0000000 --- a/testing/SConscript.gtest +++ /dev/null @@ -1,102 +0,0 @@ -# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -Import('env') - -env = env.Clone() - -env.Prepend( - CPPPATH = [ - '$GTEST_DIR', - '$GTEST_DIR/include', - ], -) - -if env.Bit('windows'): - env.Append( - CCFLAGS = [ - '/TP', - - '/WX', - '/Wp64', - ], - ) - -input_files = ChromeFileList([ - # TODO(sgk): violate standard indentation so we don't have to - # reindent too much when we remove the explicit MSVSFilter() calls - # in favor of generating the hierarchy to reflect the file system. - MSVSFilter('src', [ - 'gtest/src/gtest-death-test.cc', - 'gtest/src/gtest-filepath.cc', - 'gtest/src/gtest-internal-inl.h', - 'gtest/src/gtest-port.cc', - 'gtest/src/gtest-test-part.cc', - 'gtest/src/gtest.cc', - ]), - MSVSFilter('include', [ - 'gtest/include/gtest/gtest-death-test.h', - 'gtest/include/gtest/gtest-message.h', - 'gtest/include/gtest/gtest-param-test.h', - 'gtest/include/gtest/gtest-spi.h', - 'gtest/include/gtest/gtest-test-part.h', - 'gtest/include/gtest/gtest-typed-test.h', - 'gtest/include/gtest/gtest.h', - 'gtest/include/gtest/gtest_pred_impl.h', - 'gtest/include/gtest/gtest_prod.h', - MSVSFilter('internal', [ - 'gtest/include/gtest/internal/gtest-death-test-internal.h', - 'gtest/include/gtest/internal/gtest-filepath.h', - 'gtest/include/gtest/internal/gtest-internal.h', - 'gtest/include/gtest/internal/gtest-linked_ptr.h', - 'gtest/include/gtest/internal/gtest-param-util-generated.h', - 'gtest/include/gtest/internal/gtest-param-util.h', - 'gtest/include/gtest/internal/gtest-port.h', - 'gtest/include/gtest/internal/gtest-string.h', - 'gtest/include/gtest/internal/gtest-type-util.h', - ]), - ]), - 'multiprocess_func_list.cc', - 'multiprocess_func_list.h', - 'platform_test.h', -]) - -env.ChromeLibrary('gtest', input_files) - -p = env.ChromeMSVSProject('gtest.vcproj', - dest='$CHROME_SRC_DIR/testing/gtest.vcproj', - guid='{BFE8E2A7-3B3B-43B0-A994-3058B852DB8B}', - keyword='Win32Proj', - files=input_files, - relative_path_prefix=r'./', - tools = [ - 'VCPreBuildEventTool', - 'VCCustomBuildTool', - 'VCXMLDataGeneratorTool', - 'VCWebServiceProxyGeneratorTool', - 'VCMIDLTool', - 'VCCLCompilerTool', - 'VCManagedResourceCompilerTool', - 'VCResourceCompilerTool', - 'VCPreLinkEventTool', - 'VCLibrarianTool', - 'VCALinkTool', - 'VCXDCMakeTool', - 'VCBscMakeTool', - 'VCFxCopTool', - 'VCPostBuildEventTool', - ], - ConfigurationType = '4') - -p.AddConfig('Debug|Win32', - InheritedPropertySheets = [ - '$(SolutionDir)../build/debug.vsprops', - './using_gtest.vsprops', - ]) - -p.AddConfig('Release|Win32', - InheritedPropertySheets = [ - '$(SolutionDir)../build/release.vsprops', - './using_gtest.vsprops', - ]) diff --git a/testing/using_gtest.scons b/testing/using_gtest.scons deleted file mode 100644 index a6bc10f..0000000 --- a/testing/using_gtest.scons +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. -# Use of this source code is governed by a BSD-style license that can be -# found in the LICENSE file. - -__doc__ = """ -Settings for other components using the gtest library. -""" - -Import("env") - -env.Append( - CPPPATH = [ - '$GTEST_DIR/include', - '$GTEST_DIR', - ], - CPPDEFINES = [ - 'UNIT_TEST', - ], - LIBS = [ - 'gtest', - ], -) |