Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: third_party/zlib/zlib.gyp

Issue 552123005: Integrate SIMD optimisations for zlib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn build (uses different cflags -Wunused-variable) Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« third_party/zlib/x86.c ('K') | « third_party/zlib/x86.c ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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',
9 'type': 'static_library',
10 'conditions': [
11 ['OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', {
12 'cflags' : ["-msse2", "-msse4.2", "-mpclmul"],
13 'sources' : [ 'crc_folding.c',
14 'fill_window_sse.c']
15 }, {
16 'sources' : [ 'simd_stub.c' ],
17 }],
18 ],
19 },
20 {
8 'target_name': 'zlib', 21 'target_name': 'zlib',
9 'type': 'static_library', 22 'type': 'static_library',
10 'sources': [ 23 'sources': [
11 'adler32.c', 24 'adler32.c',
12 'compress.c', 25 'compress.c',
13 'crc32.c', 26 'crc32.c',
14 'crc32.h', 27 'crc32.h',
15 'deflate.c', 28 'deflate.c',
16 'deflate.h', 29 'deflate.h',
17 'gzclose.c', 30 'gzclose.c',
18 'gzguts.h', 31 'gzguts.h',
19 'gzlib.c', 32 'gzlib.c',
20 'gzread.c', 33 'gzread.c',
21 'gzwrite.c', 34 'gzwrite.c',
22 'infback.c', 35 'infback.c',
23 'inffast.c', 36 'inffast.c',
24 'inffast.h', 37 'inffast.h',
25 'inffixed.h', 38 'inffixed.h',
26 'inflate.c', 39 'inflate.c',
27 'inflate.h', 40 'inflate.h',
28 'inftrees.c', 41 'inftrees.c',
29 'inftrees.h', 42 'inftrees.h',
30 'mozzconf.h', 43 'mozzconf.h',
31 'trees.c', 44 'trees.c',
32 'trees.h', 45 'trees.h',
33 'uncompr.c', 46 'uncompr.c',
47 'x86.h',
48 'x86.c',
34 'zconf.h', 49 'zconf.h',
35 'zlib.h', 50 'zlib.h',
36 'zutil.c', 51 'zutil.c',
37 'zutil.h', 52 'zutil.h',
38 ], 53 ],
54 'dependencies' : [
55 'zlib_x86_simd'
56 ],
39 'include_dirs': [ 57 'include_dirs': [
40 '.', 58 '.',
41 ], 59 ],
42 'direct_dependent_settings': { 60 'direct_dependent_settings': {
43 'include_dirs': [ 61 'include_dirs': [
44 '.', 62 '.',
45 ], 63 ],
46 }, 64 },
47 'conditions': [ 65 'conditions': [
66 ['OS=="linux" and (target_arch=="ia32" or target_arch=="x64")', {
67 'defines' : ["HAVE_ARCH_INTEL"],
68 }],
48 ['OS!="win"', { 69 ['OS!="win"', {
49 'product_name': 'chrome_zlib', 70 'product_name': 'chrome_zlib',
50 }], ['OS=="android"', { 71 }], ['OS=="android"', {
51 'toolsets': ['target', 'host'], 72 'toolsets': ['target', 'host'],
52 }], 73 }],
53 ], 74 ],
54 }, 75 },
55 { 76 {
56 'target_name': 'minizip', 77 'target_name': 'minizip',
57 'type': 'static_library', 78 'type': 'static_library',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 # fseeko64. We use fopen, ftell, and fseek instead on these 118 # fseeko64. We use fopen, ftell, and fseek instead on these
98 # systems. 119 # systems.
99 'defines': [ 120 'defines': [
100 'USE_FILE32API' 121 'USE_FILE32API'
101 ], 122 ],
102 }], 123 }],
103 ], 124 ],
104 }, 125 },
105 ], 126 ],
106 } 127 }
OLDNEW
« third_party/zlib/x86.c ('K') | « third_party/zlib/x86.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698