Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |