Home | History | Annotate | Download | only in OpenglSystemCommon
      1 LOCAL_PATH := $(call my-dir)
      2 
      3 $(call emugl-begin-shared-library,libOpenglSystemCommon)
      4 $(call emugl-import,libGLESv1_enc libGLESv2_enc lib_renderControl_enc)
      5 
      6 LOCAL_SRC_FILES := \
      7     goldfish_dma.cpp \
      8     FormatConversions.cpp \
      9     HostConnection.cpp \
     10     ProcessPipe.cpp    \
     11     QemuPipeStream.cpp \
     12     ThreadInfo.cpp
     13 
     14 ifdef IS_AT_LEAST_OPD1
     15 LOCAL_HEADER_LIBRARIES += libnativebase_headers
     16 
     17 $(call emugl-export,HEADER_LIBRARIES,libnativebase_headers)
     18 endif
     19 
     20 ifdef IS_AT_LEAST_OPD1
     21 LOCAL_HEADER_LIBRARIES += libhardware_headers
     22 $(call emugl-export,HEADER_LIBRARIES,libhardware_headers)
     23 endif
     24 
     25 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH) bionic/libc/private)
     26 
     27 $(call emugl-end-module)
     28