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

Unified Diff: runtime/third_party/zlib/zlib.gypi

Issue 11198034: Introduce (private) ZLibFilter to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/third_party/zlib/zlib.3 ('k') | runtime/third_party/zlib/zlib.map » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/third_party/zlib/zlib.gypi
diff --git a/runtime/third_party/zlib/zlib.gypi b/runtime/third_party/zlib/zlib.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..0d553a3d31866b6c5c66e52562e0d3140953ea49
--- /dev/null
+++ b/runtime/third_party/zlib/zlib.gypi
@@ -0,0 +1,50 @@
+# Copyright 2010 Google Inc. All Rights Reserved.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'libzlib',
+ 'type': 'static_library',
+ 'dependencies': [
+ ],
+ 'include_dirs': [
+ '.',
+ ],
+ 'defines': [
+ ],
+ 'sources': [
+ 'adler32.c',
+ 'compress.c',
+ 'crc32.c',
+ 'crc32.h',
+ 'deflate.c',
+ 'deflate.h',
+ 'infback.c',
+ 'inffast.c',
+ 'inffast.h',
+ 'inffixed.h',
+ 'inflate.c',
+ 'inflate.h',
+ 'inftrees.c',
+ 'inftrees.h',
+ 'trees.c',
+ 'trees.h',
+ 'uncompr.c',
+ 'zconf.h',
+ 'zlib.h',
+ 'zutil.c',
+ 'zutil.h',
+ ],
+ 'cflags': [
+ ],
+ 'cflags!': [
+ # Remove C++ only flags.
+ '-Wnon-virtual-dtor',
+ '-Wno-conversion-null',
+ '-fno-rtti',
+ '-fvisibility-inlines-hidden',
+ ],
+ },
+ ],
+}
+
« no previous file with comments | « runtime/third_party/zlib/zlib.3 ('k') | runtime/third_party/zlib/zlib.map » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698