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

Side by Side Diff: third_party/libwebp/libwebp.gyp

Issue 653803003: libwebp: update to 0.4.2-rc2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « third_party/libwebp/enc/webpenc.c ('k') | third_party/libwebp/utils/bit_reader.h » ('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 (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 'neon_sources': [ 7 'neon_sources': [
8 'dsp/dec_neon.c', 8 'dsp/dec_neon.c',
9 'dsp/enc_neon.c', 9 'dsp/enc_neon.c',
10 'dsp/lossless_neon.c', 10 'dsp/lossless_neon.c',
(...skipping 30 matching lines...) Expand all
41 'sources': [ 41 'sources': [
42 'demux/demux.c', 42 'demux/demux.c',
43 ], 43 ],
44 }, 44 },
45 { 45 {
46 'target_name': 'libwebp_dsp', 46 'target_name': 'libwebp_dsp',
47 'type': 'static_library', 47 'type': 'static_library',
48 'include_dirs': ['.'], 48 'include_dirs': ['.'],
49 'sources': [ 49 'sources': [
50 'dsp/alpha_processing.c', 50 'dsp/alpha_processing.c',
51 'dsp/alpha_processing_sse2.c',
51 'dsp/cpu.c', 52 'dsp/cpu.c',
52 'dsp/dec.c', 53 'dsp/dec.c',
53 'dsp/dec_clip_tables.c', 54 'dsp/dec_clip_tables.c',
54 'dsp/dec_mips32.c', 55 'dsp/dec_mips32.c',
55 'dsp/dec_sse2.c', 56 'dsp/dec_sse2.c',
56 'dsp/enc.c', 57 'dsp/enc.c',
57 'dsp/enc_avx2.c', 58 'dsp/enc_avx2.c',
58 'dsp/enc_mips32.c', 59 'dsp/enc_mips32.c',
59 'dsp/enc_sse2.c', 60 'dsp/enc_sse2.c',
60 'dsp/lossless.c', 61 'dsp/lossless.c',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 ], 175 ],
175 'direct_dependent_settings': { 176 'direct_dependent_settings': {
176 'include_dirs': ['.'], 177 'include_dirs': ['.'],
177 }, 178 },
178 'conditions': [ 179 'conditions': [
179 ['OS!="win"', {'product_name': 'webp'}], 180 ['OS!="win"', {'product_name': 'webp'}],
180 ], 181 ],
181 }, 182 },
182 ], 183 ],
183 } 184 }
OLDNEW
« no previous file with comments | « third_party/libwebp/enc/webpenc.c ('k') | third_party/libwebp/utils/bit_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698