OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |