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

Side by Side Diff: libjpeg.gyp

Issue 444883002: Add support for iOS to libjpeg.gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Created 6 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 | « 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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'yasm_flags': [ 213 'yasm_flags': [
214 '-D__x86_64__', 214 '-D__x86_64__',
215 '-DWIN64', 215 '-DWIN64',
216 '-DMSVC', 216 '-DMSVC',
217 '-Iwin/' 217 '-Iwin/'
218 ], 218 ],
219 }], 219 }],
220 ], 220 ],
221 }, 221 },
222 }], 222 }],
223 [ 'OS=="mac"', { 223 [ 'OS=="mac" or OS=="ios"', {
224 'dependencies': [ 224 'dependencies': [
225 '../yasm/yasm.gyp:yasm#host', 225 '../yasm/yasm.gyp:yasm#host',
226 ], 226 ],
227 'variables': { 227 'variables': {
228 'yasm_path': '<(PRODUCT_DIR)/yasm', 228 'yasm_path': '<(PRODUCT_DIR)/yasm',
229 'conditions': [ 229 'conditions': [
230 [ 'target_arch=="ia32"', { 230 [ 'target_arch=="ia32"', {
231 'yasm_format': '-fmacho', 231 'yasm_format': '-fmacho',
232 'yasm_flags': [ 232 'yasm_flags': [
233 '-D__x86__', 233 '-D__x86__',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 ], 307 ],
308 }, 308 },
309 ], 309 ],
310 } 310 }
311 311
312 # Local Variables: 312 # Local Variables:
313 # tab-width:2 313 # tab-width:2
314 # indent-tabs-mode:nil 314 # indent-tabs-mode:nil
315 # End: 315 # End:
316 # vim: set expandtab tabstop=2 shiftwidth=2: 316 # 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