This is the host renderer executable. It is a small process which just calls into libOpenglRender library. The process is invoked through the initOpenGLRenderer function of libOpenglRenderer. Change-Id: I85af075b5eb751ffb9543ecbd8e7fc155054f146
27 lines
708 B
Makefile
27 lines
708 B
Makefile
LOCAL_PATH:=$(call my-dir)
|
|
|
|
# host renderer process ###########################
|
|
include $(CLEAR_VARS)
|
|
|
|
emulatorOpengl := $(LOCAL_PATH)/../..
|
|
|
|
LOCAL_MODULE := emulator_renderer
|
|
LOCAL_MODULE_TAGS := debug
|
|
|
|
LOCAL_SRC_FILES := \
|
|
main.cpp
|
|
|
|
LOCAL_CFLAGS += -g -O0
|
|
|
|
LOCAL_C_INCLUDES := $(emulatorOpengl)/host/include \
|
|
$(emulatorOpengl)/host/include/libOpenglRender \
|
|
$(emulatorOpengl)/shared/OpenglOsUtils \
|
|
$(emulatorOpengl)/shared/OpenglCodecCommon \
|
|
$(emulatorOpengl)/host/libs/libOpenglRender
|
|
|
|
LOCAL_SHARED_LIBRARIES := libOpenglRender \
|
|
libGLESv1_dec \
|
|
lib_renderControl_dec
|
|
|
|
include $(BUILD_HOST_EXECUTABLE)
|