blob: c11a9749569b2e4f4ccfa250da05558b540b032c [file] [log] [blame]
Steven Morelandb09957d2017-05-04 16:03:38 -07001cc_library_shared {
2 name: "libtinycompress",
3 vendor: true,
4
Chih-Hung Hsiehc1bc48f2017-09-29 11:29:00 -07005 cflags: [
6 "-Wall",
7 "-Werror",
8 "-Wno-macro-redefined",
9 "-Wno-unused-function",
10 ],
Steven Morelandb09957d2017-05-04 16:03:38 -070011 export_include_dirs: ["include"],
12 srcs: [
13 "compress.c",
14 "utils.c",
Vidyakumar Athota2b8db682020-12-10 12:05:54 +010015 "compress_hw.c",
16 "compress_plugin.c",
17 "snd_utils.c",
Steven Morelandb09957d2017-05-04 16:03:38 -070018 ],
19 shared_libs: [
20 "libcutils",
21 "libutils",
22 ],
23 header_libs: [
24 "device_kernel_headers",
25 ],
26}
27
28cc_binary {
29 name: "cplay",
30 vendor: true,
31
Chih-Hung Hsiehc1bc48f2017-09-29 11:29:00 -070032 cflags: [
33 "-Wall",
34 "-Werror",
35 "-Wno-macro-redefined"
36 ],
Steven Morelandb09957d2017-05-04 16:03:38 -070037 local_include_dirs: ["include"],
38 srcs: ["cplay.c"],
39 shared_libs: [
40 "libcutils",
41 "libutils",
42 "libtinycompress",
43 ],
44}