keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 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 \ |
Lingfeng Yang | 74e2929 | 2017-01-10 14:54:38 -0800 | [diff] [blame] | 8 | GLESTextureUtils.cpp \ |
Yahan Zhou | b7f0908 | 2016-03-10 11:45:02 -0800 | [diff] [blame] | 9 | ChecksumCalculator.cpp \ |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 10 | GLSharedGroup.cpp \ |
| 11 | glUtils.cpp \ |
Lingfeng Yang | 8e2b6e0 | 2016-10-14 11:20:45 -0700 | [diff] [blame] | 12 | IndexRangeCache.cpp \ |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 13 | SocketStream.cpp \ |
| 14 | TcpStream.cpp \ |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 15 | |
| 16 | ### CodecCommon guest ############################################## |
| 17 | $(call emugl-begin-static-library,libOpenglCodecCommon) |
| 18 | |
| 19 | LOCAL_SRC_FILES := $(commonSources) |
| 20 | |
| 21 | LOCAL_CFLAGS += -DLOG_TAG=\"eglCodecCommon\" |
| 22 | |
Ying Wang | b2757f6 | 2013-04-09 21:44:20 -0700 | [diff] [blame] | 23 | $(call emugl-export,SHARED_LIBRARIES,libcutils libutils liblog) |
keunyoung | b85b275 | 2013-03-08 12:28:03 -0800 | [diff] [blame] | 24 | $(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) |
| 25 | $(call emugl-end-module) |