| 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 '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', |
| 11 'conditions': [ | 11 'conditions': [ |
| 12 [ 'skia_os == "win"', { | 12 [ 'skia_os == "win"', { |
| 13 'object_suffix': 'obj', | 13 'object_suffix': 'obj', |
| 14 }, { | 14 }, { |
| 15 'object_suffix': 'o', | 15 'object_suffix': 'o', |
| 16 }], | 16 }], |
| 17 ], | 17 ], |
| 18 }, | 18 }, |
| 19 'targets': [ | 19 'targets': [ |
| 20 { | 20 { |
| 21 'target_name': 'yasm-win', | 21 'target_name': 'yasm-win', |
| 22 'type': 'executable', | 22 'type': 'none', |
| 23 'sources': [ | 23 'sources': [ |
| 24 '../third_party/externals/yasm/binaries/win/yasm.exe', | 24 '../third_party/externals/yasm/binaries/win/yasm.exe', |
| 25 ], | 25 ], |
| 26 'copies' : [{ | 26 'copies' : [{ |
| 27 'destination': '<(PRODUCT_DIR)', | 27 'destination': '<(PRODUCT_DIR)', |
| 28 'files': [ '../third_party/externals/yasm/binaries/win/yasm.exe' ], | 28 'files': [ '../third_party/externals/yasm/binaries/win/yasm.exe' ], |
| 29 }], | 29 }], |
| 30 }, | 30 }, |
| 31 { | 31 { |
| 32 'target_name': 'yasm-android', | 32 'target_name': 'yasm-android', |
| 33 'type': 'executable', | 33 'type': 'none', |
| 34 'sources': [ | 34 'sources': [ |
| 35 '../third_party/yasm/android/yasm-android', | 35 '../third_party/yasm/android/yasm-android', |
| 36 ], | 36 ], |
| 37 'copies' : [{ | 37 'copies' : [{ |
| 38 'destination': '<(PRODUCT_DIR)', | 38 'destination': '<(PRODUCT_DIR)', |
| 39 'files': [ '../third_party/yasm/android/yasm-android' ], | 39 'files': [ '../third_party/yasm/android/yasm-android' ], |
| 40 }], | 40 }], |
| 41 }, | 41 }, |
| 42 { | 42 { |
| 43 'target_name': 'libjpeg-turbo', | 43 'target_name': 'libjpeg-turbo', |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 ], | 355 ], |
| 356 'process_outputs_as_sources': 1, | 356 'process_outputs_as_sources': 1, |
| 357 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)', | 357 'message': 'Building <(RULE_INPUT_ROOT).<(object_suffix)', |
| 358 }], | 358 }], |
| 359 ] | 359 ] |
| 360 }, | 360 }, |
| 361 ], | 361 ], |
| 362 }, | 362 }, |
| 363 ], | 363 ], |
| 364 } | 364 } |
| OLD | NEW |