blob: b9cf6e55662e19bcf5c84a1074e455725f9f54e9 [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 \
Lingfeng Yang74e29292017-01-10 14:54:38 -08008 GLESTextureUtils.cpp \
Yahan Zhoub7f09082016-03-10 11:45:02 -08009 ChecksumCalculator.cpp \
keunyoungb85b2752013-03-08 12:28:03 -080010 GLSharedGroup.cpp \
11 glUtils.cpp \
Lingfeng Yang8e2b6e02016-10-14 11:20:45 -070012 IndexRangeCache.cpp \
keunyoungb85b2752013-03-08 12:28:03 -080013 SocketStream.cpp \
14 TcpStream.cpp \
keunyoungb85b2752013-03-08 12:28:03 -080015
16### CodecCommon guest ##############################################
17$(call emugl-begin-static-library,libOpenglCodecCommon)
18
19LOCAL_SRC_FILES := $(commonSources)
20
21LOCAL_CFLAGS += -DLOG_TAG=\"eglCodecCommon\"
22
Ying Wangb2757f62013-04-09 21:44:20 -070023$(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog)
keunyoungb85b2752013-03-08 12:28:03 -080024$(call emugl-export,C_INCLUDES,$(LOCAL_PATH))
25$(call emugl-end-module)