Steven Moreland | af6c4c0 | 2017-05-04 16:03:38 -0700 | [diff] [blame^] | 1 | cc_library_shared { |
2 | name: "libtinycompress", | ||||
3 | |||||
4 | cflags: ["-Wno-macro-redefined"], | ||||
5 | export_include_dirs: ["include"], | ||||
6 | srcs: [ | ||||
7 | "compress.c", | ||||
8 | "utils.c", | ||||
9 | ], | ||||
10 | shared_libs: [ | ||||
11 | "libcutils", | ||||
12 | "libutils", | ||||
13 | ], | ||||
14 | } | ||||
15 | |||||
16 | cc_binary { | ||||
17 | name: "cplay", | ||||
18 | |||||
19 | cflags: ["-Wno-macro-redefined"], | ||||
20 | local_include_dirs: ["include"], | ||||
21 | srcs: ["cplay.c"], | ||||
22 | shared_libs: [ | ||||
23 | "libcutils", | ||||
24 | "libutils", | ||||
25 | "libtinycompress", | ||||
26 | ], | ||||
27 | } |