| #Common headers |
| common_includes := hardware/qcom/display/libgralloc |
| common_includes += hardware/qcom/display/liboverlay |
| common_includes += hardware/qcom/display/libcopybit |
| common_includes += hardware/qcom/display/libqdutils |
| common_includes += hardware/qcom/display/libhwcomposer |
| common_includes += hardware/qcom/display/libexternal |
| common_includes += hardware/qcom/display/libqservice |
| |
| ifeq ($(TARGET_USES_POST_PROCESSING),true) |
| common_flags += -DUSES_POST_PROCESSING |
| common_includes += $(TARGET_OUT_HEADERS)/pp/inc |
| endif |
| |
| #Common libraries external to display HAL |
| common_libs := liblog libutils libcutils libhardware |
| |
| ifeq ($(TARGET_USES_POST_PROCESSING),true) |
| common_libs += libmm-abl |
| endif |
| |
| #Common C flags |
| common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers |
| common_flags += -Werror |
| |
| ifeq ($(ARCH_ARM_HAVE_NEON),true) |
| common_flags += -D__ARM_HAVE_NEON |
| endif |
| |
| ifeq ($(call is-board-platform-in-list, msm8974 msm8226 msm8610 apq8084), true) |
| common_flags += -DVENUS_COLOR_FORMAT |
| common_flags += -DMDSS_TARGET |
| endif |
| |
| common_deps := |
| kernel_includes := |
| |
| # Executed only on QCOM BSPs |
| ifeq ($(TARGET_USES_QCOM_BSP),true) |
| # On jb_mr2- dont enable QCOM Display features |
| ifneq ($(call is-platform-sdk-version-at-least,18),true) |
| # This flag is used to compile out any features that depend on framework changes |
| common_flags += -DQCOM_BSP |
| common_flags += -DANDROID_JELLYBEAN_MR1=1 |
| endif |
| endif |
| ifeq ($(call is-vendor-board-platform,QCOM),true) |
| # 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 |