Add sync pt implementation. Add genlock and sync pt under conditional compilation flags. Change-Id: I32fb7f6051ccc706662152e90ac15b6b6743f897 Signed-off-by: Iliyan Malchev <malchev@google.com>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
#Common headers
|
|
common_includes := hardware/qcom/display/libgralloc
|
|
common_includes += hardware/qcom/display/libgenlock
|
|
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
|
|
|
|
#Common C flags
|
|
common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers
|
|
common_flags += -Werror
|
|
|
|
#TODO
|
|
#ifeq ($(call is-vendor-board-platform,QCOM),true)
|
|
ifeq ($(TARGET_BOARD_PLATFORM), msm8960)
|
|
common_flags += -DUSE_FENCE_SYNC
|
|
endif
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
|
common_flags += -D__ARM_HAVE_NEON
|
|
endif
|
|
|
|
common_deps :=
|
|
kernel_includes :=
|
|
|
|
#Kernel includes. Not being executed on JB+
|
|
ifeq ($(call is-vendor-board-platform,QCOM),true)
|
|
common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
|
|
kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include
|
|
endif
|