| 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 'variables': { | 6 'variables': { |
| 7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', | 7 'shared_generated_dir': '<(SHARED_INTERMEDIATE_DIR)/third_party/libjpeg_turb
o', |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 [ 'chromeos == 1 or (os_posix == 1 and \ | 9 [ 'chromeos == 1 or (os_posix == 1 and \ |
| 10 OS != "mac" and OS != "linux" and OS != "android")', { | 10 OS != "mac" and OS != "linux" and OS != "android")', { |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ], | 201 ], |
| 202 'variables': { | 202 'variables': { |
| 203 'yasm_path': '<(PRODUCT_DIR)/yasm', | 203 'yasm_path': '<(PRODUCT_DIR)/yasm', |
| 204 'yasm_format': '-fmacho', | 204 'yasm_format': '-fmacho', |
| 205 'yasm_flags': [ | 205 'yasm_flags': [ |
| 206 '-DMACHO', | 206 '-DMACHO', |
| 207 '-Imac/' | 207 '-Imac/' |
| 208 ], | 208 ], |
| 209 }, | 209 }, |
| 210 }], | 210 }], |
| 211 [ 'OS=="linux"', { | 211 [ 'OS=="linux" or (OS=="android" and target_arch!="arm")', { |
| 212 'conditions': [ | 212 'conditions': [ |
| 213 [ 'use_system_yasm==0', { | 213 [ 'use_system_yasm==0', { |
| 214 'dependencies': [ | 214 'dependencies': [ |
| 215 '../yasm/yasm.gyp:yasm#host', | 215 '../yasm/yasm.gyp:yasm#host', |
| 216 ], | 216 ], |
| 217 }], | 217 }], |
| 218 ], | 218 ], |
| 219 'variables': { | 219 'variables': { |
| 220 'conditions': [ | 220 'conditions': [ |
| 221 [ 'use_system_yasm==1', { | 221 [ 'use_system_yasm==1', { |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 ], | 291 ], |
| 292 }], | 292 }], |
| 293 ], | 293 ], |
| 294 } | 294 } |
| 295 | 295 |
| 296 # Local Variables: | 296 # Local Variables: |
| 297 # tab-width:2 | 297 # tab-width:2 |
| 298 # indent-tabs-mode:nil | 298 # indent-tabs-mode:nil |
| 299 # End: | 299 # End: |
| 300 # vim: set expandtab tabstop=2 shiftwidth=2: | 300 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |