| 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name' : 'zlib_x86_simd', | 8 'target_name' : 'zlib_x86_simd', |
| 9 'type': 'static_library', | 9 'type': 'static_library', |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 '.', | 74 '.', |
| 75 ], | 75 ], |
| 76 'direct_dependent_settings': { | 76 'direct_dependent_settings': { |
| 77 'include_dirs': [ | 77 'include_dirs': [ |
| 78 '.', | 78 '.', |
| 79 ], | 79 ], |
| 80 }, | 80 }, |
| 81 'conditions': [ | 81 'conditions': [ |
| 82 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { | 82 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { |
| 83 'sources' : [ 'x86.c', ], | 83 'sources' : [ 'x86.c', ], |
| 84 'variables': { |
| 85 'clang_warning_flags': [ |
| 86 '-Wno-incompatible-pointer-types', |
| 87 ], |
| 88 }, |
| 84 }], | 89 }], |
| 85 ['OS!="win"', { | 90 ['OS!="win"', { |
| 86 'product_name': 'chrome_zlib', | 91 'product_name': 'chrome_zlib', |
| 87 }], ['OS=="android"', { | 92 }], ['OS=="android"', { |
| 88 'toolsets': ['target', 'host'], | 93 'toolsets': ['target', 'host'], |
| 89 }], | 94 }], |
| 90 ], | 95 ], |
| 91 }, | 96 }, |
| 92 { | 97 { |
| 93 'target_name': 'minizip', | 98 'target_name': 'minizip', |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 # fseeko64. We use fopen, ftell, and fseek instead on these | 139 # fseeko64. We use fopen, ftell, and fseek instead on these |
| 135 # systems. | 140 # systems. |
| 136 'defines': [ | 141 'defines': [ |
| 137 'USE_FILE32API' | 142 'USE_FILE32API' |
| 138 ], | 143 ], |
| 139 }], | 144 }], |
| 140 ], | 145 ], |
| 141 }, | 146 }, |
| 142 ], | 147 ], |
| 143 } | 148 } |
| OLD | NEW |