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

Side by Side Diff: third_party/libwebp/BUILD.gn

Issue 2149863002: libwebp: update to v0.5.1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | third_party/libwebp/README.chromium » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/arm.gni") 5 import("//build/config/arm.gni")
6 import("//build/config/sanitizers/sanitizers.gni") 6 import("//build/config/sanitizers/sanitizers.gni")
7 7
8 config("libwebp_config") { 8 config("libwebp_config") {
9 include_dirs = [ "." ] 9 include_dirs = [ "." ]
10 } 10 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "dsp/argb.c", 66 "dsp/argb.c",
67 "dsp/argb_mips_dsp_r2.c", 67 "dsp/argb_mips_dsp_r2.c",
68 "dsp/cost.c", 68 "dsp/cost.c",
69 "dsp/cost_mips32.c", 69 "dsp/cost_mips32.c",
70 "dsp/cost_mips_dsp_r2.c", 70 "dsp/cost_mips_dsp_r2.c",
71 "dsp/cpu.c", 71 "dsp/cpu.c",
72 "dsp/dec.c", 72 "dsp/dec.c",
73 "dsp/dec_clip_tables.c", 73 "dsp/dec_clip_tables.c",
74 "dsp/dec_mips32.c", 74 "dsp/dec_mips32.c",
75 "dsp/dec_mips_dsp_r2.c", 75 "dsp/dec_mips_dsp_r2.c",
76 "dsp/dec_msa.c",
76 "dsp/enc.c", 77 "dsp/enc.c",
77 "dsp/enc_avx2.c", 78 "dsp/enc_avx2.c",
78 "dsp/enc_mips32.c", 79 "dsp/enc_mips32.c",
79 "dsp/enc_mips_dsp_r2.c", 80 "dsp/enc_mips_dsp_r2.c",
80 "dsp/filters.c", 81 "dsp/filters.c",
81 "dsp/filters_mips_dsp_r2.c", 82 "dsp/filters_mips_dsp_r2.c",
82 "dsp/lossless.c", 83 "dsp/lossless.c",
83 "dsp/lossless_enc.c", 84 "dsp/lossless_enc.c",
84 "dsp/lossless_enc_mips32.c", 85 "dsp/lossless_enc_mips32.c",
85 "dsp/lossless_enc_mips_dsp_r2.c", 86 "dsp/lossless_enc_mips_dsp_r2.c",
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 ":libwebp_demux", 287 ":libwebp_demux",
287 ":libwebp_dsp", 288 ":libwebp_dsp",
288 ":libwebp_enc", 289 ":libwebp_enc",
289 ":libwebp_utils", 290 ":libwebp_utils",
290 ] 291 ]
291 public_configs = [ ":libwebp_config" ] 292 public_configs = [ ":libwebp_config" ]
292 if (use_dsp_neon) { 293 if (use_dsp_neon) {
293 deps += [ ":libwebp_dsp_neon" ] 294 deps += [ ":libwebp_dsp_neon" ]
294 } 295 }
295 } 296 }
OLDNEW
« 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