1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# 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',
],
'conditions': [
['not arm_neon', {
'defines': [
# FIXME: Why is this needed? Without it, pngpriv.h sets it
# to 2 if __ARM_NEON is defined, but shouldn't __ARM_NEON
# not be defined since arm_neon is 0?
'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',
],
},
},
}
]
]
}
]
],
},
]
}
|