blob: 3df0a0fef75b7df484c544f198d21fbb624289d4 [file] [log] [blame]
Mathias Agopian32216162009-10-28 02:09:21 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 linetex.cpp
6
Chih-Hung Hsieh7e9cd8e2017-11-14 15:08:56 -08007LOCAL_CFLAGS := -Wall -Werror
8
Mathias Agopian32216162009-10-28 02:09:21 -07009LOCAL_SHARED_LIBRARIES := \
10 libcutils \
11 libEGL \
12 libGLESv1_CM \
Andy McFadden6ef57d72014-03-05 15:06:53 -080013 libui \
14 libgui \
15 libutils
16
17LOCAL_STATIC_LIBRARIES += libglTest
Mathias Agopian32216162009-10-28 02:09:21 -070018
Mathias Agopian622cfad2012-03-05 13:57:02 -080019LOCAL_C_INCLUDES += $(call include-path-for, opengl-tests-includes)
Mathias Agopian870b8aa2012-02-24 16:42:46 -080020
Mathias Agopian32216162009-10-28 02:09:21 -070021LOCAL_MODULE:= test-opengl-linetex
22
23LOCAL_MODULE_TAGS := optional
24
25include $(BUILD_EXECUTABLE)