aboutsummaryrefslogtreecommitdiff
path: root/daemon/Android.mk
diff options
context:
space:
mode:
authorDrew Richardson <drew.richardson@arm.com>2011-09-30 12:00:00 -0700
committerDrew Richardson <drew.richardson@arm.com>2014-12-19 15:16:17 -0800
commitc5f78695067d4614bcb494d5f54bde4405c43609 (patch)
tree5413ee61289c45be1917e93852d491aa1f778087 /daemon/Android.mk
parent73158f9d05b7087bb6ff895e820017af3c94a1a6 (diff)
gator: Version 5.75.7
Signed-off-by: Drew Richardson <drew.richardson@arm.com>
Diffstat (limited to 'daemon/Android.mk')
-rw-r--r--daemon/Android.mk32
1 files changed, 32 insertions, 0 deletions
diff --git a/daemon/Android.mk b/daemon/Android.mk
new file mode 100644
index 0000000..45f5b7d
--- /dev/null
+++ b/daemon/Android.mk
@@ -0,0 +1,32 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_CFLAGS += -Wall -O3 -ftree-vectorize
+
+LOCAL_SRC_FILES:= \
+ CapturedXML.cpp \
+ Child.cpp \
+ Collector.cpp \
+ ConfigurationXML.cpp \
+ Fifo.cpp \
+ HashMap.cpp \
+ LocalCapture.cpp \
+ Logging.cpp \
+ main.cpp \
+ OlySocket.cpp \
+ OlyUtility.cpp \
+ ReadSession.cpp \
+ RequestXML.cpp \
+ Sender.cpp \
+ SessionData.cpp \
+ StreamlineSetup.cpp \
+ XMLOut.cpp \
+ XMLReader.cpp
+
+LOCAL_C_INCLUDES := $(LOCAL_PATH)
+
+LOCAL_MODULE:= gatord
+
+LOCAL_LDLIBS := -lz -llog
+
+include $(BUILD_EXECUTABLE)