Home | History | Annotate | Download | only in GLES_V2
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 host_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 
     15 LOCAL_SRC_FILES := $(host_common_SRC_FILES)
     16 
     17 $(call emugl-end-module)
     18 
     19 
     20 ### GLES_V2 host implementation, 64-bit ##############################
     21 ifdef EMUGL_BUILD_64BITS
     22     $(call emugl-begin-host64-shared-library,lib64GLES_V2_translator)
     23     $(call emugl-import, lib64GLcommon)
     24 
     25     LOCAL_LDLIBS += -m64
     26     LOCAL_SRC_FILES := $(host_common_SRC_FILES)
     27 
     28     $(call emugl-end-module)
     29 endif