OLD | NEW |
---|---|
(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 } | |
OLD | NEW |