Chromium Code Reviews| Index: runtime/third_party/zlib/zlib.gypi |
| diff --git a/runtime/third_party/zlib/zlib.gypi b/runtime/third_party/zlib/zlib.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..70de6bb85ed05904bff744cea74a0880628d8cfd |
| --- /dev/null |
| +++ b/runtime/third_party/zlib/zlib.gypi |
| @@ -0,0 +1,51 @@ |
| +# 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
|
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'libzlib', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + ], |
| + 'include_dirs': [ |
| + '.', |
| + ], |
| + 'defines': [ |
| + ], |
| + 'sources': [ |
| + 'adler32.c', |
| + 'compress.c', |
| + 'crc32.c', |
| + 'crc32.h', |
| + 'deflate.c', |
| + 'deflate.h', |
| + 'gzguts.h', |
| + 'infback.c', |
| + 'inffast.c', |
| + 'inffast.h', |
| + 'inffixed.h', |
| + 'inflate.c', |
| + 'inflate.h', |
| + 'inftrees.c', |
| + 'inftrees.h', |
| + 'trees.c', |
| + 'trees.h', |
| + 'uncompr.c', |
| + 'zconf.h', |
| + 'zlib.h', |
| + 'zutil.c', |
| + 'zutil.h', |
| + ], |
| + 'cflags': [ |
| + ], |
| + 'cflags!': [ |
| + # Remove C++ only flags. |
| + '-Wnon-virtual-dtor', |
| + '-Wno-conversion-null', |
| + '-fno-rtti', |
| + '-fvisibility-inlines-hidden', |
| + ], |
| + }, |
| + ], |
| +} |
| + |