blob: 2a2c12f17adb73394b599b0f0e680f79208441e3 [file] [log] [blame]
Mathias Agopian1c3561e2009-08-05 17:38:49 -07001LOCAL_PATH:= $(call my-dir)
2include $(CLEAR_VARS)
3
4LOCAL_SRC_FILES:= \
5 swapinterval.cpp
6
Chih-Hung Hsieh7e9cd8e2017-11-14 15:08:56 -08007LOCAL_CFLAGS := -Wall -Werror
8
Mathias Agopian1c3561e2009-08-05 17:38:49 -07009LOCAL_SHARED_LIBRARIES := \
10 libcutils \
Doug Kwan4633c492009-10-04 19:27:57 -070011 libutils \
Mathias Agopian1c3561e2009-08-05 17:38:49 -070012 libEGL \
13 libGLESv1_CM \
Andy McFadden6ef57d72014-03-05 15:06:53 -080014 libui \
15 libgui
16
17LOCAL_STATIC_LIBRARIES += libglTest
Mathias Agopian1c3561e2009-08-05 17:38:49 -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 Agopian1c3561e2009-08-05 17:38:49 -070021LOCAL_MODULE:= test-opengl-swapinterval
22
23LOCAL_MODULE_TAGS := optional
24
25include $(BUILD_EXECUTABLE)