85ff2df3a5
* Set TARGET_NO_HW_VSYNC to disable use of VSYNC Change-Id: I9c48f89ba6d4a39baf7c149717b13c83c0b7f3eb Conflicts: common.mk libhwcomposer/hwc.cpp
32 lines
847 B
Makefile
32 lines
847 B
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
|
|
|
|
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
|
|
|
|
ifeq ($(TARGET_USES_ION),true)
|
|
common_flags += -DUSE_ION
|
|
endif
|
|
|
|
ifeq ($(ARCH_ARM_HAVE_NEON),true)
|
|
common_flags += -D__ARM_HAVE_NEON
|
|
endif
|
|
|
|
ifeq ($(TARGET_NO_HW_VSYNC),true)
|
|
common_flags += -DNO_HW_VSYNC
|
|
endif
|