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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'libwebp_dec', | 8 'target_name': 'libwebp_dec', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies' : [ | 10 'dependencies' : [ |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 'enc/tree.c', | 111 'enc/tree.c', |
112 'enc/vp8l.c', | 112 'enc/vp8l.c', |
113 'enc/webpenc.c', | 113 'enc/webpenc.c', |
114 ], | 114 ], |
115 }, | 115 }, |
116 { | 116 { |
117 'target_name': 'libwebp_utils', | 117 'target_name': 'libwebp_utils', |
118 'type': 'static_library', | 118 'type': 'static_library', |
119 'include_dirs': ['.'], | 119 'include_dirs': ['.'], |
120 'sources': [ | 120 'sources': [ |
| 121 'utils/alpha_processing.c', |
121 'utils/bit_reader.c', | 122 'utils/bit_reader.c', |
122 'utils/bit_writer.c', | 123 'utils/bit_writer.c', |
123 'utils/color_cache.c', | 124 'utils/color_cache.c', |
124 'utils/filters.c', | 125 'utils/filters.c', |
125 'utils/huffman.c', | 126 'utils/huffman.c', |
126 'utils/huffman_encode.c', | 127 'utils/huffman_encode.c', |
127 'utils/quant_levels.c', | 128 'utils/quant_levels.c', |
128 'utils/quant_levels_dec.c', | 129 'utils/quant_levels_dec.c', |
| 130 'utils/random.c', |
129 'utils/rescaler.c', | 131 'utils/rescaler.c', |
130 'utils/thread.c', | 132 'utils/thread.c', |
131 'utils/utils.c', | 133 'utils/utils.c', |
132 ], | 134 ], |
133 }, | 135 }, |
134 { | 136 { |
135 'target_name': 'libwebp', | 137 'target_name': 'libwebp', |
136 'type': 'none', | 138 'type': 'none', |
137 'dependencies' : [ | 139 'dependencies' : [ |
138 'libwebp_dec', | 140 'libwebp_dec', |
139 'libwebp_demux', | 141 'libwebp_demux', |
140 'libwebp_dsp', | 142 'libwebp_dsp', |
141 'libwebp_dsp_neon', | 143 'libwebp_dsp_neon', |
142 'libwebp_enc', | 144 'libwebp_enc', |
143 'libwebp_utils', | 145 'libwebp_utils', |
144 ], | 146 ], |
145 'direct_dependent_settings': { | 147 'direct_dependent_settings': { |
146 'include_dirs': ['.'], | 148 'include_dirs': ['.'], |
147 }, | 149 }, |
148 'conditions': [ | 150 'conditions': [ |
149 ['OS!="win"', {'product_name': 'webp'}], | 151 ['OS!="win"', {'product_name': 'webp'}], |
150 ], | 152 ], |
151 }, | 153 }, |
152 ], | 154 ], |
153 } | 155 } |
OLD | NEW |