| LOCAL_PATH := $(call my-dir) |
| include $(CLEAR_VARS) |
| |
| LOCAL_MODULE := hwcomposer.$(TARGET_BOARD_PLATFORM) |
| LOCAL_MODULE_RELATIVE_PATH := hw |
| LOCAL_MODULE_TAGS := optional |
| LOCAL_C_INCLUDES := hardware/qcom/display/displayengine/include/ \ |
| hardware/qcom/display/libgralloc/ \ |
| hardware/qcom/display/libqservice/ \ |
| hardware/qcom/display/libqdutils/ |
| LOCAL_CFLAGS := -Wno-missing-field-initializers -Wno-unused-parameter \ |
| -Wconversion -Wall -Werror \ |
| -DLOG_TAG=\"SDE\" |
| |
| # TODO: Move this to the common makefile |
| ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)), true) |
| LOCAL_CFLAGS += -DMASTER_SIDE_CP |
| endif |
| |
| LOCAL_SHARED_LIBRARIES := libsde libqservice libbinder libhardware libhardware_legacy \ |
| libutils libcutils libsync libmemalloc libqdutils |
| LOCAL_SRC_FILES := hwc_session.cpp \ |
| hwc_display.cpp \ |
| hwc_display_primary.cpp \ |
| hwc_display_external.cpp \ |
| hwc_display_virtual.cpp \ |
| hwc_debugger.cpp \ |
| hwc_buffer_allocator.cpp \ |
| hwc_buffer_sync_handler.cpp |
| |
| include $(BUILD_SHARED_LIBRARY) |