aboutsummaryrefslogtreecommitdiffstats
path: root/emulator/opengl/tests/translator_tests/GLES_CM/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/opengl/tests/translator_tests/GLES_CM/Android.mk')
-rw-r--r--emulator/opengl/tests/translator_tests/GLES_CM/Android.mk28
1 files changed, 0 insertions, 28 deletions
diff --git a/emulator/opengl/tests/translator_tests/GLES_CM/Android.mk b/emulator/opengl/tests/translator_tests/GLES_CM/Android.mk
deleted file mode 100644
index 1f25a33..0000000
--- a/emulator/opengl/tests/translator_tests/GLES_CM/Android.mk
+++ /dev/null
@@ -1,28 +0,0 @@
-LOCAL_PATH:= $(call my-dir)
-
-$(call emugl-begin-host-executable,triangleCM)
-$(call emugl-import,libEGL_translator libGLES_CM_translator)
-
-ifeq ($(HOST_OS),darwin)
- # SDK 10.6+ deprecates __dyld_func_lookup required by dlcompat_init_func
- # in SDL_dlcompat.o this module depends. Instruct linker to resolved it at runtime.
- OSX_VERSION_MAJOR := $(shell echo $(mac_sdk_version) | cut -d . -f 2)
- OSX_VERSION_MAJOR_GREATER_THAN_OR_EQUAL_TO_6 := $(shell [ $(OSX_VERSION_MAJOR) -ge 6 ] && echo true)
- ifeq ($(OSX_VERSION_MAJOR_GREATER_THAN_OR_EQUAL_TO_6),true)
- LOCAL_LDLIBS += -Wl,-undefined,dynamic_lookup
- endif
-endif
-
-LOCAL_SRC_FILES:= \
- triangleCM.cpp
-
-LOCAL_CFLAGS += $(EMUGL_SDL_CFLAGS) -g -O0
-LOCAL_LDLIBS += $(EMUGL_SDL_LDLIBS) -lstdc++
-
-LOCAL_STATIC_LIBRARIES += $(EMUGL_SDL_STATIC_LIBRARIES)
-
-ifeq ($(HOST_OS),darwin)
-$(call emugl-import,libMac_view)
-endif
-
-$(call emugl-end-module)