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

Unified Diff: third_party/libwebp/libwebp.gyp

Issue 12942006: libwebp: update snapshot to v0.3.0-rc6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libwebp/libwebp.gyp
diff --git a/third_party/libwebp/libwebp.gyp b/third_party/libwebp/libwebp.gyp
index 2fe4a4b8efd5bc2157395471ef64ac5b16a3e4ad..1eb2217aa2e94bb256165cc6bbcc9be83f38512a 100644
--- a/third_party/libwebp/libwebp.gyp
+++ b/third_party/libwebp/libwebp.gyp
@@ -28,6 +28,14 @@
],
},
{
+ 'target_name': 'libwebp_demux',
+ 'type': 'static_library',
+ 'include_dirs': ['.'],
+ 'sources': [
+ 'demux/demux.c',
+ ],
+ },
+ {
'target_name': 'libwebp_dsp',
'type': 'static_library',
'include_dirs': ['.'],
@@ -63,8 +71,10 @@
'include_dirs': ['.'],
'sources': [
'dsp/dec_neon.c',
+ 'dsp/enc_neon.c',
+ 'dsp/upsampling_neon.c',
],
- # behavior similar dsp_neon.c.neon in an Android.mk
+ # behavior similar to *.c.neon in an Android.mk
'cflags!': [ '-mfpu=vfpv3-d16' ],
'cflags': [ '-mfpu=neon' ],
},{ # "armv7 != 1"
@@ -97,6 +107,7 @@
'enc/picture.c',
'enc/quant.c',
'enc/syntax.c',
+ 'enc/token.c',
'enc/tree.c',
'enc/vp8l.c',
'enc/webpenc.c',
@@ -114,6 +125,7 @@
'utils/huffman.c',
'utils/huffman_encode.c',
'utils/quant_levels.c',
+ 'utils/quant_levels_dec.c',
'utils/rescaler.c',
'utils/thread.c',
'utils/utils.c',
@@ -124,6 +136,7 @@
'type': 'none',
'dependencies' : [
'libwebp_dec',
+ 'libwebp_demux',
'libwebp_dsp',
'libwebp_dsp_neon',
'libwebp_enc',
« 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