diff options
author | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 20:15:02 +0000 |
---|---|---|
committer | alecflett@chromium.org <alecflett@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 20:15:02 +0000 |
commit | 282c939d529085410368a0c477e72cc125836f30 (patch) | |
tree | 983a5777c11a35705bc55d9c41210e254b64f73a /third_party/zlib/zlib.gyp | |
parent | e8d81410c4c07865cd8d3aff22130466d89b7e9c (diff) | |
download | chromium_src-282c939d529085410368a0c477e72cc125836f30.zip chromium_src-282c939d529085410368a0c477e72cc125836f30.tar.gz chromium_src-282c939d529085410368a0c477e72cc125836f30.tar.bz2 |
Move components/zip to third_party/zip
Move components to zip as per the discussion here:
https://groups.google.com/a/chromium.org/d/topic/chromium-dev/MgbMTQCNzR0/discussion
BUG=
R=agl@chromium.org, gavinp@chromium.org, jam@chromium.org, joi@chromium.org
Review URL: https://codereview.chromium.org/14021015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/zlib/zlib.gyp')
-rw-r--r-- | third_party/zlib/zlib.gyp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/third_party/zlib/zlib.gyp b/third_party/zlib/zlib.gyp index 069fb63..ebdad42 100644 --- a/third_party/zlib/zlib.gyp +++ b/third_party/zlib/zlib.gyp @@ -106,6 +106,25 @@ ], }], ], - } + }, + { + 'target_name': 'zip', + 'type': 'static_library', + 'dependencies': [ + 'minizip', + '../../base/base.gyp:base', + ], + 'include_dirs': [ + '../..', + ], + 'sources': [ + 'google/zip.cc', + 'google/zip.h', + 'google/zip_internal.cc', + 'google/zip_internal.h', + 'google/zip_reader.cc', + 'google/zip_reader.h', + ], + }, ], } |