blob: e91eb6c26c75aa6782763d7c2f91ec25156d3588 [file] [log] [blame]
keunyoungb85b2752013-03-08 12:28:03 -08001# 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 \
Yahan Zhoub7f09082016-03-10 11:45:02 -08008 ChecksumCalculator.cpp \
keunyoungb85b2752013-03-08 12:28:03 -08009 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
18LOCAL_SRC_FILES := $(commonSources)
19
20LOCAL_CFLAGS += -DLOG_TAG=\"eglCodecCommon\"
21
Ying Wangb2757f62013-04-09 21:44:20 -070022$(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog)
keunyoungb85b2752013-03-08 12:28:03 -080023$(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
24$(call emugl-end-module)