skia2/gyp/libpng.gyp
mtklein ac813d8a12 Try ARMv7 and NEON for Daisy.
I think Daisy's color order problems are in non-NEON ARM assembly.
NEON might actually be fine.

BUG=skia:1843

Committed: https://skia.googlesource.com/skia/+/a121c0ee6b911dd7004c6054a8692d37084b6b3d

CQ_EXTRA_TRYBOTS=client.skia.compile:Build-Ubuntu-GCC-Arm7-Debug-CrOS_Daisy-Trybot,Build-Ubuntu-GCC-Arm7-Debug-Android_Neon-Trybot,Build-Ubuntu-GCC-Arm7-Debug-Android-Trybot,Build-Ubuntu-GCC-Arm64-Debug-Android-Trybot

Review URL: https://codereview.chromium.org/1054233002
2015-04-03 08:27:37 -07:00

95 lines
3.1 KiB
Python

# 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',
# Needed for generated pnglibconf.h
'../third_party/libpng',
],
'dependencies': [
'zlib.gyp:zlib',
],
'export_dependent_settings': [
'zlib.gyp:zlib',
],
'direct_dependent_settings': {
'include_dirs': [
'../third_party/externals/libpng',
# Needed for generated pnglibconf.h
'../third_party/libpng',
],
},
'cflags': [
'-w',
'-fvisibility=hidden',
],
'defines': [
# TODO: it'd be nice to enable PNG's NEON when possible.
'PNG_ARM_NEON_OPT=0',
],
'sources': [
'../third_party/externals/libpng/png.c',
'../third_party/externals/libpng/pngerror.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/pngwio.c',
'../third_party/externals/libpng/pngwrite.c',
'../third_party/externals/libpng/pngwtran.c',
'../third_party/externals/libpng/pngwutil.c',
],
}, { # not skia_libpng_static
'type': 'none',
'conditions': [
[ 'skia_os == "android"',
{
# TODO(halcanary): merge all png targets into this file.
'dependencies': [
'android_deps.gyp:png',
],
'export_dependent_settings': [
'android_deps.gyp:png',
],
}, { # skia_os != "android"
'dependencies': [
'zlib.gyp:zlib',
],
'export_dependent_settings': [
'zlib.gyp:zlib',
],
'direct_dependent_settings': {
'link_settings': {
'libraries': [
'-lpng',
],
},
},
}
]
]
}
]
],
},
]
}