OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'zlib', | 8 'target_name': 'zlib', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 21 matching lines...) Expand all Loading... |
32 'trees.h', | 32 'trees.h', |
33 'uncompr.c', | 33 'uncompr.c', |
34 'zconf.h', | 34 'zconf.h', |
35 'zlib.h', | 35 'zlib.h', |
36 'zutil.c', | 36 'zutil.c', |
37 'zutil.h', | 37 'zutil.h', |
38 ], | 38 ], |
39 'include_dirs': [ | 39 'include_dirs': [ |
40 '.', | 40 '.', |
41 ], | 41 ], |
| 42 'defines': [ |
| 43 'HAVE_VISIBILITY_ATTRIBUTE', |
| 44 ], |
42 'direct_dependent_settings': { | 45 'direct_dependent_settings': { |
43 'include_dirs': [ | 46 'include_dirs': [ |
44 '.', | 47 '.', |
45 ], | 48 ], |
46 }, | 49 }, |
47 'conditions': [ | 50 'conditions': [ |
48 ['OS!="win"', { | 51 ['OS!="win"', { |
49 'product_name': 'chrome_zlib', | 52 'product_name': 'chrome_zlib', |
50 }], ['OS=="android"', { | 53 }], ['OS=="android"', { |
51 'toolsets': ['target', 'host'], | 54 'toolsets': ['target', 'host'], |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 'google/zip.cc', | 124 'google/zip.cc', |
122 'google/zip.h', | 125 'google/zip.h', |
123 'google/zip_internal.cc', | 126 'google/zip_internal.cc', |
124 'google/zip_internal.h', | 127 'google/zip_internal.h', |
125 'google/zip_reader.cc', | 128 'google/zip_reader.cc', |
126 'google/zip_reader.h', | 129 'google/zip_reader.h', |
127 ], | 130 ], |
128 }, | 131 }, |
129 ], | 132 ], |
130 } | 133 } |
OLD | NEW |