blob: 90a019f5567eecea376f522a7c48bf858f6082e4 [file] [log] [blame]
Naseer Ahmed4d35af82012-07-11 23:43:42 -07001#Common headers
Naseer Ahmedd68b47d2016-04-05 17:40:02 -04002display_top := $(call my-dir)
Naseer Ahmed30d3f1c2018-10-24 20:53:13 -04003
Naseer Ahmedb6b936d2016-08-05 16:23:32 -04004#Common C flags
Saurabh Shah546f77b2017-12-13 14:10:39 -08005common_flags := -Wno-missing-field-initializers
Ramakant Singhbaf3c502019-10-18 10:34:35 +05306common_flags += -Wconversion -Wall -Werror
Naseer Ahmed85020082017-05-17 14:36:46 -04007common_flags += -DUSE_GRALLOC1
Saurabh Shahf84c4122017-04-07 10:34:40 -07008ifeq ($(TARGET_IS_HEADLESS), true)
Naseer Ahmed4d78d032017-03-22 12:47:30 -04009 common_flags += -DTARGET_HEADLESS
10 LOCAL_CLANG := false
Saurabh Shah7d476ed2016-06-27 16:40:58 -070011endif
Naseer Ahmedb6b936d2016-08-05 16:23:32 -040012
Arun Kumar K.Rca196fc2016-12-07 19:28:30 -080013ifeq ($(TARGET_USES_COLOR_METADATA), true)
Naseer Ahmed4d78d032017-03-22 12:47:30 -040014 common_flags += -DUSE_COLOR_METADATA
Arun Kumar K.Rb2771bf2016-10-03 21:38:23 -070015endif
16
Naseer Ahmed4d78d032017-03-22 12:47:30 -040017ifeq ($(TARGET_USES_QCOM_BSP),true)
18 common_flags += -DQTI_BSP
Praveena Pachipulusu734118a2014-12-04 14:53:12 +053019endif
20
Naseer Ahmed4d35af82012-07-11 23:43:42 -070021ifeq ($(ARCH_ARM_HAVE_NEON),true)
22 common_flags += -D__ARM_HAVE_NEON
23endif
24
Shalaj Jain3c490412015-04-22 16:52:03 -070025ifeq ($(call is-board-platform-in-list, $(MASTER_SIDE_CP_TARGET_LIST)), true)
26 common_flags += -DMASTER_SIDE_CP
27endif
28
Naseer Ahmed4d78d032017-03-22 12:47:30 -040029use_hwc2 := false
30ifeq ($(TARGET_USES_HWC2), true)
31 use_hwc2 := true
32 common_flags += -DVIDEO_MODE_DEFER_RETIRE_FENCE
33endif
34
Naseer Ahmed87895932017-05-30 17:01:44 -040035ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
36 common_flags += -DUSER_DEBUG
37endif
38
Ramakant Singh80a15d72017-07-14 13:52:15 +053039ifeq ($(LLVM_SA), true)
40 common_flags += --compile-and-analyze --analyzer-perf --analyzer-Werror
41endif
42
Naseer Ahmed4d78d032017-03-22 12:47:30 -040043#Common libraries external to display HAL
44common_libs := liblog libutils libcutils libhardware
Naseer Ahmed4d35af82012-07-11 23:43:42 -070045common_deps :=
46kernel_includes :=
Saurabh Shah56f610d2012-08-07 15:27:06 -070047
Naseer Ahmedd68b47d2016-04-05 17:40:02 -040048ifeq ($(TARGET_COMPILE_WITH_MSM_KERNEL),true)
Naseer Ahmede7ff13f2013-04-15 20:42:08 -040049# This check is to pick the kernel headers from the right location.
50# If the macro above is defined, we make the assumption that we have the kernel
51# available in the build tree.
52# If the macro is not present, the headers are picked from hardware/qcom/msmXXXX
53# failing which, they are picked from bionic.
Naseer Ahmed4d35af82012-07-11 23:43:42 -070054 common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr
Liang Liu54cac892020-06-18 14:44:10 +080055 kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include \
56 $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include/display
Naseer Ahmed4d35af82012-07-11 23:43:42 -070057endif