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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 # zlib uses `if ((a == b))` for some reason. | 100 # zlib uses `if ((a == b))` for some reason. |
101 '-Wno-parentheses-equality', | 101 '-Wno-parentheses-equality', |
102 ], | 102 ], |
103 }, | 103 }, |
104 'cflags': [ | 104 'cflags': [ |
105 '-Wno-parentheses-equality', | 105 '-Wno-parentheses-equality', |
106 ], | 106 ], |
107 }], | 107 }], |
108 ], | 108 ], |
109 }, | 109 }, |
110 { | |
111 'target_name': 'zip', | |
112 'type': 'static_library', | |
113 'dependencies': [ | |
114 'minizip', | |
115 '../../base/base.gyp:base', | |
116 ], | |
117 'include_dirs': [ | |
118 '../..', | |
119 ], | |
120 'sources': [ | |
121 'google/zip.cc', | |
122 'google/zip.h', | |
123 'google/zip_internal.cc', | |
124 'google/zip_internal.h', | |
125 'google/zip_reader.cc', | |
126 'google/zip_reader.h', | |
127 ], | |
128 }, | |
129 ], | 110 ], |
130 } | 111 } |
OLD | NEW |