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 ######################## 21$(call emugl-begin-host-shared-library,lib64GLES_CM_translator) 22 23$(call emugl-import,lib64GLcommon) 24 25LOCAL_LDLIBS += -m64 26LOCAL_SRC_FILES := $(host_common_SRC_FILES) 27 28$(call emugl-end-module) 29