summaryrefslogtreecommitdiffstats
path: root/third_party/bspatch
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-28 04:20:02 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-28 04:20:02 +0000
commit630fdbaf3eeebd87f476c5b04d199ffe21c6d9e4 (patch)
tree44c02c5d9b79d07b18b2fc1ad85efe2d255faf0c /third_party/bspatch
parent33825b8a884c8fb375ae685e9a6a5b0751574a5c (diff)
downloadchromium_src-630fdbaf3eeebd87f476c5b04d199ffe21c6d9e4.zip
chromium_src-630fdbaf3eeebd87f476c5b04d199ffe21c6d9e4.tar.gz
chromium_src-630fdbaf3eeebd87f476c5b04d199ffe21c6d9e4.tar.bz2
Remove the old checked-in SCons and Visual Studio files for
bsdiff and bspatch. svn:ignore the new generated ones. BUG=none TEST=none Review URL: http://codereview.chromium.org/115819 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17064 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/bspatch')
-rw-r--r--third_party/bspatch/bspatch.scons64
-rw-r--r--third_party/bspatch/bspatch.vcproj56
-rw-r--r--third_party/bspatch/using_bspatch.scons18
-rw-r--r--third_party/bspatch/using_bspatch.vsprops11
4 files changed, 0 insertions, 149 deletions
diff --git a/third_party/bspatch/bspatch.scons b/third_party/bspatch/bspatch.scons
deleted file mode 100644
index 759f475..0000000
--- a/third_party/bspatch/bspatch.scons
+++ /dev/null
@@ -1,64 +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.ApplySConscript([
- '$LZMA_SDK_DIR/using_lzma_sdk.scons',
-])
-
-if env.Bit('windows'):
- env.Append(
- CCFLAGS = [
- '/TP',
- '/wd4800',
- ],
- )
-elif env.Bit('linux'):
- # We're not responsible for bad warning hygiene in this third party code.
- env.FilterOut(
- CXXFLAGS = ['-Wall'],
- )
-
-input_files = ChromeFileList([
- 'mbspatch.cc',
- 'mbspatch.h',
-])
-
-env.ChromeLibrary('bspatch', input_files)
-
-p = env.ChromeMSVSProject('bspatch.vcproj',
- dest=('$CHROME_SRC_DIR/third_party/bspatch/' +
- '/bspatch.vcproj'),
- guid='{D7ED06E8-6138-4CE3-A906-5EF1D9C804E0}',
- # TODO(sgk): when we can intuit the hierarchy
- # from the built targets.
- #buildtargets=TODO,
- files=input_files,
- relative_path_prefix='./',
- tools=[
- 'VCCLCompilerTool',
- 'VCLibrarianTool',
- ],
- ConfigurationType='4')
-
-p.AddConfig('Debug|Win32',
- InheritedPropertySheets=[
- '$(SolutionDir)../build/common.vsprops',
- '$(SolutionDir)../build/debug.vsprops',
- '$(SolutionDir)../build/external_code.vsprops',
- '$(SolutionDir)../third_party/bspatch/using_bspatch.vsprops',
- '$(SolutionDir)../third_party/lzma_sdk/using_lzma_sdk.vsprops',
- ])
-
-p.AddConfig('Release|Win32',
- InheritedPropertySheets=[
- '$(SolutionDir)../build/common.vsprops',
- '$(SolutionDir)../build/release.vsprops',
- '$(SolutionDir)../build/external_code.vsprops',
- '$(SolutionDir)../third_party/bspatch/using_bspatch.vsprops',
- '$(SolutionDir)../third_party/lzma_sdk/using_lzma_sdk.vsprops',
- ])
diff --git a/third_party/bspatch/bspatch.vcproj b/third_party/bspatch/bspatch.vcproj
deleted file mode 100644
index 0f068a3..0000000
--- a/third_party/bspatch/bspatch.vcproj
+++ /dev/null
@@ -1,56 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioProject
- ProjectType="Visual C++"
- Version="8.00"
- Name="bspatch"
- ProjectGUID="{D7ED06E8-6138-4CE3-A906-5EF1D9C804E0}"
- RootNamespace="bspatch"
- >
- <Platforms>
- <Platform
- Name="Win32"
- />
- </Platforms>
- <ToolFiles>
- </ToolFiles>
- <Configurations>
- <Configuration
- Name="Debug|Win32"
- ConfigurationType="4"
- InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\debug.vsprops;$(SolutionDir)..\build\external_code.vsprops;$(SolutionDir)..\third_party\bspatch\using_bspatch.vsprops;$(SolutionDir)..\third_party\lzma_sdk\using_lzma_sdk.vsprops"
- >
- <Tool
- Name="VCCLCompilerTool"
- />
- <Tool
- Name="VCLibrarianTool"
- />
- </Configuration>
- <Configuration
- Name="Release|Win32"
- ConfigurationType="4"
- InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\build\release.vsprops;$(SolutionDir)..\build\external_code.vsprops;$(SolutionDir)..\third_party\bspatch\using_bspatch.vsprops;$(SolutionDir)..\third_party\lzma_sdk\using_lzma_sdk.vsprops"
- >
- <Tool
- Name="VCCLCompilerTool"
- />
- <Tool
- Name="VCLibrarianTool"
- />
- </Configuration>
- </Configurations>
- <References>
- </References>
- <Files>
- <File
- RelativePath=".\mbspatch.cc"
- >
- </File>
- <File
- RelativePath=".\mbspatch.h"
- >
- </File>
- </Files>
- <Globals>
- </Globals>
-</VisualStudioProject>
diff --git a/third_party/bspatch/using_bspatch.scons b/third_party/bspatch/using_bspatch.scons
deleted file mode 100644
index 945fdf9..0000000
--- a/third_party/bspatch/using_bspatch.scons
+++ /dev/null
@@ -1,18 +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 bspatch library.
-"""
-
-Import("env")
-
-env.Append(
- CPPPATH = [
- '$BSPATCH_DIR',
- ],
- LIBS = [
- 'bspatch',
- ],
-)
diff --git a/third_party/bspatch/using_bspatch.vsprops b/third_party/bspatch/using_bspatch.vsprops
deleted file mode 100644
index d13953d..0000000
--- a/third_party/bspatch/using_bspatch.vsprops
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="Windows-1252"?>
-<VisualStudioPropertySheet
- ProjectType="Visual C++"
- Version="8.00"
- Name="using_bspatch"
- >
- <Tool
- Name="VCCLCompilerTool"
- AdditionalIncludeDirectories="&quot;$(SolutionDir)..\third_party\bspatch&quot;"
- />
-</VisualStudioPropertySheet>