| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 'target_name' : 'zlib_x86_simd', | |
| 9 'type': 'static_library', | |
| 10 'conditions': [ | |
| 11 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { | |
| 12 'cflags' : ['-msse4.2', '-mpclmul'], | |
| 13 'xcode_settings' : { | |
| 14 'OTHER_CFLAGS' : ['-msse4.2', '-mpclmul'], | |
| 15 }, | |
| 16 'sources' : [ | |
| 17 'crc_folding.c', | |
| 18 'fill_window_sse.c', | |
| 19 ], | |
| 20 'conditions': [ | |
| 21 ['OS=="win" and clang==1', { | |
| 22 'msvs_settings': { | |
| 23 'VCCLCompilerTool': { | |
| 24 'AdditionalOptions': [ '-msse4.2', '-mpclmul' ], | |
| 25 }, | |
| 26 }, | |
| 27 }], | |
| 28 ], | |
| 29 }, { | |
| 30 'sources' : [ 'simd_stub.c' ], | |
| 31 }], | |
| 32 ['OS=="android"', { | |
| 33 'toolsets': ['target', 'host'], | |
| 34 }], | |
| 35 ], | |
| 36 }, | |
| 37 { | |
| 38 'target_name': 'zlib', | |
| 39 'type': 'static_library', | |
| 40 'sources': [ | |
| 41 'adler32.c', | |
| 42 'compress.c', | |
| 43 'crc32.c', | |
| 44 'crc32.h', | |
| 45 'deflate.c', | |
| 46 'deflate.h', | |
| 47 'gzclose.c', | |
| 48 'gzguts.h', | |
| 49 'gzlib.c', | |
| 50 'gzread.c', | |
| 51 'gzwrite.c', | |
| 52 'infback.c', | |
| 53 'inffast.c', | |
| 54 'inffast.h', | |
| 55 'inffixed.h', | |
| 56 'inflate.c', | |
| 57 'inflate.h', | |
| 58 'inftrees.c', | |
| 59 'inftrees.h', | |
| 60 'mozzconf.h', | |
| 61 'trees.c', | |
| 62 'trees.h', | |
| 63 'uncompr.c', | |
| 64 'x86.h', | |
| 65 'zconf.h', | |
| 66 'zlib.h', | |
| 67 'zutil.c', | |
| 68 'zutil.h', | |
| 69 ], | |
| 70 'dependencies' : [ | |
| 71 'zlib_x86_simd' | |
| 72 ], | |
| 73 'include_dirs': [ | |
| 74 '.', | |
| 75 ], | |
| 76 'direct_dependent_settings': { | |
| 77 'include_dirs': [ | |
| 78 '.', | |
| 79 ], | |
| 80 }, | |
| 81 'conditions': [ | |
| 82 ['OS!="ios" and (target_arch=="ia32" or target_arch=="x64")', { | |
| 83 'sources' : [ 'x86.c', ], | |
| 84 }], | |
| 85 ['OS!="win"', { | |
| 86 'product_name': 'chrome_zlib', | |
| 87 }], ['OS=="android"', { | |
| 88 'toolsets': ['target', 'host'], | |
| 89 }], | |
| 90 ], | |
| 91 }, | |
| 92 { | |
| 93 'target_name': 'minizip', | |
| 94 'type': 'static_library', | |
| 95 'sources': [ | |
| 96 'contrib/minizip/ioapi.c', | |
| 97 'contrib/minizip/ioapi.h', | |
| 98 'contrib/minizip/iowin32.c', | |
| 99 'contrib/minizip/iowin32.h', | |
| 100 'contrib/minizip/unzip.c', | |
| 101 'contrib/minizip/unzip.h', | |
| 102 'contrib/minizip/zip.c', | |
| 103 'contrib/minizip/zip.h', | |
| 104 ], | |
| 105 'dependencies': [ | |
| 106 'zlib', | |
| 107 ], | |
| 108 'include_dirs': [ | |
| 109 '.', | |
| 110 '../..', | |
| 111 ], | |
| 112 'direct_dependent_settings': { | |
| 113 'include_dirs': [ | |
| 114 '.', | |
| 115 ], | |
| 116 }, | |
| 117 'variables': { | |
| 118 'clang_warning_flags': [ | |
| 119 # zlib uses `if ((a == b))` for some reason. | |
| 120 '-Wno-parentheses-equality', | |
| 121 ], | |
| 122 }, | |
| 123 'conditions': [ | |
| 124 ['OS!="win"', { | |
| 125 'sources!': [ | |
| 126 'contrib/minizip/iowin32.c' | |
| 127 ], | |
| 128 }], | |
| 129 ['OS=="android"', { | |
| 130 'toolsets': ['target', 'host'], | |
| 131 }], | |
| 132 ['OS=="mac" or OS=="ios" or os_bsd==1 or OS=="android"', { | |
| 133 # Mac, Android and the BSDs don't have fopen64, ftello64, or | |
| 134 # fseeko64. We use fopen, ftell, and fseek instead on these | |
| 135 # systems. | |
| 136 'defines': [ | |
| 137 'USE_FILE32API' | |
| 138 ], | |
| 139 }], | |
| 140 ], | |
| 141 }, | |
| 142 ], | |
| 143 } | |
| OLD | NEW |