2011-06-24 23:13:47 +00:00
|
|
|
{
|
|
|
|
'includes': [
|
2011-07-01 17:16:26 +00:00
|
|
|
'common.gypi',
|
2011-06-24 23:13:47 +00:00
|
|
|
],
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'zlib',
|
|
|
|
'type': 'static_library',
|
|
|
|
'include_dirs': [
|
|
|
|
'../include/config',
|
|
|
|
'../include/core',
|
|
|
|
],
|
|
|
|
'sources': [
|
|
|
|
'../include/core/SkFlate.h',
|
|
|
|
|
|
|
|
'../src/core/SkFlate.cpp',
|
|
|
|
],
|
|
|
|
'conditions': [
|
2011-07-01 20:20:07 +00:00
|
|
|
[ 'skia_os == "mac"', {
|
2011-06-24 23:13:47 +00:00
|
|
|
'link_settings': {
|
|
|
|
'libraries': [
|
|
|
|
'$(SDKROOT)/usr/lib/libz.dylib',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
|
|
|
|
}],
|
2011-11-07 15:43:57 +00:00
|
|
|
[ 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
|
2011-06-24 23:13:47 +00:00
|
|
|
'link_settings': { 'libraries': [ '-lz', ], },
|
|
|
|
'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
|
|
|
|
}],
|
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|