blob: a6edd26ceb5664943e5a4578df018ea34e30002b [file] [log] [blame]
Mark Salyzynf089e142018-02-20 10:47:40 -08001cc_library_headers {
2 name: "llkd_headers",
3
4 export_include_dirs: ["include"],
5}
6
7cc_library_static {
8 name: "libllkd",
9
10 srcs: [
11 "libllkd.cpp",
12 ],
13
14 shared_libs: [
15 "libbase",
16 "libcutils",
17 "liblog",
18 ],
19
20 export_include_dirs: ["include"],
21
22 cflags: ["-Werror"],
23}
24
25cc_binary {
26 name: "llkd",
27
28 srcs: [
29 "llkd.cpp",
30 ],
31 shared_libs: [
32 "libbase",
33 "libcutils",
34 "liblog",
35 ],
36 static_libs: [
37 "libllkd",
38 ],
39 cflags: ["-Werror"],
40
41 init_rc: ["llkd.rc"],
42}