summaryrefslogtreecommitdiffstats
path: root/opengl/tests/gl2_basic/Android.mk
diff options
context:
space:
mode:
authorJean-Baptiste Queru <jbq@google.com>2009-11-15 12:06:20 -0800
committerJean-Baptiste Queru <jbq@google.com>2009-11-15 12:06:23 -0800
commitdaeaa536fab8f9a71227578aab212fa5d4daaf00 (patch)
tree1de0bdf145436d2ce71bb665124fc24871ace417 /opengl/tests/gl2_basic/Android.mk
parent4511f47c50b39b02eb04eaac8e6a660c29ea8444 (diff)
parentcc8c35cee5de7fdf2d79a1a3716120b64301cdfe (diff)
downloadframeworks_native-daeaa536fab8f9a71227578aab212fa5d4daaf00.zip
frameworks_native-daeaa536fab8f9a71227578aab212fa5d4daaf00.tar.gz
frameworks_native-daeaa536fab8f9a71227578aab212fa5d4daaf00.tar.bz2
merge from eclair
Diffstat (limited to 'opengl/tests/gl2_basic/Android.mk')
-rw-r--r--opengl/tests/gl2_basic/Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/opengl/tests/gl2_basic/Android.mk b/opengl/tests/gl2_basic/Android.mk
new file mode 100644
index 0000000..a642eaf
--- /dev/null
+++ b/opengl/tests/gl2_basic/Android.mk
@@ -0,0 +1,19 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ gl2_basic.cpp
+
+LOCAL_SHARED_LIBRARIES := \
+ libcutils \
+ libEGL \
+ libGLESv2 \
+ libui
+
+LOCAL_MODULE:= test-opengl-gl2_basic
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES
+
+include $(BUILD_EXECUTABLE)