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

Unified Diff: third_party/libwebp/BUILD.gn

Issue 2651883004: libwebp-0.6.0-rc1 (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/libwebp/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libwebp/BUILD.gn
diff --git a/third_party/libwebp/BUILD.gn b/third_party/libwebp/BUILD.gn
index 542244791e43b4cbf86994cfebc47d1b9af69be9..470bd2926c6d07a38dd7d0f26ad9a31b06453063 100644
--- a/third_party/libwebp/BUILD.gn
+++ b/third_party/libwebp/BUILD.gn
@@ -18,16 +18,16 @@ use_dsp_neon =
static_library("libwebp_dec") {
sources = [
- "dec/alpha.c",
- "dec/buffer.c",
- "dec/frame.c",
- "dec/idec.c",
- "dec/io.c",
- "dec/quant.c",
- "dec/tree.c",
- "dec/vp8.c",
- "dec/vp8l.c",
- "dec/webp.c",
+ "dec/alpha_dec.c",
+ "dec/buffer_dec.c",
+ "dec/frame_dec.c",
+ "dec/idec_dec.c",
+ "dec/io_dec.c",
+ "dec/quant_dec.c",
+ "dec/tree_dec.c",
+ "dec/vp8_dec.c",
+ "dec/vp8l_dec.c",
+ "dec/webp_dec.c",
]
configs -= [ "//build/config/compiler:chromium_code" ]
@@ -78,18 +78,24 @@ static_library("libwebp_dsp") {
"dsp/enc_avx2.c",
"dsp/enc_mips32.c",
"dsp/enc_mips_dsp_r2.c",
+ "dsp/enc_msa.c",
"dsp/filters.c",
"dsp/filters_mips_dsp_r2.c",
+ "dsp/filters_msa.c",
"dsp/lossless.c",
"dsp/lossless_enc.c",
"dsp/lossless_enc_mips32.c",
"dsp/lossless_enc_mips_dsp_r2.c",
+ "dsp/lossless_enc_msa.c",
"dsp/lossless_mips_dsp_r2.c",
+ "dsp/lossless_msa.c",
"dsp/rescaler.c",
"dsp/rescaler_mips32.c",
"dsp/rescaler_mips_dsp_r2.c",
+ "dsp/rescaler_msa.c",
"dsp/upsampling.c",
"dsp/upsampling_mips_dsp_r2.c",
+ "dsp/upsampling_msa.c",
"dsp/yuv.c",
"dsp/yuv_mips32.c",
"dsp/yuv_mips_dsp_r2.c",
@@ -177,8 +183,10 @@ static_library("libwebp_dsp_sse2") {
if (use_dsp_neon) {
static_library("libwebp_dsp_neon") {
sources = [
+ "dsp/alpha_processing_neon.c",
"dsp/dec_neon.c",
"dsp/enc_neon.c",
+ "dsp/filters_neon.c",
"dsp/lossless_enc_neon.c",
"dsp/lossless_neon.c",
"dsp/rescaler_neon.c",
@@ -210,28 +218,29 @@ if (use_dsp_neon) {
static_library("libwebp_enc") {
sources = [
- "enc/alpha.c",
- "enc/analysis.c",
- "enc/backward_references.c",
- "enc/config.c",
- "enc/cost.c",
- "enc/delta_palettization.c",
- "enc/filter.c",
- "enc/frame.c",
- "enc/histogram.c",
- "enc/iterator.c",
- "enc/near_lossless.c",
- "enc/picture.c",
- "enc/picture_csp.c",
- "enc/picture_psnr.c",
- "enc/picture_rescale.c",
- "enc/picture_tools.c",
- "enc/quant.c",
- "enc/syntax.c",
- "enc/token.c",
- "enc/tree.c",
- "enc/vp8l.c",
- "enc/webpenc.c",
+ "enc/alpha_enc.c",
+ "enc/analysis_enc.c",
+ "enc/backward_references_enc.c",
+ "enc/config_enc.c",
+ "enc/cost_enc.c",
+ "enc/delta_palettization_enc.c",
+ "enc/filter_enc.c",
+ "enc/frame_enc.c",
+ "enc/histogram_enc.c",
+ "enc/iterator_enc.c",
+ "enc/near_lossless_enc.c",
+ "enc/picture_csp_enc.c",
+ "enc/picture_enc.c",
+ "enc/picture_psnr_enc.c",
+ "enc/picture_rescale_enc.c",
+ "enc/picture_tools_enc.c",
+ "enc/predictor_enc.c",
+ "enc/quant_enc.c",
+ "enc/syntax_enc.c",
+ "enc/token_enc.c",
+ "enc/tree_enc.c",
+ "enc/vp8l_enc.c",
+ "enc/webp_enc.c",
]
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ "//build/config/compiler:no_chromium_code" ]
@@ -256,17 +265,17 @@ config("libwebp_utils_warnings") {
static_library("libwebp_utils") {
sources = [
- "utils/bit_reader.c",
- "utils/bit_writer.c",
- "utils/color_cache.c",
- "utils/filters.c",
- "utils/huffman.c",
- "utils/huffman_encode.c",
- "utils/quant_levels.c",
- "utils/quant_levels_dec.c",
- "utils/random.c",
- "utils/rescaler.c",
- "utils/thread.c",
+ "utils/bit_reader_utils.c",
+ "utils/bit_writer_utils.c",
+ "utils/color_cache_utils.c",
+ "utils/filters_utils.c",
+ "utils/huffman_encode_utils.c",
+ "utils/huffman_utils.c",
+ "utils/quant_levels_dec_utils.c",
+ "utils/quant_levels_utils.c",
+ "utils/random_utils.c",
+ "utils/rescaler_utils.c",
+ "utils/thread_utils.c",
"utils/utils.c",
]
configs -= [ "//build/config/compiler:chromium_code" ]
« no previous file with comments | « no previous file | third_party/libwebp/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698