summaryrefslogtreecommitdiffstats
path: root/emulator/opengl/host/libs/Translator/GLcommon/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'emulator/opengl/host/libs/Translator/GLcommon/Android.mk')
-rw-r--r--emulator/opengl/host/libs/Translator/GLcommon/Android.mk58
1 files changed, 0 insertions, 58 deletions
diff --git a/emulator/opengl/host/libs/Translator/GLcommon/Android.mk b/emulator/opengl/host/libs/Translator/GLcommon/Android.mk
deleted file mode 100644
index d1a462d1a..000000000
--- a/emulator/opengl/host/libs/Translator/GLcommon/Android.mk
+++ /dev/null
@@ -1,58 +0,0 @@
-LOCAL_PATH := $(call my-dir)
-
-host_common_SRC_FILES := \
- GLDispatch.cpp \
- GLutils.cpp \
- GLEScontext.cpp \
- GLESvalidate.cpp \
- GLESpointer.cpp \
- GLESbuffer.cpp \
- DummyGLfuncs.cpp \
- RangeManip.cpp \
- TextureUtils.cpp \
- PaletteTexture.cpp \
- etc1.cpp \
- objectNameManager.cpp \
- FramebufferData.cpp
-
-host_GL_COMMON_LINKER_FLAGS :=
-host_common_LDLIBS :=
-host_common_LDFLAGS :=
-
-ifeq ($(HOST_OS),linux)
-# host_common_LDFLAGS += -Wl,--whole-archive
- host_common_LDLIBS += -lGL -ldl
- host_common_LDFLAGS += -Wl,-Bsymbolic
-endif
-
-ifeq ($(HOST_OS),windows)
- host_common_LDLIBS += -lopengl32 -lgdi32
- host_common_LDFLAGS += -Wl,--add-stdcall-alias
-endif
-
-
-### EGL host implementation ########################
-
-$(call emugl-begin-host-static-library,libGLcommon)
-
-translator_path := $(LOCAL_PATH)/..
-LOCAL_SRC_FILES := $(host_common_SRC_FILES)
-$(call emugl-export,LDLIBS,$(host_common_LDLIBS))
-$(call emugl-export,LDFLAGS,$(host_common_LDFLAGS))
-$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)/../include $(EMUGL_PATH)/shared)
-$(call emugl-export,STATIC_LIBRARIES, libemugl_common)
-
-$(call emugl-end-module)
-
-
-### EGL host implementation, 64-bit ################
-$(call emugl-begin-host64-static-library,lib64GLcommon)
-
-translator_path := $(LOCAL_PATH)/..
-LOCAL_SRC_FILES := $(host_common_SRC_FILES)
-$(call emugl-export,LDLIBS,$(host_common_LDLIBS))
-$(call emugl-export,LDFLAGS,$(host_common_LDFLAGS))
-$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)/../include $(EMUGL_PATH)/shared)
-$(call emugl-export,STATIC_LIBRARIES, lib64emugl_common)
-
-$(call emugl-end-module)