| Index: gyp/libpng.gyp
|
| diff --git a/gyp/libpng.gyp b/gyp/libpng.gyp
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b2ea6c0880b1f5808b2d49311a10fa21d0812800
|
| --- /dev/null
|
| +++ b/gyp/libpng.gyp
|
| @@ -0,0 +1,72 @@
|
| +# Copyright 2014 Google Inc.
|
| +#
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +{
|
| + 'variables': {
|
| + 'skia_warnings_as_errors': 0,
|
| + },
|
| + 'targets': [
|
| + {
|
| + 'target_name': 'libpng',
|
| + 'conditions': [
|
| + ['skia_libpng_static', {
|
| + 'type': 'static_library',
|
| + 'include_dirs': [
|
| + '../third_party/externals/libpng',
|
| + ],
|
| + 'dependencies': [
|
| + 'libzlib.gyp:libzlib',
|
| + ],
|
| + 'export_dependent_settings': [
|
| + 'libzlib.gyp:libzlib',
|
| + ],
|
| + 'direct_dependent_settings': {
|
| + 'include_dirs': [
|
| + '../third_party/externals/libpng',
|
| + ],
|
| + },
|
| + 'cflags': [
|
| + '-w',
|
| + '-fvisibility=hidden',
|
| + ],
|
| + 'sources': [
|
| + '../third_party/externals/libpng/png.c',
|
| + '../third_party/externals/libpng/pngerror.c',
|
| + '../third_party/externals/libpng/pnggccrd.c',
|
| + '../third_party/externals/libpng/pngget.c',
|
| + '../third_party/externals/libpng/pngmem.c',
|
| + '../third_party/externals/libpng/pngpread.c',
|
| + '../third_party/externals/libpng/pngread.c',
|
| + '../third_party/externals/libpng/pngrio.c',
|
| + '../third_party/externals/libpng/pngrtran.c',
|
| + '../third_party/externals/libpng/pngrutil.c',
|
| + '../third_party/externals/libpng/pngset.c',
|
| + '../third_party/externals/libpng/pngtrans.c',
|
| + '../third_party/externals/libpng/pngvcrd.c',
|
| + '../third_party/externals/libpng/pngwio.c',
|
| + '../third_party/externals/libpng/pngwrite.c',
|
| + '../third_party/externals/libpng/pngwtran.c',
|
| + '../third_party/externals/libpng/pngwutil.c',
|
| + ],
|
| + }, {
|
| + 'type': 'none',
|
| + 'dependencies': [
|
| + 'libzlib.gyp:libzlib',
|
| + ],
|
| + 'export_dependent_settings': [
|
| + 'libzlib.gyp:libzlib',
|
| + ],
|
| + 'direct_dependent_settings': {
|
| + 'link_settings': {
|
| + 'libraries': [
|
| + '-lpng',
|
| + ],
|
| + },
|
| + },
|
| + }]
|
| + ],
|
| + }
|
| + ]
|
| +}
|
|
|