Home | History | Annotate | Download | only in GLES_CM
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 host_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 
     15 LOCAL_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 
     25 LOCAL_LDLIBS += -m64
     26 LOCAL_SRC_FILES := $(host_common_SRC_FILES)
     27 
     28 $(call emugl-end-module)
     29