diff options
Diffstat (limited to 'third_party/zlib/zlib.scons')
-rw-r--r-- | third_party/zlib/zlib.scons | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/third_party/zlib/zlib.scons b/third_party/zlib/zlib.scons new file mode 100644 index 0000000..a7dcb89 --- /dev/null +++ b/third_party/zlib/zlib.scons @@ -0,0 +1,36 @@ +# 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__ = """ +Configuration for building zlib.lib / libzlib.a. +""" + +Import('env') + +env = env.Clone() + +if env['PLATFORM'] == 'win32': + env.Append( + CCFLAGS = [ + '/TC', + '/wd4800', + ], + ) + +input_files = [ + 'adler32.c', + 'compress.c', + 'crc32.c', + 'deflate.c', + 'gzio.c', + 'infback.c', + 'inffast.c', + 'inflate.c', + 'inftrees.c', + 'trees.c', + 'uncompr.c', + 'zutil.c', +] + +env.ChromeStaticLibrary('zlib', input_files) |