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

Side by Side Diff: gyp/libwebp.gyp

Issue 1601253003: Update libwebp to version 0.5.0 (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Only build _neon files in neon target Created 4 years, 11 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 | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'skia_warnings_as_errors': 0, 7 'skia_warnings_as_errors': 0,
8 'conditions':[ 8 'conditions':[
9 ['skia_android_framework == 1', { 9 ['skia_android_framework == 1', {
10 'use_system_libwebp': 1, 10 'use_system_libwebp': 1,
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 '../third_party/externals/libwebp/src/dsp/enc_sse2.c', 80 '../third_party/externals/libwebp/src/dsp/enc_sse2.c',
81 '../third_party/externals/libwebp/src/dsp/filters.c', 81 '../third_party/externals/libwebp/src/dsp/filters.c',
82 '../third_party/externals/libwebp/src/dsp/filters_mips_dsp_r2.c', 82 '../third_party/externals/libwebp/src/dsp/filters_mips_dsp_r2.c',
83 '../third_party/externals/libwebp/src/dsp/filters_sse2.c', 83 '../third_party/externals/libwebp/src/dsp/filters_sse2.c',
84 '../third_party/externals/libwebp/src/dsp/lossless.c', 84 '../third_party/externals/libwebp/src/dsp/lossless.c',
85 '../third_party/externals/libwebp/src/dsp/lossless_mips_dsp_r2.c', 85 '../third_party/externals/libwebp/src/dsp/lossless_mips_dsp_r2.c',
86 '../third_party/externals/libwebp/src/dsp/lossless_sse2.c', 86 '../third_party/externals/libwebp/src/dsp/lossless_sse2.c',
87 '../third_party/externals/libwebp/src/dsp/rescaler.c', 87 '../third_party/externals/libwebp/src/dsp/rescaler.c',
88 '../third_party/externals/libwebp/src/dsp/rescaler_mips32.c', 88 '../third_party/externals/libwebp/src/dsp/rescaler_mips32.c',
89 '../third_party/externals/libwebp/src/dsp/rescaler_mips_dsp_r2.c', 89 '../third_party/externals/libwebp/src/dsp/rescaler_mips_dsp_r2.c',
90 '../third_party/externals/libwebp/src/dsp/rescaler_sse2.c',
90 '../third_party/externals/libwebp/src/dsp/upsampling.c', 91 '../third_party/externals/libwebp/src/dsp/upsampling.c',
91 '../third_party/externals/libwebp/src/dsp/upsampling_mips_dsp_r2.c', 92 '../third_party/externals/libwebp/src/dsp/upsampling_mips_dsp_r2.c',
92 '../third_party/externals/libwebp/src/dsp/upsampling_sse2.c', 93 '../third_party/externals/libwebp/src/dsp/upsampling_sse2.c',
93 '../third_party/externals/libwebp/src/dsp/yuv.c', 94 '../third_party/externals/libwebp/src/dsp/yuv.c',
94 '../third_party/externals/libwebp/src/dsp/yuv_mips32.c', 95 '../third_party/externals/libwebp/src/dsp/yuv_mips32.c',
95 '../third_party/externals/libwebp/src/dsp/yuv_mips_dsp_r2.c', 96 '../third_party/externals/libwebp/src/dsp/yuv_mips_dsp_r2.c',
96 '../third_party/externals/libwebp/src/dsp/yuv_sse2.c', 97 '../third_party/externals/libwebp/src/dsp/yuv_sse2.c',
97 ], 98 ],
98 'cflags': [ '-w' ], 99 'cflags': [ '-w' ],
99 'xcode_settings': { 'WARNING_CFLAGS': [ '-w' ] }, 100 'xcode_settings': { 'WARNING_CFLAGS': [ '-w' ] },
(...skipping 17 matching lines...) Expand all
117 ['arm_version >= 7', { 118 ['arm_version >= 7', {
118 'type': 'static_library', 119 'type': 'static_library',
119 'include_dirs': [ 120 'include_dirs': [
120 '../third_party/externals/libwebp', 121 '../third_party/externals/libwebp',
121 ], 122 ],
122 'sources': [ 123 'sources': [
123 '../third_party/externals/libwebp/src/dsp/dec_neon.c', 124 '../third_party/externals/libwebp/src/dsp/dec_neon.c',
124 '../third_party/externals/libwebp/src/dsp/enc_neon.c', 125 '../third_party/externals/libwebp/src/dsp/enc_neon.c',
125 '../third_party/externals/libwebp/src/dsp/lossless_neon.c', 126 '../third_party/externals/libwebp/src/dsp/lossless_neon.c',
126 '../third_party/externals/libwebp/src/dsp/lossless_enc_neon.c', 127 '../third_party/externals/libwebp/src/dsp/lossless_enc_neon.c',
128 '../third_party/externals/libwebp/src/dsp/rescaler_neon.c',
127 '../third_party/externals/libwebp/src/dsp/upsampling_neon.c', 129 '../third_party/externals/libwebp/src/dsp/upsampling_neon.c',
128 ], 130 ],
129 # behavior similar dsp_neon.c.neon in an Android.mk 131 # behavior similar dsp_neon.c.neon in an Android.mk
130 'cflags!': [ 132 'cflags!': [
131 '-mfpu=vfpv3-d16', 133 '-mfpu=vfpv3-d16',
132 ], 134 ],
133 'cflags': [ '-w' ], 135 'cflags': [ '-w' ],
134 },{ # !(arm_version >= 7) 136 },{ # !(arm_version >= 7)
135 'type': 'none', 137 'type': 'none',
136 }], 138 }],
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 ], 280 ],
279 }, 281 },
280 }, 282 },
281 ], 283 ],
282 ], 284 ],
283 } 285 }
284 ], 286 ],
285 }], 287 }],
286 ], 288 ],
287 } 289 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698