Home | History | Annotate | Download | only in msm8084
      1 #Common headers
      2 common_includes := $(LOCAL_PATH)/../libgralloc
      3 common_includes += $(LOCAL_PATH)/../liboverlay
      4 common_includes += $(LOCAL_PATH)/../libcopybit
      5 common_includes += $(LOCAL_PATH)/../libqdutils
      6 common_includes += $(LOCAL_PATH)/../libhwcomposer
      7 common_includes += $(LOCAL_PATH)/../libexternal
      8 common_includes += $(LOCAL_PATH)/../libqservice
      9 common_includes += $(LOCAL_PATH)/../libvirtual
     10 
     11 ifeq ($(TARGET_USES_POST_PROCESSING),true)
     12     common_flags     += -DUSES_POST_PROCESSING
     13     common_includes  += $(TARGET_OUT_HEADERS)/pp/inc
     14 endif
     15 
     16 common_header_export_path := qcom/display
     17 
     18 #Common libraries external to display HAL
     19 common_libs := liblog libutils libcutils libhardware
     20 
     21 #Common C flags
     22 common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers
     23 #TODO: Add -Werror back once all the current warnings are fixed
     24 common_flags += -Wconversion -Wall
     25 
     26 ifeq ($(ARCH_ARM_HAVE_NEON),true)
     27     common_flags += -D__ARM_HAVE_NEON
     28 endif
     29 
     30 ifneq ($(filter msm8974 msm8226 msm8610 msm8084 msm8916, \
     31        $(TARGET_BOARD_PLATFORM)),)
     32     common_flags += -DVENUS_COLOR_FORMAT
     33     common_flags += -DMDSS_TARGET
     34 endif
     35 
     36 ifeq ($(DISPLAY_DEBUG_SWAPINTERVAL),true)
     37     common_flags += -DDEBUG_SWAPINTERVAL
     38 endif
     39 
     40 common_flags += -D__STDC_FORMAT_MACROS
     41 
     42 common_deps  :=
     43 kernel_includes :=
     44 
     45 # Executed only on QCOM BSPs
     46 ifeq ($(TARGET_USES_QCOM_BSP),true)
     47 # Enable QCOM Display features
     48     common_flags += -DQCOM_BSP
     49 endif
     50 ifneq ($(call is-platform-sdk-version-at-least,18),true)
     51     common_flags += -DANDROID_JELLYBEAN_MR1=1
     52 endif
     53