Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: gyp/libpng.gyp

Issue 1710083007: Update libpng to 1.6.22beta (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Keep the skia.googlesource mirror Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/codec.gyp ('k') | src/codec/SkPngCodec.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 Google Inc. 1 # Copyright 2014 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 'skia_warnings_as_errors': 0, 8 'skia_warnings_as_errors': 0,
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 '../third_party/externals/libpng/pngrtran.c', 58 '../third_party/externals/libpng/pngrtran.c',
59 '../third_party/externals/libpng/pngrutil.c', 59 '../third_party/externals/libpng/pngrutil.c',
60 '../third_party/externals/libpng/pngset.c', 60 '../third_party/externals/libpng/pngset.c',
61 '../third_party/externals/libpng/pngtrans.c', 61 '../third_party/externals/libpng/pngtrans.c',
62 '../third_party/externals/libpng/pngwio.c', 62 '../third_party/externals/libpng/pngwio.c',
63 '../third_party/externals/libpng/pngwrite.c', 63 '../third_party/externals/libpng/pngwrite.c',
64 '../third_party/externals/libpng/pngwtran.c', 64 '../third_party/externals/libpng/pngwtran.c',
65 '../third_party/externals/libpng/pngwutil.c', 65 '../third_party/externals/libpng/pngwutil.c',
66 ], 66 ],
67 'conditions': [ 67 'conditions': [
68 [ 'skia_os == "ios"', { 68 [ '"x86" in skia_arch_type', {
69 # explicitly disable looking for NEON on iOS builds 69 'defines': [
70 'PNG_INTEL_SSE_OPT=1',
71 ],
72 'sources': [
73 '../third_party/externals/libpng/contrib/intel/intel_init.c',
74 '../third_party/externals/libpng/contrib/intel/filter_sse2_intrinsic s.c',
75 ],
76 }],
77 [ '(("arm64" == skia_arch_type) or \
78 ("arm" == skia_arch_type and arm_neon == 1)) and \
79 ("ios" != skia_os)', {
80 'defines': [
81 'PNG_ARM_NEON_OPT=2',
82 'PNG_ARM_NEON_IMPLEMENTATION=1',
83 ],
84 'sources': [
85 '../third_party/externals/libpng/arm/arm_init.c',
86 '../third_party/externals/libpng/arm/filter_neon_intrinsics.c',
87 ],
88 }],
89 [ '"ios" == skia_os', {
70 'defines': [ 90 'defines': [
71 'PNG_ARM_NEON_OPT=0', 91 'PNG_ARM_NEON_OPT=0',
72 ], 92 ],
73 }, { # skia_os != "ios"
74 'dependencies': [
75 'libpng.gyp:libpng_static_neon',
76 ],
77 }], 93 }],
78 ], 94 ],
79 },
80 {
81 'target_name': 'libpng_static_neon',
82 'type': 'static_library',
83 'include_dirs': [
84 # Needed for generated pnglibconf.h and pngprefix.h
85 '../third_party/libpng',
86 '../third_party/externals/libpng',
87 ],
88 'dependencies': [
89 'zlib.gyp:zlib',
90 ],
91 'sources': [
92 '../third_party/externals/libpng/arm/arm_init.c',
93 '../third_party/externals/libpng/arm/filter_neon.S',
94 '../third_party/externals/libpng/arm/filter_neon_intrinsics.c',
95 ],
96 'conditions': [
97 ['arm_neon_optional', {
98 'cflags': [
99 '-mfpu=neon',
100 ],
101 }],
102 ],
103 } 95 }
104 ] 96 ]
105 } 97 }
OLDNEW
« no previous file with comments | « gyp/codec.gyp ('k') | src/codec/SkPngCodec.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698