Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2010 Google Inc. All Rights Reserved. | |
|
Søren Gjesse
2012/10/25 13:54:45
Year 2012
Søren Gjesse
2012/10/25 13:54:45
I looked briefly at the Chromium gyp file for zlib
| |
| 2 | |
| 3 { | |
| 4 'targets': [ | |
| 5 { | |
| 6 'target_name': 'libzlib', | |
| 7 'type': 'static_library', | |
| 8 'dependencies': [ | |
| 9 ], | |
| 10 'include_dirs': [ | |
| 11 '.', | |
| 12 ], | |
| 13 'defines': [ | |
| 14 ], | |
| 15 'sources': [ | |
| 16 'adler32.c', | |
| 17 'compress.c', | |
| 18 'crc32.c', | |
| 19 'crc32.h', | |
| 20 'deflate.c', | |
| 21 'deflate.h', | |
| 22 'gzguts.h', | |
| 23 'infback.c', | |
| 24 'inffast.c', | |
| 25 'inffast.h', | |
| 26 'inffixed.h', | |
| 27 'inflate.c', | |
| 28 'inflate.h', | |
| 29 'inftrees.c', | |
| 30 'inftrees.h', | |
| 31 'trees.c', | |
| 32 'trees.h', | |
| 33 'uncompr.c', | |
| 34 'zconf.h', | |
| 35 'zlib.h', | |
| 36 'zutil.c', | |
| 37 'zutil.h', | |
| 38 ], | |
| 39 'cflags': [ | |
| 40 ], | |
| 41 'cflags!': [ | |
| 42 # Remove C++ only flags. | |
| 43 '-Wnon-virtual-dtor', | |
| 44 '-Wno-conversion-null', | |
| 45 '-fno-rtti', | |
| 46 '-fvisibility-inlines-hidden', | |
| 47 ], | |
| 48 }, | |
| 49 ], | |
| 50 } | |
| 51 | |
| OLD | NEW |