diff options
Diffstat (limited to 'opengl/tests/gl2_yuvtex/Android.mk')
-rw-r--r-- | opengl/tests/gl2_yuvtex/Android.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/opengl/tests/gl2_yuvtex/Android.mk b/opengl/tests/gl2_yuvtex/Android.mk new file mode 100644 index 0000000..6304700 --- /dev/null +++ b/opengl/tests/gl2_yuvtex/Android.mk @@ -0,0 +1,19 @@ +LOCAL_PATH:= $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES:= \ + gl2_yuvtex.cpp + +LOCAL_SHARED_LIBRARIES := \ + libcutils \ + libEGL \ + libGLESv2 \ + libui + +LOCAL_MODULE:= test-opengl-gl2_yuvtex + +LOCAL_MODULE_TAGS := optional + +LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES + +include $(BUILD_EXECUTABLE) |