You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.5 KiB
53 lines
1.5 KiB
4 months ago
|
#Common headers
|
||
|
common_includes := $(LOCAL_PATH)/../libgralloc
|
||
|
common_includes += $(LOCAL_PATH)/../liboverlay
|
||
|
common_includes += $(LOCAL_PATH)/../libcopybit
|
||
|
common_includes += $(LOCAL_PATH)/../libqdutils
|
||
|
common_includes += $(LOCAL_PATH)/../libhwcomposer
|
||
|
common_includes += $(LOCAL_PATH)/../libexternal
|
||
|
common_includes += $(LOCAL_PATH)/../libqservice
|
||
|
common_includes += $(LOCAL_PATH)/../libvirtual
|
||
|
|
||
|
ifeq ($(TARGET_USES_POST_PROCESSING),true)
|
||
|
common_flags += -DUSES_POST_PROCESSING
|
||
|
common_includes += $(TARGET_OUT_HEADERS)/pp/inc
|
||
|
endif
|
||
|
|
||
|
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
|
||
|
#TODO: Add -Werror back once all the current warnings are fixed
|
||
|
common_flags += -Wconversion -Wall
|
||
|
|
||
|
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
||
|
common_flags += -D__ARM_HAVE_NEON
|
||
|
endif
|
||
|
|
||
|
ifneq ($(filter msm8974 msm8226 msm8610 msm8084 msm8916, \
|
||
|
$(TARGET_BOARD_PLATFORM)),)
|
||
|
common_flags += -DVENUS_COLOR_FORMAT
|
||
|
common_flags += -DMDSS_TARGET
|
||
|
endif
|
||
|
|
||
|
ifeq ($(DISPLAY_DEBUG_SWAPINTERVAL),true)
|
||
|
common_flags += -DDEBUG_SWAPINTERVAL
|
||
|
endif
|
||
|
|
||
|
common_flags += -D__STDC_FORMAT_MACROS
|
||
|
|
||
|
common_deps :=
|
||
|
kernel_includes :=
|
||
|
|
||
|
# Executed only on QCOM BSPs
|
||
|
ifeq ($(TARGET_USES_QCOM_BSP),true)
|
||
|
# Enable QCOM Display features
|
||
|
common_flags += -DQCOM_BSP
|
||
|
endif
|
||
|
ifneq ($(call is-platform-sdk-version-at-least,18),true)
|
||
|
common_flags += -DANDROID_JELLYBEAN_MR1=1
|
||
|
endif
|