272e6ecb11
Fix heap corruption in overlay clients, caused by missing compilation flags. All libraries using overlayLib.h should have flags used for conditional member declaration in overlay. CRs-fixed: 342959 (cherry picked from commit 42120b29500560ebedbd897e2e7adf7369eb0a21) Change-Id: Idf613861c4dc67e96ecadf7ce7e37472cb4e4daf
43 lines
1.4 KiB
Makefile
43 lines
1.4 KiB
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
# HAL module implemenation, not prelinked and stored in
|
|
# hw/<OVERLAY_HARDWARE_MODULE_ID>.<ro.product.board>.so
|
|
include $(CLEAR_VARS)
|
|
LOCAL_PRELINK_MODULE := false
|
|
LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libEGL libhardware libutils liboverlay
|
|
LOCAL_SHARED_LIBRARIES += libgenlock libQcomUI libmemalloc
|
|
|
|
LOCAL_SRC_FILES := \
|
|
hwcomposer.cpp \
|
|
external_display_only.h
|
|
|
|
LOCAL_MODULE := hwcomposer.$(TARGET_BOARD_PLATFORM)
|
|
LOCAL_CFLAGS:= -DLOG_TAG=\"$(TARGET_BOARD_PLATFORM).hwcomposer\" -DDEBUG_CALC_FPS
|
|
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libgralloc
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/liboverlay
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libcopybit
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libgenlock
|
|
LOCAL_C_INCLUDES += hardware/qcom/display/libqcomui
|
|
|
|
ifeq ($(TARGET_QCOM_HDMI_OUT),true)
|
|
LOCAL_CFLAGS += -DHDMI_DUAL_DISPLAY
|
|
LOCAL_CFLAGS += -DQCOM_HDMI_OUT
|
|
endif
|
|
ifeq ($(TARGET_USES_OVERLAY),true)
|
|
LOCAL_CFLAGS += -DUSE_OVERLAY
|
|
endif
|
|
ifeq ($(TARGET_HAVE_BYPASS),true)
|
|
LOCAL_CFLAGS += -DCOMPOSITION_BYPASS
|
|
endif
|
|
ifeq ($(TARGET_USE_HDMI_AS_PRIMARY),true)
|
|
LOCAL_CFLAGS += -DHDMI_AS_PRIMARY
|
|
endif
|
|
ifeq ($(TARGET_USES_POST_PROCESSING),true)
|
|
LOCAL_CFLAGS += -DUSES_POST_PROCESSING
|
|
LOCAL_C_INCLUDES += $(TARGET_OUT_HEADERS)/pp/inc
|
|
endif
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|