| 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_libjepg==1. Settings for building with | 6 # This file is not used when use_system_libjepg==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 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 173 'simd/jsimd_arm.c', | 173 'simd/jsimd_arm.c', |
| 174 'simd/jsimd_arm_neon.S', | 174 'simd/jsimd_arm_neon.S', |
| 175 ], | 175 ], |
| 176 }, { | 176 }, { |
| 177 'sources': [ | 177 'sources': [ |
| 178 'jsimd_none.c', | 178 'jsimd_none.c', |
| 179 ], | 179 ], |
| 180 }] | 180 }] |
| 181 ], | 181 ], |
| 182 }], | 182 }], |
| 183 [ 'target_arch=="arm64"', { |
| 184 'sources': [ |
| 185 'jsimd_none.c', |
| 186 ], |
| 187 }], |
| 183 [ 'target_arch=="mipsel"', { | 188 [ 'target_arch=="mipsel"', { |
| 184 'sources': [ | 189 'sources': [ |
| 185 'jsimd_none.c', | 190 'jsimd_none.c', |
| 186 ], | 191 ], |
| 187 }], | 192 }], |
| 188 | 193 |
| 189 # Build rules for an asm file. | 194 # Build rules for an asm file. |
| 190 # On Windows, we use the precompiled yasm binary. On Linux, we build | 195 # On Windows, we use the precompiled yasm binary. On Linux, we build |
| 191 # our patched yasm and use it except when use_system_yasm is 1. On | 196 # our patched yasm and use it except when use_system_yasm is 1. On |
| 192 # Mac, we always build our patched yasm and use it because of | 197 # Mac, we always build our patched yasm and use it because of |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 302 ], | 307 ], |
| 303 }, | 308 }, |
| 304 ], | 309 ], |
| 305 } | 310 } |
| 306 | 311 |
| 307 # Local Variables: | 312 # Local Variables: |
| 308 # tab-width:2 | 313 # tab-width:2 |
| 309 # indent-tabs-mode:nil | 314 # indent-tabs-mode:nil |
| 310 # End: | 315 # End: |
| 311 # vim: set expandtab tabstop=2 shiftwidth=2: | 316 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |