OSDN Git Service

Checksum for GL pipe communication
[android-x86/device-generic-goldfish-opengl.git] / 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         TimeUtils.cpp
14
15 ### CodecCommon  guest ##############################################
16 $(call emugl-begin-static-library,libOpenglCodecCommon)
17
18 LOCAL_SRC_FILES := $(commonSources)
19
20 LOCAL_CFLAGS += -DLOG_TAG=\"eglCodecCommon\"
21
22 $(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog)
23 $(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
24 $(call emugl-end-module)