OSDN Git Service

Merge "libcutils: Fix warnings in properties.c when verbose logging is enabled"
[android-x86/system-core.git] / logd / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2
3 include $(CLEAR_VARS)
4
5 LOCAL_MODULE:= logd
6
7 LOCAL_SRC_FILES := \
8     main.cpp \
9     LogCommand.cpp \
10     CommandListener.cpp \
11     LogListener.cpp \
12     LogReader.cpp \
13     FlushCommand.cpp \
14     LogBuffer.cpp \
15     LogBufferElement.cpp \
16     LogTimes.cpp \
17     LogStatistics.cpp \
18     LogWhiteBlackList.cpp \
19     libaudit.c \
20     LogAudit.cpp
21
22 LOCAL_SHARED_LIBRARIES := \
23     libsysutils \
24     liblog \
25     libcutils \
26     libutils
27
28 LOCAL_MODULE_TAGS := optional
29
30 include $(BUILD_EXECUTABLE)
31
32 include $(call first-makefiles-under,$(LOCAL_PATH))