| Mark Salyzyn | f089e14 | 2018-02-20 10:47:40 -0800 | [diff] [blame] | 1 | cc_library_headers { |
| 2 | name: "llkd_headers", | ||||
| 3 | |||||
| 4 | export_include_dirs: ["include"], | ||||
| 5 | } | ||||
| 6 | |||||
| 7 | cc_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 | |||||
| 25 | cc_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 | } | ||||