1LOCAL_PATH := $(call my-dir) 2 3### GLESv2_enc Encoder ########################################### 4$(call emugl-begin-shared-library,libGLESv2_enc) 5 6LOCAL_SRC_FILES := \ 7 GL2EncoderUtils.cpp \ 8 GL2Encoder.cpp \ 9 gl2_client_context.cpp \ 10 gl2_enc.cpp \ 11 gl2_entry.cpp 12 13LOCAL_CFLAGS += -DLOG_TAG=\"emuglGLESv2_enc\" 14 15$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 16$(call emugl-import,libOpenglCodecCommon) 17 18$(call emugl-end-module) 19 20 21