Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: third_party/zlib/zlib.gyp

Issue 14021015: Move components/zip to third_party/zip (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update unit_tests.isolate for new test data location Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « third_party/zlib/google/zip_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'WARNING_CFLAGS': [ 99 'WARNING_CFLAGS': [
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 },
110 ], 129 ],
111 } 130 }
OLDNEW
« no previous file with comments | « third_party/zlib/google/zip_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698