1LOCAL_PATH := $(call my-dir) 2 3host_common_SRC_FILES := \ 4 GLESv2Imp.cpp \ 5 GLESv2Context.cpp \ 6 GLESv2Validate.cpp \ 7 ShaderParser.cpp \ 8 ProgramData.cpp 9 10 11### GLES_V2 host implementation (On top of OpenGL) ######################## 12$(call emugl-begin-host-shared-library,libGLES_V2_translator) 13$(call emugl-import, libGLcommon) 14 15LOCAL_SRC_FILES := $(host_common_SRC_FILES) 16 17$(call emugl-end-module) 18 19 20### GLES_V2 host implementation, 64-bit ############################## 21$(call emugl-begin-host-shared-library,lib64GLES_V2_translator) 22$(call emugl-import, lib64GLcommon) 23 24LOCAL_LDLIBS += -m64 25LOCAL_SRC_FILES := $(host_common_SRC_FILES) 26 27$(call emugl-end-module) 28