Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(197)

Side by Side Diff: libjpeg.gyp

Issue 551423002: [MIPS64] Add build support for MIPS64 in libjpeg_turbo. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698