2011-09-07 01:13:05 +02:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
{
|
|
|
|
'variables': {
|
|
|
|
'use_system_zlib%': 0
|
|
|
|
},
|
|
|
|
'conditions': [
|
|
|
|
['use_system_zlib==0', {
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'zlib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'sources': [
|
|
|
|
'adler32.c',
|
|
|
|
'compress.c',
|
|
|
|
'crc32.c',
|
|
|
|
'crc32.h',
|
|
|
|
'deflate.c',
|
|
|
|
'deflate.h',
|
2014-12-01 06:18:53 +01:00
|
|
|
'gzclose.c',
|
|
|
|
'gzguts.h',
|
|
|
|
'gzlib.c',
|
|
|
|
'gzread.c',
|
|
|
|
'gzwrite.c',
|
2011-09-07 01:13:05 +02:00
|
|
|
'infback.c',
|
|
|
|
'inffast.c',
|
|
|
|
'inffast.h',
|
|
|
|
'inffixed.h',
|
|
|
|
'inflate.c',
|
|
|
|
'inflate.h',
|
|
|
|
'inftrees.c',
|
|
|
|
'inftrees.h',
|
|
|
|
'trees.c',
|
|
|
|
'trees.h',
|
|
|
|
'uncompr.c',
|
|
|
|
'zconf.h',
|
|
|
|
'zlib.h',
|
|
|
|
'zutil.c',
|
|
|
|
'zutil.h',
|
|
|
|
],
|
|
|
|
'include_dirs': [
|
|
|
|
'.',
|
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [
|
|
|
|
'.',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'conditions': [
|
|
|
|
['OS!="win"', {
|
2011-10-28 17:27:47 +02:00
|
|
|
'cflags!': [ '-ansi' ],
|
2017-01-31 17:12:24 +01:00
|
|
|
'defines': [ 'Z_HAVE_UNISTD_H', 'HAVE_HIDDEN' ],
|
2011-09-07 01:13:05 +02:00
|
|
|
}],
|
2014-12-01 06:18:53 +01:00
|
|
|
['OS=="mac" or OS=="ios" or OS=="freebsd" or OS=="android"', {
|
|
|
|
# Mac, Android and the BSDs don't have fopen64, ftello64, or
|
|
|
|
# fseeko64. We use fopen, ftell, and fseek instead on these
|
|
|
|
# systems.
|
|
|
|
'defines': [
|
|
|
|
'USE_FILE32API'
|
|
|
|
],
|
|
|
|
}],
|
2011-09-07 01:13:05 +02:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}, {
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'zlib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'defines': [
|
|
|
|
'USE_SYSTEM_ZLIB',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'defines': [
|
|
|
|
'USE_SYSTEM_ZLIB',
|
|
|
|
],
|
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
'-lz',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
}
|