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 # This file is not used when use_system_libjpeg==1. Settings for building with | 6 # This file is not used when use_system_libjpeg==1. Settings for building with |
7 # the system libjpeg is in third_party/libjpeg/libjpeg.gyp. | 7 # the system libjpeg is in third_party/libjpeg/libjpeg.gyp. |
8 'variables': { | 8 'variables': { |
9 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', | 9 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 ], | 179 ], |
180 }] | 180 }] |
181 ], | 181 ], |
182 }], | 182 }], |
183 [ 'target_arch=="arm64"', { | 183 [ 'target_arch=="arm64"', { |
184 'sources': [ | 184 'sources': [ |
185 'simd/jsimd_arm64.c', | 185 'simd/jsimd_arm64.c', |
186 'simd/jsimd_arm64_neon.S', | 186 'simd/jsimd_arm64_neon.S', |
187 ], | 187 ], |
188 }], | 188 }], |
189 [ 'target_arch=="mipsel"', { | 189 [ 'target_arch=="mipsel" or target_arch=="mips64el"', { |
190 'sources': [ | 190 'sources': [ |
191 'jsimd_none.c', | 191 'jsimd_none.c', |
192 ], | 192 ], |
193 }], | 193 }], |
194 | 194 |
195 # Build rules for an asm file. | 195 # Build rules for an asm file. |
196 # On Windows, we use the precompiled yasm binary. On Linux, we build | 196 # On Windows, we use the precompiled yasm binary. On Linux, we build |
197 # our patched yasm and use it except when use_system_yasm is 1. On | 197 # our patched yasm and use it except when use_system_yasm is 1. On |
198 # Mac, we always build our patched yasm and use it because of | 198 # Mac, we always build our patched yasm and use it because of |
199 # <http://www.tortall.net/projects/yasm/ticket/236>. | 199 # <http://www.tortall.net/projects/yasm/ticket/236>. |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 ], | 308 ], |
309 }, | 309 }, |
310 ], | 310 ], |
311 } | 311 } |
312 | 312 |
313 # Local Variables: | 313 # Local Variables: |
314 # tab-width:2 | 314 # tab-width:2 |
315 # indent-tabs-mode:nil | 315 # indent-tabs-mode:nil |
316 # End: | 316 # End: |
317 # vim: set expandtab tabstop=2 shiftwidth=2: | 317 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |