blob: ff43558d316ad2dfe608ceff45c3f73f31cd44af [file] [log] [blame]
Romain Guy868a0af2011-07-19 17:20:35 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 gl2_copyTexImage.cpp
6
7LOCAL_SHARED_LIBRARIES := \
8 libcutils \
9 libEGL \
10 libGLESv2 \
Andy McFadden6ef57d72014-03-05 15:06:53 -080011 libui \
12 libgui \
13 libutils
14
15LOCAL_STATIC_LIBRARIES += libglTest
Romain Guy868a0af2011-07-19 17:20:35 -070016
Mathias Agopian622cfad2012-03-05 13:57:02 -080017LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
Mathias Agopian870b8aa2012-02-24 16:42:46 -080018
Romain Guy868a0af2011-07-19 17:20:35 -070019LOCAL_MODULE:= test-opengl-gl2_copyTexImage
20
21LOCAL_MODULE_TAGS := optional
22
23LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES
24
25include $(BUILD_EXECUTABLE)