blob: 42cf771f195d204fd293d56f8f9083bb5197b3f5 [file] [log] [blame]
Michael I. Gold6ecdb492010-09-20 17:48:52 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 gl2_yuvtex.cpp
6
7LOCAL_SHARED_LIBRARIES := \
Mathias Agopian3cd153a2013-03-06 22:37:33 -08008 libcutils \
Michael I. Gold6ecdb492010-09-20 17:48:52 -07009 libEGL \
10 libGLESv2 \
Mathias Agopian3cd153a2013-03-06 22:37:33 -080011 libutils \
Andy McFadden6ef57d72014-03-05 15:06:53 -080012 libui \
13 libgui \
14 libutils
15
16LOCAL_STATIC_LIBRARIES += libglTest
Michael I. Gold6ecdb492010-09-20 17:48:52 -070017
Mathias Agopian622cfad2012-03-05 13:57:02 -080018LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
Mathias Agopian870b8aa2012-02-24 16:42:46 -080019
Michael I. Gold6ecdb492010-09-20 17:48:52 -070020LOCAL_MODULE:= test-opengl-gl2_yuvtex
21
22LOCAL_MODULE_TAGS := optional
23
24LOCAL_CFLAGS := -DGL_GLEXT_PROTOTYPES -DEGL_EGLEXT_PROTOTYPES
25
26include $(BUILD_EXECUTABLE)