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

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

Issue 469813002: Add miniz library to third_party, use it on Windows (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
« src/core/SkFlate.cpp ('K') | « third_party/miniz/miniz.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
(Empty)
1 {
2 'targets': [
mtklein 2014/08/13 17:57:09 Do we ever build this library? Doesn't miniz.c ju
hal.canary 2014/08/13 18:04:24 Since we define MINIZ_HEADER_FILE_ONLY, most of th
3 {
4 'target_name': 'miniz',
5 'type': 'static_library',
6 'direct_dependent_settings': {
7 'defines': [
8 'MINIZ_INCLUDE="miniz.c"',
9 'MINIZ_HEADER_FILE_ONLY',
10 'MINIZ_NO_STDIO',
11 'MINIZ_NO_TIME',
12 'MINIZ_NO_ARCHIVE_APIS',
13 'MINIZ_NO_ARCHIVE_WRITING_APIS',
14 ],
15 'include_dirs': [ '.', ],
16 },
17 'defines': [
18 'MINIZ_NO_STDIO',
19 'MINIZ_NO_TIME',
20 'MINIZ_NO_ARCHIVE_APIS',
21 'MINIZ_NO_ARCHIVE_WRITING_APIS',
22 ],
23 'conditions': [
24 ['OS != "win"',
25 {
26 'cflags': [
27 '-fno-strict-aliasing',
28 '-Wno-unused-function',
29 ],
30 }
31 ],
32 ],
33 'sources': [ 'miniz.c', ],
34 }
35 ]
36 }
OLDNEW
« src/core/SkFlate.cpp ('K') | « third_party/miniz/miniz.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698