summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-21 20:01:43 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-21 20:01:43 +0000
commit8a0fde3153aeebbed4512fbae5d586b33490f1ab (patch)
tree11f87dafac673c83d0104f61b1d34baa494e8c6f /third_party
parent60603f7da176f2ecbf026cbb687f6144ad41ba66 (diff)
downloadchromium_src-8a0fde3153aeebbed4512fbae5d586b33490f1ab.zip
chromium_src-8a0fde3153aeebbed4512fbae5d586b33490f1ab.tar.gz
chromium_src-8a0fde3153aeebbed4512fbae5d586b33490f1ab.tar.bz2
Build bsdiff.exe, not bsdiff.lib (old, old cut-and-paste error).
Review URL: http://codereview.chromium.org/11572 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5838 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/bsdiff/bsdiff.scons12
1 files changed, 3 insertions, 9 deletions
diff --git a/third_party/bsdiff/bsdiff.scons b/third_party/bsdiff/bsdiff.scons
index 9aa56fb..9705f51 100644
--- a/third_party/bsdiff/bsdiff.scons
+++ b/third_party/bsdiff/bsdiff.scons
@@ -8,18 +8,12 @@ env = env.Clone()
env.ApplySConscript([
'$BSPATCH_DIR/using_bspatch.scons',
+ '$CHROME_SRC_DIR/build/external_code.scons',
+ '$LZMA_SDK_DIR/using_lzma_sdk.scons',
])
-if env['PLATFORM'] == 'win32':
- env.Append(
- CCFLAGS = [
- '/TP',
- '/wd4800',
- ],
- )
-
input_files = [
"mbsdiff.cc",
]
-env.ChromeStaticLibrary('bsdiff', input_files)
+env.ChromeProgram('bsdiff', input_files)