62 lines
2.3 KiB
Makefile
62 lines
2.3 KiB
Makefile
#Common headers
|
|
common_includes := $(call project-path-for,qcom-display)/libgralloc
|
|
common_includes += $(call project-path-for,qcom-display)/liboverlay
|
|
common_includes += $(call project-path-for,qcom-display)/libcopybit
|
|
common_includes += $(call project-path-for,qcom-display)/libqdutils
|
|
common_includes += $(call project-path-for,qcom-display)/libhwcomposer
|
|
common_includes += $(call project-path-for,qcom-display)/libexternal
|
|
common_includes += $(call project-path-for,qcom-display)/libqservice
|
|
common_includes += $(call project-path-for,qcom-display)/libvirtual
|
|
common_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
|
|
|
|
common_header_export_path := qcom/display
|
|
|
|
#Common libraries external to display HAL
|
|
common_libs := liblog libutils libcutils libhardware
|
|
|
|
#Common C flags
|
|
common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers
|
|
common_flags += -Werror -Wno-error=unused-parameter
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
|
common_flags += -D__ARM_HAVE_NEON
|
|
endif
|
|
|
|
ifneq ($(filter msm8974 msm8x74 msm8226 msm8x26,$(TARGET_BOARD_PLATFORM)),)
|
|
# TODO: This define makes us pick a few inline functions
|
|
# from the kernel header media/msm_media_info.h. However,
|
|
# the bionic clean_headers utility scrubs them out.
|
|
# Figure out a way to import those macros correctly
|
|
# common_flags += -DVENUS_COLOR_FORMAT
|
|
common_flags += -DMDSS_TARGET
|
|
endif
|
|
|
|
ifeq ($(DISPLAY_DEBUG_SWAPINTERVAL),true)
|
|
common_flags += -DDEBUG_SWAPINTERVAL
|
|
endif
|
|
|
|
common_deps :=
|
|
kernel_includes :=
|
|
|
|
# Executed only on QCOM BSPs
|
|
ifeq ($(TARGET_USES_QCOM_BSP),true)
|
|
# This flag is used to compile out any features that depend on framework changes
|
|
common_flags += -DQCOM_BSP
|
|
endif
|
|
ifneq (,$(filter $(QCOM_BOARD_PLATFORMS),$(TARGET_BOARD_PLATFORM)))
|
|
# This check is to pick the kernel headers from the right location.
|
|
# If the macro above is defined, we make the assumption that we have the kernel
|
|
# available in the build tree.
|
|
# If the macro is not present, the headers are picked from hardware/qcom/msmXXXX
|
|
# failing which, they are picked from bionic.
|
|
common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
|
|
kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
|
|
endif
|
|
|
|
ifeq ($(TARGET_DISPLAY_USE_RETIRE_FENCE),true)
|
|
common_flags += -DUSE_RETIRE_FENCE
|
|
endif
|
|
|
|
ifneq ($(TARGET_DISPLAY_INSECURE_MM_HEAP),true)
|
|
common_flags += -DSECURE_MM_HEAP
|
|
endif
|