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

Side by Side Diff: libjpeg.gyp

Issue 214413007: Stop using "prefix_dir" in libjpeg.gyp. (Closed) Base URL: /b/cr-git-caches/chromium.googlesource.com-chromium-deps-libjpeg_turbo@master
Patch Set: Created 6 years, 9 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 }, { 270 }, {
271 'yasm_format': '-felf64', 271 'yasm_format': '-felf64',
272 'yasm_flags': [ 272 'yasm_flags': [
273 '-D__x86_64__', 273 '-D__x86_64__',
274 '-DELF', 274 '-DELF',
275 '-Ilinux/' 275 '-Ilinux/'
276 ], 276 ],
277 }], 277 }],
278 ], 278 ],
279 }, 279 },
280 'include_dirs': [
281 '<(prefix_dir)/include',
282 ],
283 }], 280 }],
284 ], 281 ],
285 'rules': [ 282 'rules': [
286 { 283 {
287 'rule_name': 'assemble', 284 'rule_name': 'assemble',
288 'extension': 'asm', 285 'extension': 'asm',
289 'conditions': [ 286 'conditions': [
290 [ 'target_arch!="arm"', { 287 [ 'target_arch!="arm"', {
291 'inputs': [ '<(yasm_path)', ], 288 'inputs': [ '<(yasm_path)', ],
292 'outputs': [ 289 'outputs': [
(...skipping 17 matching lines...) Expand all
310 ], 307 ],
311 }, 308 },
312 ], 309 ],
313 } 310 }
314 311
315 # Local Variables: 312 # Local Variables:
316 # tab-width:2 313 # tab-width:2
317 # indent-tabs-mode:nil 314 # indent-tabs-mode:nil
318 # End: 315 # End:
319 # 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