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

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: Add InternalError class and LICENSE file. Created 8 years, 1 month 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.
Søren Gjesse 2012/10/25 13:54:45 Year 2012
Søren Gjesse 2012/10/25 13:54:45 I looked briefly at the Chromium gyp file for zlib
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 'gzguts.h',
23 'infback.c',
24 'inffast.c',
25 'inffast.h',
26 'inffixed.h',
27 'inflate.c',
28 'inflate.h',
29 'inftrees.c',
30 'inftrees.h',
31 'trees.c',
32 'trees.h',
33 'uncompr.c',
34 'zconf.h',
35 'zlib.h',
36 'zutil.c',
37 'zutil.h',
38 ],
39 'cflags': [
40 ],
41 'cflags!': [
42 # Remove C++ only flags.
43 '-Wnon-virtual-dtor',
44 '-Wno-conversion-null',
45 '-fno-rtti',
46 '-fvisibility-inlines-hidden',
47 ],
48 },
49 ],
50 }
51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698