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

Commit 989a10e9 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

Change-Id: Ie71bd9904b58a4b3a5214aa5ff08a49fa3ec93c3
parents 1bd2d1c3 e17ebe12
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)