1# This build script corresponds to a library containing many definitions 2# common to both the guest and the host. They relate to 3# 4LOCAL_PATH := $(call my-dir) 5 6commonSources := \ 7 GLClientState.cpp \ 8 GLSharedGroup.cpp \ 9 glUtils.cpp \ 10 SocketStream.cpp \ 11 TcpStream.cpp \ 12 TimeUtils.cpp 13 14### CodecCommon guest ############################################## 15$(call emugl-begin-static-library,libOpenglCodecCommon) 16 17LOCAL_SRC_FILES := $(commonSources) 18 19LOCAL_CFLAGS += -DLOG_TAG=\"eglCodecCommon\" 20 21$(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog) 22$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 23$(call emugl-end-module) 24