lmkd: Android.mk -> Android.bp

Test: links
Change-Id: I19aa62270488af02d64830ca90faf80b35423009
This commit is contained in:
Steven Moreland 2017-04-27 16:31:05 -07:00
parent 8a85c253bf
commit 1457c9290d
2 changed files with 13 additions and 12 deletions

13
lmkd/Android.bp Normal file
View file

@ -0,0 +1,13 @@
cc_binary {
name: "lmkd",
srcs: ["lmkd.c"],
shared_libs: [
"liblog",
"libprocessgroup",
"libcutils",
],
cflags: ["-Werror"],
init_rc: ["lmkd.rc"],
}

View file

@ -1,12 +0,0 @@
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := lmkd.c
LOCAL_SHARED_LIBRARIES := liblog libm libc libprocessgroup libcutils
LOCAL_CFLAGS := -Werror
LOCAL_MODULE := lmkd
LOCAL_INIT_RC := lmkd.rc
include $(BUILD_EXECUTABLE)