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 GLESv2Validation.cpp \ 10 gl2_client_context.cpp \ 11 gl2_enc.cpp \ 12 gl2_entry.cpp \ 13 IOStream2.cpp \ 14 15LOCAL_CFLAGS += -DLOG_TAG=\"emuglGLESv2_enc\" 16LOCAL_CFLAGS += -Wno-unused-private-field 17 18 19$(call emugl-export,C_INCLUDES,$(LOCAL_PATH)) 20$(call emugl-import,libOpenglCodecCommon$(GOLDFISH_OPENGL_LIB_SUFFIX)) 21 22$(call emugl-end-module) 23 24 25