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_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 Loading... |
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 Loading... |
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: |
OLD | NEW |