1 # Copyright (c) 2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 # Ripped and modded from chrome.
13 ZLIB_DIR = '$THIRD_PARTY_DIR/zlib',
27 '$ZLIB_DIR/adler32.c',
29 # Inflate Algorithm (use inflate or infback, but not both)
30 '$ZLIB_DIR/inflate.c',
31 '$ZLIB_DIR/inffast.c',
32 '$ZLIB_DIR/inftrees.c',
35 # The following files are not yet needed; exclude them to save size.
36 if not env['OFFICIAL_BUILD']:
39 '$ZLIB_DIR/compress.c',
40 '$ZLIB_DIR/deflate.c',
41 '$ZLIB_DIR/uncompr.c',
48 env.GearsStaticLibrary('zlib-gears', input_files)