Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7ae18c8e authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "lmkd: Android.mk -> Android.bp" am: 6de56724 am: 4cceba71 am: e17ebe12

am: 989a10e9

Change-Id: I277892b7157cccd532e53488b097802d5f17fd82
parents 7fe58ba5 989a10e9
Loading
Loading
Loading
Loading

lmkd/Android.bp

0 → 100644
+13 −0
Original line number Diff line number Diff line
cc_binary {
    name: "lmkd",

    srcs: ["lmkd.c"],
    shared_libs: [
        "liblog",
        "libprocessgroup",
        "libcutils",
    ],
    cflags: ["-Werror"],

    init_rc: ["lmkd.rc"],
}

lmkd/Android.mk

deleted100644 → 0
+0 −12
Original line number Diff line number Diff line
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)