9d9e62cf37
While lmkd does technically use libcutils' socket.h, it only uses a static inline. Remove libcutils from LOCAL_SHARED_LIBRARIES so it doesn't end up mlock'd in memory in the next patch. Bug: 16236289 Change-Id: I744d69bfff06cb904836f64e1d5f6e530604bff4
10 lines
211 B
Makefile
10 lines
211 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES := lmkd.c
|
|
LOCAL_SHARED_LIBRARIES := liblog libm libc libprocessgroup
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
LOCAL_MODULE := lmkd
|
|
|
|
include $(BUILD_EXECUTABLE)
|