OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'neon_sources': [ | 7 'neon_sources': [ |
8 'dsp/dec_neon.c', | 8 'dsp/dec_neon.c', |
9 'dsp/enc_neon.c', | 9 'dsp/enc_neon.c', |
10 'dsp/lossless_neon.c', | 10 'dsp/lossless_neon.c', |
(...skipping 30 matching lines...) Expand all Loading... |
41 'sources': [ | 41 'sources': [ |
42 'demux/demux.c', | 42 'demux/demux.c', |
43 ], | 43 ], |
44 }, | 44 }, |
45 { | 45 { |
46 'target_name': 'libwebp_dsp', | 46 'target_name': 'libwebp_dsp', |
47 'type': 'static_library', | 47 'type': 'static_library', |
48 'include_dirs': ['.'], | 48 'include_dirs': ['.'], |
49 'sources': [ | 49 'sources': [ |
50 'dsp/alpha_processing.c', | 50 'dsp/alpha_processing.c', |
| 51 'dsp/alpha_processing_sse2.c', |
51 'dsp/cpu.c', | 52 'dsp/cpu.c', |
52 'dsp/dec.c', | 53 'dsp/dec.c', |
53 'dsp/dec_clip_tables.c', | 54 'dsp/dec_clip_tables.c', |
54 'dsp/dec_mips32.c', | 55 'dsp/dec_mips32.c', |
55 'dsp/dec_sse2.c', | 56 'dsp/dec_sse2.c', |
56 'dsp/enc.c', | 57 'dsp/enc.c', |
57 'dsp/enc_avx2.c', | 58 'dsp/enc_avx2.c', |
58 'dsp/enc_mips32.c', | 59 'dsp/enc_mips32.c', |
59 'dsp/enc_sse2.c', | 60 'dsp/enc_sse2.c', |
60 'dsp/lossless.c', | 61 'dsp/lossless.c', |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 ], | 175 ], |
175 'direct_dependent_settings': { | 176 'direct_dependent_settings': { |
176 'include_dirs': ['.'], | 177 'include_dirs': ['.'], |
177 }, | 178 }, |
178 'conditions': [ | 179 'conditions': [ |
179 ['OS!="win"', {'product_name': 'webp'}], | 180 ['OS!="win"', {'product_name': 'webp'}], |
180 ], | 181 ], |
181 }, | 182 }, |
182 ], | 183 ], |
183 } | 184 } |
OLD | NEW |