Files
android_development/tools/emulator/opengl/host/renderer/Android.mk
Guy Zadikario 555d9bece7 emulator opengl: the host renderer executable.
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
2011-04-16 10:45:48 +03:00

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)