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

Side by Side Diff: chrome/chrome_common.gypi

Issue 8508003: zip: Add ZipReader and rework Unzip() using the new class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix a win failure Created 9 years, 1 month 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 | « no previous file | chrome/chrome_tests.gypi » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'common/web_apps.cc', 228 'common/web_apps.cc',
229 'common/web_apps.h', 229 'common/web_apps.h',
230 'common/web_resource/web_resource_unpacker.cc', 230 'common/web_resource/web_resource_unpacker.cc',
231 'common/web_resource/web_resource_unpacker.h', 231 'common/web_resource/web_resource_unpacker.h',
232 'common/worker_thread_ticker.cc', 232 'common/worker_thread_ticker.cc',
233 'common/worker_thread_ticker.h', 233 'common/worker_thread_ticker.h',
234 'common/zip.cc', # Requires zlib directly. 234 'common/zip.cc', # Requires zlib directly.
235 'common/zip.h', 235 'common/zip.h',
236 'common/zip_internal.cc', 236 'common/zip_internal.cc',
237 'common/zip_internal.h', 237 'common/zip_internal.h',
238 'common/zip_reader.cc',
239 'common/zip_reader.h',
238 ], 240 ],
239 'conditions': [ 241 'conditions': [
240 ['OS=="win"', { 242 ['OS=="win"', {
241 'include_dirs': [ 243 'include_dirs': [
242 '<(DEPTH)/third_party/wtl/include', 244 '<(DEPTH)/third_party/wtl/include',
243 ], 245 ],
244 }], 246 }],
245 ['toolkit_uses_gtk == 1', { 247 ['toolkit_uses_gtk == 1', {
246 'dependencies': [ 248 'dependencies': [
247 '../build/linux/system.gyp:gtk', 249 '../build/linux/system.gyp:gtk',
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 'common/safe_browsing/csd.proto' 429 'common/safe_browsing/csd.proto'
428 ], 430 ],
429 'variables': { 431 'variables': {
430 'proto_in_dir': 'common/safe_browsing', 432 'proto_in_dir': 'common/safe_browsing',
431 'proto_out_dir': 'chrome/common/safe_browsing', 433 'proto_out_dir': 'chrome/common/safe_browsing',
432 }, 434 },
433 'includes': [ '../build/protoc.gypi' ], 435 'includes': [ '../build/protoc.gypi' ],
434 }, 436 },
435 ], 437 ],
436 } 438 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698