aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/zlib.gyp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 12:27:14 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-06-16 12:27:14 +0000
commitb1b721a7b63de4953d6d6113f01b55bfb6553085 (patch)
tree90a37299e75651c07737d3342b87a3838958456f /gyp/zlib.gyp
parent48d5d8e862697b53adefa014da2b77dce6ccee0c (diff)
remove libpng and zlib from third_party
Diffstat (limited to 'gyp/zlib.gyp')
-rw-r--r--gyp/zlib.gyp53
1 files changed, 0 insertions, 53 deletions
diff --git a/gyp/zlib.gyp b/gyp/zlib.gyp
deleted file mode 100644
index 3e1fd0a352..0000000000
--- a/gyp/zlib.gyp
+++ /dev/null
@@ -1,53 +0,0 @@
-# Gyp config to build zlib as needed for Skia.
-{
- 'targets': [
- {
- 'target_name': 'zlib',
- 'type': 'static_library',
- 'include_dirs': [
- '../third_party/zlib',
- ],
- 'sources': [
- '../third_party/zlib/crc32.h',
- '../third_party/zlib/deflate.h',
- '../third_party/zlib/gzguts.h',
- '../third_party/zlib/inffast.h',
- '../third_party/zlib/inffixed.h',
- '../third_party/zlib/inflate.h',
- '../third_party/zlib/inftrees.h',
- '../third_party/zlib/trees.h',
- '../third_party/zlib/zconf.h',
- '../third_party/zlib/zlib.h',
- '../third_party/zlib/zutil.h',
-
- '../third_party/zlib/adler32.c',
- '../third_party/zlib/compress.c',
- '../third_party/zlib/crc32.c',
- '../third_party/zlib/deflate.c',
- '../third_party/zlib/gzclose.c',
- '../third_party/zlib/gzlib.c',
- '../third_party/zlib/gzread.c',
- '../third_party/zlib/gzwrite.c',
- '../third_party/zlib/infback.c',
- '../third_party/zlib/inffast.c',
- '../third_party/zlib/inflate.c',
- '../third_party/zlib/inftrees.c',
- '../third_party/zlib/minigzip.c',
- '../third_party/zlib/trees.c',
- '../third_party/zlib/uncompr.c',
- '../third_party/zlib/zutil.c',
- ],
- 'all_dependent_settings': {
- 'include_dirs': [
- '../third_party/zlib',
- ],
- },
- },
- ],
-}
-
-# Local Variables:
-# tab-width:2
-# indent-tabs-mode:nil
-# End:
-# vim: set expandtab tabstop=2 shiftwidth=2: