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

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: Clarifying Comments 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
« no previous file with comments | « 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': [
3 {
4 'target_name': 'miniz',
5 'type': 'static_library',
6 'direct_dependent_settings': {
7 'defines': [
8 # When MINIZ_HEADER_FILE_ONLY is defined, miniz.c contains
9 # no function definitions, only declarations, so that it can
10 # serve as its own header.
11 'MINIZ_HEADER_FILE_ONLY',
12 'MINIZ_INCLUDE="miniz.c"',
13 # The following should be the same as below:
14 'MINIZ_NO_STDIO',
15 'MINIZ_NO_TIME',
16 'MINIZ_NO_ARCHIVE_APIS',
17 'MINIZ_NO_ARCHIVE_WRITING_APIS',
18 ],
19 'include_dirs': [ '.', ],
20 },
21 'defines': [
22 'MINIZ_NO_STDIO',
23 'MINIZ_NO_TIME',
24 'MINIZ_NO_ARCHIVE_APIS',
25 'MINIZ_NO_ARCHIVE_WRITING_APIS',
26 ],
27 'conditions': [
28 ['OS != "win"',
29 {
30 'cflags': [
31 '-fno-strict-aliasing',
32 '-Wno-unused-function',
33 ],
34 }
35 ],
36 ],
37 'sources': [ 'miniz.c', ],
38 }
39 ]
40 }
OLDNEW
« no previous file with comments | « third_party/miniz/miniz.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698