forked from CyanogenMod/android_hardware_qcom_display
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.mk
56 lines (44 loc) · 1.53 KB
/
common.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#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
#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
ifeq ($(TARGET_NO_HW_VSYNC),true)
common_flags += -DNO_HW_VSYNC
endif
ifeq ($(TARGET_NO_HW_OVERLAY),true)
common_flags += -DNO_HW_OVERLAY
endif
ifneq ($(BOARD_HAVE_HDMI_SUPPORT),false)
common_flags += -DBOARD_USES_HDMI
endif
ifneq ($(TARGET_USES_ION), false)
common_flags += -DUSE_ION
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