summaryrefslogtreecommitdiff
path: root/alloc-stress/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'alloc-stress/Android.mk')
-rw-r--r--alloc-stress/Android.mk12
1 files changed, 12 insertions, 0 deletions
diff --git a/alloc-stress/Android.mk b/alloc-stress/Android.mk
new file mode 100644
index 00000000..3185d55e
--- /dev/null
+++ b/alloc-stress/Android.mk
@@ -0,0 +1,12 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_CLANG := true
+LOCAL_MODULE := alloc-stress
+LOCAL_CFLAGS += -g -Wall -Werror -std=gnu++11 -Wno-missing-field-initializers -Wno-sign-compare
+LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include
+LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
+LOCAL_SHARED_LIBRARIES := libhardware
+LOCAL_SRC_FILES := \
+ alloc-stress.cpp
+include $(BUILD_EXECUTABLE)