You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
577 B
32 lines
577 B
cc_library_shared { |
|
name: "libtinycompress", |
|
vendor: true, |
|
|
|
cflags: ["-Wno-macro-redefined"], |
|
export_include_dirs: ["include"], |
|
srcs: [ |
|
"compress.c", |
|
"utils.c", |
|
], |
|
shared_libs: [ |
|
"libcutils", |
|
"libutils", |
|
], |
|
header_libs: [ |
|
"device_kernel_headers", |
|
], |
|
} |
|
|
|
cc_binary { |
|
name: "cplay", |
|
vendor: true, |
|
|
|
cflags: ["-Wno-macro-redefined"], |
|
local_include_dirs: ["include"], |
|
srcs: ["cplay.c"], |
|
shared_libs: [ |
|
"libcutils", |
|
"libutils", |
|
"libtinycompress", |
|
], |
|
}
|
|
|