1URL: https://gerrit.chromium.org/gerrit/gitweb?p=webm%2Flibwebp.git 2Version: v0.4.3 3License: Google BSD like 4 5Local modifications: 6- Rewrite Android.mk to remove duplicate definitions and set module name 7 in a consistent way with other external libraries 8- Copy public headers from src/webp to include/webp, so path to headers 9 may be appended into CFLAGS without risk for other private headers 10 (e.g. bits.h) to leak into 11- Removed build files necessary for building via autoconf/automake tools 12 These files are not required to build via Android.mk 13- Added a local copy of cpu-features.[hc] to src/dsp 14- Removed WEBP_ANDROID_NEON check in dsp.h to avoid breaking non-NEON builds 15 where the flags in Android.mk are not set correctly currently. 16 17The Android.mk file creates WebP decoder and encoder static libraries which 18can be added to any application by adding to LOCAL_STATIC_LIBRARIES 19libwebp-decode libwebp-encode: 20 21 LOCAL_STATIC_LIBRARIES += libwebp-decode libwebp-encode 22 23