TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / android / opengl / shared / OpenglCodecCommon / Android.mk
1 # This build script corresponds to a library containing many definitions
2 # common to both the guest and the host. They relate to
3 #
4 LOCAL_PATH := $(call my-dir)
5
6 commonSources := \
7         GLClientState.cpp \
8         ChecksumCalculator.cpp \
9         GLSharedGroup.cpp \
10         glUtils.cpp \
11         SocketStream.cpp \
12         TcpStream.cpp \
13
14 ### CodecCommon  guest ##############################################
15 $(call emugl-begin-static-library,libOpenglCodecCommon)
16
17 LOCAL_SRC_FILES := $(commonSources)
18
19 LOCAL_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)