Packets captured and logged by the NFLOG target are unicast, so extend to catch and decode them. To avoid escaping issues, the raw contents are passed around as hex strings. Bug: 18335678 Change-Id: Ib7299500baa00080a1f000f9da843eb527363353
28 lines
684 B
Makefile
28 lines
684 B
Makefile
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
|
|
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
src/SocketListener.cpp \
|
|
src/FrameworkListener.cpp \
|
|
src/NetlinkListener.cpp \
|
|
src/NetlinkEvent.cpp \
|
|
src/FrameworkCommand.cpp \
|
|
src/SocketClient.cpp \
|
|
src/ServiceManager.cpp \
|
|
EventLogTags.logtags
|
|
|
|
LOCAL_MODULE:= libsysutils
|
|
|
|
LOCAL_CFLAGS := -Werror
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
liblog \
|
|
libnl
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
endif
|