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

Side by Side Diff: gyp/libjpeg-turbo.gyp

Issue 1228553010: Remove skia_arch_width, fold into skia_arch_type. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 4 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 | « gyp/everything.gyp ('k') | gyp/tools.gyp » ('j') | 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 'xcode_settings': { 6 'xcode_settings': {
7 'SYMROOT': '<(DEPTH)/xcodebuild', 7 'SYMROOT': '<(DEPTH)/xcodebuild',
8 }, 8 },
9 'variables': { 9 'variables': {
10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo', 10 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/externals/li bjpeg-turbo',
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 '../third_party/externals/libjpeg-turbo/simd/jsimd_arm.c', 202 '../third_party/externals/libjpeg-turbo/simd/jsimd_arm.c',
203 '../third_party/externals/libjpeg-turbo/simd/jsimd_arm_neon.S', 203 '../third_party/externals/libjpeg-turbo/simd/jsimd_arm_neon.S',
204 ], 204 ],
205 }, { 205 }, {
206 'sources': [ 206 'sources': [
207 '../third_party/externals/libjpeg-turbo/jsimd_none.c', 207 '../third_party/externals/libjpeg-turbo/jsimd_none.c',
208 ], 208 ],
209 }], 209 }],
210 ], 210 ],
211 }], 211 }],
212 [ 'skia_arch_type == "mips"', { 212 [ 'skia_arch_type == "mips64"', {
213 'conditions': [ 213 'sources': [
214 [ 'skia_arch_width == 64', { 214 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips.c',
215 'sources': [ 215 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips_dspr2_asm.h' ,
216 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips.c', 216 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips_dspr2.S',
217 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips_dspr2_as m.h', 217 ],
218 '../third_party/externals/libjpeg-turbo/simd/jsimd_mips_dspr2.S' , 218 }],
219 ], 219 [ 'skia_arch_type == "mips32"', {
220 }, { 220 'sources': [
221 'sources': [ 221 '../third_party/externals/libjpeg-turbo/jsimd_none.c',
222 '../third_party/externals/libjpeg-turbo/jsimd_none.c',
223 ],
224 }],
225 ], 222 ],
226 }], 223 }],
227 224
228 # Build rules for an asm file. 225 # Build rules for an asm file.
229 # On Windows, we use the precompiled yasm binary. 226 # On Windows, we use the precompiled yasm binary.
230 # On Linux, we build our patched yasm and use it. 227 # On Linux, we build our patched yasm and use it.
231 # On Mac, we always build our patched yasm and use it. 228 # On Mac, we always build our patched yasm and use it.
232 [ 'skia_os == "win"', { 229 [ 'skia_os == "win"', {
233 'dependencies': [ 230 'dependencies': [
234 'yasm-win', 231 'yasm-win',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ], 355 ],
359 'process_outputs_as_sources': 1, 356 'process_outputs_as_sources': 1,
360 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)', 357 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)',
361 }], 358 }],
362 ] 359 ]
363 }, 360 },
364 ], 361 ],
365 }, 362 },
366 ], 363 ],
367 } 364 }
OLDNEW
« no previous file with comments | « gyp/everything.gyp ('k') | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698