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

Side by Side Diff: native_client_sdk/src/libraries/zlib/library.dsc

Issue 11417098: Added libjpeg and zlib to SDK (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 {
2 'TOOLS': ['newlib', 'glibc', 'linux', 'win'],
3 'SEARCH': [
4 '../../../../third_party/zlib',
5 ],
6 'TARGETS': [
7 {
8 'NAME' : 'zlib',
9 'TYPE' : 'lib',
10 'SOURCES' : [
11 'adler32.c',
12 'compress.c',
13 'contrib',
14 'crc32.c',
15 'deflate.c',
16 'gzio.c',
17 'infback.c',
18 'inffast.c',
19 'inflate.c',
20 'inftrees.c',
21 'trees.c',
22 'uncompr.c',
23 'zutil.c',
24 'crc32.h',
binji 2012/11/26 23:23:20 put headers in 'HEADERS': {...}
noelallen1 2012/11/27 23:52:24 Done.
25 'deflate.h',
26 'inffast.h',
27 'inffixed.h',
28 'inflate.h',
29 'inftrees.h',
30 'mozzconf.h',
31 'trees.h',
32 'zconf.h',
33 'zlib.h',
34 'zutil.h',
35 ],
36 }
37 ],
38 'DATA': [
39 'LICENSE',
40 'google.patch',
41 'mixed-source.patch',
binji 2012/11/26 23:23:20 I took a look at this patch -- there are more chan
noelallen1 2012/11/27 23:52:24 Hmm... I don't think we want to check out another
42 'README.chromium',
43 ],
44 'DEST': 'src',
45 'NAME': 'zlib',
46 }
47
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698