1LOCAL_PATH := $(call my-dir) 2 3host_common_SRC_FILES := \ 4 GLEScmImp.cpp \ 5 GLEScmUtils.cpp \ 6 GLEScmContext.cpp \ 7 GLEScmValidate.cpp 8 9 10### GLES_CM host implementation (On top of OpenGL) ######################## 11$(call emugl-begin-host-shared-library,libGLES_CM_translator) 12 13$(call emugl-import,libGLcommon) 14 15LOCAL_SRC_FILES := $(host_common_SRC_FILES) 16 17$(call emugl-end-module) 18 19 20### GLES_CM host implementation, 64-bit ######################## 21ifdef EMUGL_BUILD_64BITS 22 $(call emugl-begin-host64-shared-library,lib64GLES_CM_translator) 23 24 $(call emugl-import,lib64GLcommon) 25 26 LOCAL_CFLAGS += -fPIC 27 LOCAL_LDLIBS += -m64 28 LOCAL_SRC_FILES := $(host_common_SRC_FILES) 29 30 $(call emugl-end-module) 31endif