diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 22:05:12 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 22:05:12 +0000 |
commit | 0fad1f1a74408b939d1b09dcc2f9391544e7e692 (patch) | |
tree | c62164260c26f143c9ae43c32694142a725bc7eb /printing | |
parent | a9b826af8ef183810c176b9ede4a2934f4678d50 (diff) | |
download | chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.zip chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.gz chromium_src-0fad1f1a74408b939d1b09dcc2f9391544e7e692.tar.bz2 |
Remove the checked-in scons configuration files.
Review URL: http://codereview.chromium.org/53121
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing')
-rw-r--r-- | printing/SConstruct | 7 | ||||
-rw-r--r-- | printing/printing.scons | 22 | ||||
-rw-r--r-- | printing/printing_lib.scons | 66 | ||||
-rw-r--r-- | printing/printing_unittests.scons | 108 | ||||
-rw-r--r-- | printing/using_printing.scons | 15 |
5 files changed, 0 insertions, 218 deletions
diff --git a/printing/SConstruct b/printing/SConstruct deleted file mode 100644 index feee7f2..0000000 --- a/printing/SConstruct +++ /dev/null @@ -1,7 +0,0 @@ -# Copyright (c) 2009 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. - -build_component = 'printing' -SConscript('../build/SConscript.main', - exports=['build_component']) diff --git a/printing/printing.scons b/printing/printing.scons deleted file mode 100644 index c86c31a..0000000 --- a/printing/printing.scons +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright (c) 2009 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__ = """ -Master configuration for building printing components. -""" - -Import('env') - -# Arrange for Hammer to add all programs to the 'printing' Alias. -env.Append( - COMPONENT_PROGRAM_GROUPS = ['printing'], - COMPONENT_TEST_PROGRAM_GROUPS = ['printing'], -) - -sconscript_files = [ - 'printing_lib.scons', - 'printing_unittests.scons', -] - -SConscript(sconscript_files, exports=['env']) diff --git a/printing/printing_lib.scons b/printing/printing_lib.scons deleted file mode 100644 index 29986af..0000000 --- a/printing/printing_lib.scons +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright (c) 2009 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__ = """ -Configuration for building printing.lib / libprinting.a. -""" - -Import('env') - -env = env.Clone() - -env.Prepend( - CPPPATH = [ - '$CHROME_SRC_DIR', - ], -) - -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. - 'units.cc', - 'units.h', -]) - -env.ChromeLibrary('printing', input_files) - -p = env.ChromeMSVSProject('build/printing.vcproj', - dest='$CHROME_SRC_DIR/printing/printing.vcproj', - guid='{9E5416B9-B91B-4029-93F4-102C1AD5CAF4}', - keyword='Win32Proj', - # TODO(sgk): when we can intuit the hierarchy - # from the built targets. - #buildtargets=TODO, - files=input_files, - 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', - './printing.vsprops', - ]) - -p.AddConfig('Release|Win32', - InheritedPropertySheets=[ - '$(SolutionDir)../build/release.vsprops', - './printing.vsprops', - ]) diff --git a/printing/printing_unittests.scons b/printing/printing_unittests.scons deleted file mode 100644 index 097a38d..0000000 --- a/printing/printing_unittests.scons +++ /dev/null @@ -1,108 +0,0 @@ -# Copyright (c) 2009 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__ = """ -Configuration for building the printing_unittests{,.exe} executable. -""" - -Import('env') - -env = env.Clone() - -env.SConscript([ - '$BASE_DIR/using_base.scons', - '$GTEST_DIR/../using_gtest.scons', - '$ICU38_DIR/using_icu38.scons', - '$PRINTING_DIR/using_printing.scons', -], {'env':env}) - -env.Prepend( - CPPPATH = [ - '$CHROME_SRC_DIR', - ], -) - -if env.Bit('windows'): - env.Prepend( - CCFLAGS = [ - '/TP', - '/WX', - ], - CPPDEFINES = [ - '_WIN32_WINNT=0x0600', - 'WINVER=0x0600', - '_HAS_EXCEPTIONS=0', - ], - LINKFLAGS = [ - '/DELAYLOAD:"dwmapi.dll"', - '/DELAYLOAD:"uxtheme.dll"', - '/MACHINE:X86', - '/FIXED:No', - '/safeseh', - '/dynamicbase', - '/ignore:4199', - '/nxcompat', - ], - ) - -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('support', [ - 'run_all_unittests.cc', - '../base/test_suite.h', - ]), - MSVSFilter('tests', [ - 'units_unittest.cc', - ]), -]) - -env.ChromeTestProgram('printing_unittests', input_files) - -p = env.ChromeMSVSProject('build/printing_unittests.vcproj', - dest=('$CHROME_SRC_DIR/printing/' + - 'printing_unittests.vcproj'), - guid='{8B2EE5D9-41BC-4AA2-A401-2DC143A05D2E}', - keyword='Win32Proj', - # TODO(sgk): when we can intuit the hierarchy - # from the built targets. - #buildtargets=TODO, - files=input_files, - tools=[ - 'VCPreBuildEventTool', - 'VCCustomBuildTool', - 'VCXMLDataGeneratorTool', - 'VCWebServiceProxyGeneratorTool', - 'VCMIDLTool', - MSVSTool('VCCLCompilerTool', - PreprocessorDefinitions='UNIT_TEST'), - 'VCManagedResourceCompilerTool', - 'VCResourceCompilerTool', - 'VCPreLinkEventTool', - 'VCLinkerTool', - 'VCALinkTool', - 'VCManifestTool', - 'VCXDCMakeTool', - 'VCBscMakeTool', - 'VCFxCopTool', - 'VCAppVerifierTool', - 'VCWebDeploymentTool', - 'VCPostBuildEventTool', - ], - ConfigurationType='1') - -p.AddConfig('Debug|Win32', - InheritedPropertySheets=[ - '$(SolutionDir)../build/debug.vsprops', - '$(SolutionDir)../testing/using_gtest.vsprops', - 'printing.vsprops', - ]) - -p.AddConfig('Release|Win32', - InheritedPropertySheets=[ - '$(SolutionDir)../build/release.vsprops', - '$(SolutionDir)../testing/using_gtest.vsprops', - 'printing.vsprops', - ]) diff --git a/printing/using_printing.scons b/printing/using_printing.scons deleted file mode 100644 index f90e5bf..0000000 --- a/printing/using_printing.scons +++ /dev/null @@ -1,15 +0,0 @@ -# Copyright (c) 2009 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 printing library. -""" - -Import("env") - -env.Append( - LIBS = [ - 'printing', - ], -) |