summaryrefslogtreecommitdiffstats
path: root/third_party/zlib/google
diff options
context:
space:
mode:
authorphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-22 19:14:37 +0000
committerphajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-22 19:14:37 +0000
commit720cedab7dd4555d1d0eba2982e17cac751fb571 (patch)
tree4cbfa9f769fb2b3fd58a0e70081a080ee7c7f791 /third_party/zlib/google
parent0e7b1a458748c84fe06fc74f21730369306256a5 (diff)
downloadchromium_src-720cedab7dd4555d1d0eba2982e17cac751fb571.zip
chromium_src-720cedab7dd4555d1d0eba2982e17cac751fb571.tar.gz
chromium_src-720cedab7dd4555d1d0eba2982e17cac751fb571.tar.bz2
GTTF: Add a basic new unit test launcher.
It launches batches of unit tests in a subprocess for better stability. BUG=236893 R=maruel@chromium.org, satorux@chromium.org Review URL: https://codereview.chromium.org/23132002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219065 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/zlib/google')
-rw-r--r--third_party/zlib/google/zip.gyp27
1 files changed, 27 insertions, 0 deletions
diff --git a/third_party/zlib/google/zip.gyp b/third_party/zlib/google/zip.gyp
new file mode 100644
index 0000000..9542f9c
--- /dev/null
+++ b/third_party/zlib/google/zip.gyp
@@ -0,0 +1,27 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'zip',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../zlib.gyp:minizip',
+ '../../../base/base.gyp:base',
+ ],
+ 'include_dirs': [
+ '../../..',
+ ],
+ 'sources': [
+ 'zip.cc',
+ 'zip.h',
+ 'zip_internal.cc',
+ 'zip_internal.h',
+ 'zip_reader.cc',
+ 'zip_reader.h',
+ ],
+ },
+ ],
+}