| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'zlib', | 11 'target_name': 'zlib', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'sources': [ | 13 'sources': [ |
| 14 'contrib/minizip/ioapi.c', | 14 'contrib/minizip/ioapi.c', |
| 15 'contrib/minizip/ioapi.h', | 15 'contrib/minizip/ioapi.h', |
| 16 'contrib/minizip/iowin32.c' | 16 'contrib/minizip/iowin32.c', |
| 17 'contrib/minizip/iowin32.h', | 17 'contrib/minizip/iowin32.h', |
| 18 'contrib/minizip/unzip.c', | 18 'contrib/minizip/unzip.c', |
| 19 'contrib/minizip/unzip.h', | 19 'contrib/minizip/unzip.h', |
| 20 'adler32.c', | 20 'adler32.c', |
| 21 'compress.c', | 21 'compress.c', |
| 22 'crc32.c', | 22 'crc32.c', |
| 23 'crc32.h', | 23 'crc32.h', |
| 24 'deflate.c', | 24 'deflate.c', |
| 25 'deflate.h', | 25 'deflate.h', |
| 26 'gzio.c', | 26 'gzio.c', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 55 ['OS!="win"', { | 55 ['OS!="win"', { |
| 56 'product_name': 'z', | 56 'product_name': 'z', |
| 57 'sources!': [ | 57 'sources!': [ |
| 58 'contrib/minizip/iowin32.c' | 58 'contrib/minizip/iowin32.c' |
| 59 ], | 59 ], |
| 60 }], | 60 }], |
| 61 ], | 61 ], |
| 62 }, | 62 }, |
| 63 ], | 63 ], |
| 64 } | 64 } |
| OLD | NEW |