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

Side by Side Diff: runtime/third_party/zlib/zlib.gypi

Issue 11275035: Introduce (private) ZLibFilter to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Move bufferlength out as a top level constant. 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # Copyright 2010 Google Inc. All Rights Reserved.
2
3 {
4 'targets': [
5 {
6 'target_name': 'libzlib',
7 'type': 'static_library',
8 'dependencies': [
9 ],
10 'include_dirs': [
11 '.',
12 ],
13 'defines': [
14 ],
15 'sources': [
16 'adler32.c',
17 'compress.c',
18 'crc32.c',
19 'crc32.h',
20 'deflate.c',
21 'deflate.h',
22 'infback.c',
23 'inffast.c',
24 'inffast.h',
25 'inffixed.h',
26 'inflate.c',
27 'inflate.h',
28 'inftrees.c',
29 'inftrees.h',
30 'trees.c',
31 'trees.h',
32 'uncompr.c',
33 'zconf.h',
34 'zlib.h',
35 'zutil.c',
36 'zutil.h',
37 ],
38 'cflags': [
39 ],
40 'cflags!': [
41 # Remove C++ only flags.
42 '-Wnon-virtual-dtor',
43 '-Wno-conversion-null',
44 '-fno-rtti',
45 '-fvisibility-inlines-hidden',
46 ],
47 },
48 ],
49 }
50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698