diff options
Diffstat (limited to 'emulator/opengl/host/libs/Translator/GLES_CM/Android.mk')
-rw-r--r-- | emulator/opengl/host/libs/Translator/GLES_CM/Android.mk | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/emulator/opengl/host/libs/Translator/GLES_CM/Android.mk b/emulator/opengl/host/libs/Translator/GLES_CM/Android.mk new file mode 100644 index 0000000..9aa74a7 --- /dev/null +++ b/emulator/opengl/host/libs/Translator/GLES_CM/Android.mk @@ -0,0 +1,28 @@ +LOCAL_PATH := $(call my-dir) + +host_common_SRC_FILES := \ + GLEScmImp.cpp \ + GLEScmUtils.cpp \ + GLEScmContext.cpp \ + GLEScmValidate.cpp + + +### GLES_CM host implementation (On top of OpenGL) ######################## +$(call emugl-begin-host-shared-library,libGLES_CM_translator) + +$(call emugl-import,libGLcommon) + +LOCAL_SRC_FILES := $(host_common_SRC_FILES) + +$(call emugl-end-module) + + +### GLES_CM host implementation, 64-bit ######################## +$(call emugl-begin-host-shared-library,lib64GLES_CM_translator) + +$(call emugl-import,lib64GLcommon) + +LOCAL_LDLIBS += -m64 +LOCAL_SRC_FILES := $(host_common_SRC_FILES) + +$(call emugl-end-module) |