Home | History | Annotate | Download | only in EGL_host_wrapper
      1 ifeq ($(HOST_OS),linux)
      2 
      3 LOCAL_PATH := $(call my-dir)
      4 
      5 $(call emugl-begin-host-static-library,libEGL_host_wrapper)
      6 
      7 LOCAL_SRC_FILES :=  \
      8         egl.cpp \
      9         egl_dispatch.cpp
     10 
     11 $(call emugl-export,LDLIBS,-ldl -pthread)
     12 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
     13 
     14 $(call emugl-end-module)
     15 
     16 endif # HOST_OS == linux
     17