Index: native_client_sdk/src/libraries/zlib/library.dsc |
diff --git a/native_client_sdk/src/libraries/zlib/library.dsc b/native_client_sdk/src/libraries/zlib/library.dsc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8455e0623684ba3eeeb4702a2e806b0bae34a401 |
--- /dev/null |
+++ b/native_client_sdk/src/libraries/zlib/library.dsc |
@@ -0,0 +1,47 @@ |
+{ |
+ 'TOOLS': ['newlib', 'glibc', 'linux', 'win'], |
+ 'SEARCH': [ |
+ '../../../../third_party/zlib', |
+ ], |
+ 'TARGETS': [ |
+ { |
+ 'NAME' : 'zlib', |
+ 'TYPE' : 'lib', |
+ 'SOURCES' : [ |
+ 'adler32.c', |
+ 'compress.c', |
+ 'contrib', |
+ 'crc32.c', |
+ 'deflate.c', |
+ 'gzio.c', |
+ 'infback.c', |
+ 'inffast.c', |
+ 'inflate.c', |
+ 'inftrees.c', |
+ 'trees.c', |
+ 'uncompr.c', |
+ 'zutil.c', |
+ 'crc32.h', |
binji
2012/11/26 23:23:20
put headers in 'HEADERS': {...}
noelallen1
2012/11/27 23:52:24
Done.
|
+ 'deflate.h', |
+ 'inffast.h', |
+ 'inffixed.h', |
+ 'inflate.h', |
+ 'inftrees.h', |
+ 'mozzconf.h', |
+ 'trees.h', |
+ 'zconf.h', |
+ 'zlib.h', |
+ 'zutil.h', |
+ ], |
+ } |
+ ], |
+ 'DATA': [ |
+ 'LICENSE', |
+ 'google.patch', |
+ '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
|
+ 'README.chromium', |
+ ], |
+ 'DEST': 'src', |
+ 'NAME': 'zlib', |
+} |
+ |