20391b1de5
Bug: 23186545 Change-Id: I52616b8ab1165fdef716f9b8f958665f2308c12e
18 lines
361 B
Makefile
18 lines
361 B
Makefile
# Copyright 2006-2014 The Android Open Source Project
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= logcat.cpp event.logtags
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libbase libcutils
|
|
|
|
LOCAL_MODULE := logcat
|
|
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
LOCAL_INIT_RC := logcatd.rc
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|