Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 1 | #Common headers |
Naseer Ahmed | 07bded6 | 2014-04-11 19:46:04 -0400 | [diff] [blame] | 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 |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 9 | |
| 10 | ifeq ($(TARGET_USES_POST_PROCESSING),true) |
| 11 | common_flags += -DUSES_POST_PROCESSING |
Naseer Ahmed | 58780b9 | 2013-07-29 17:41:40 -0400 | [diff] [blame] | 12 | common_includes += $(TARGET_OUT_HEADERS)/pp/inc |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 13 | endif |
| 14 | |
Naseer Ahmed | c55d60a | 2013-07-11 17:42:26 -0400 | [diff] [blame] | 15 | common_header_export_path := qcom/display |
| 16 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 17 | #Common libraries external to display HAL |
| 18 | common_libs := liblog libutils libcutils libhardware |
| 19 | |
| 20 | #Common C flags |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame] | 21 | common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers |
Naseer Ahmed | 9eb5e09 | 2014-09-25 13:24:44 -0400 | [diff] [blame^] | 22 | common_flags += -Wconversion -Wall -Werror |
Naseer Ahmed | b16edac | 2012-07-15 23:56:21 -0700 | [diff] [blame] | 23 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 24 | ifeq ($(ARCH_ARM_HAVE_NEON),true) |
| 25 | common_flags += -D__ARM_HAVE_NEON |
| 26 | endif |
| 27 | |
Saurabh Shah | c9e2157 | 2013-07-16 17:41:48 -0700 | [diff] [blame] | 28 | ifeq ($(call is-board-platform-in-list, msm8974 msm8226 msm8610 apq8084 \ |
Jeykumar Sankaran | 9dc0cba | 2014-06-05 16:52:44 -0700 | [diff] [blame] | 29 | mpq8092 msm_bronze msm8916 msm8994), true) |
Sushil Chauhan | c6bd6d9 | 2012-12-12 12:33:01 -0800 | [diff] [blame] | 30 | common_flags += -DVENUS_COLOR_FORMAT |
Sushil Chauhan | 07a2c76 | 2013-03-06 15:36:49 -0800 | [diff] [blame] | 31 | common_flags += -DMDSS_TARGET |
Sushil Chauhan | c6bd6d9 | 2012-12-12 12:33:01 -0800 | [diff] [blame] | 32 | endif |
| 33 | |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 34 | common_deps := |
| 35 | kernel_includes := |
Saurabh Shah | 56f610d | 2012-08-07 15:27:06 -0700 | [diff] [blame] | 36 | |
Naseer Ahmed | 7421472 | 2013-02-09 08:11:36 -0500 | [diff] [blame] | 37 | # Executed only on QCOM BSPs |
Naseer Ahmed | e7ff13f | 2013-04-15 20:42:08 -0400 | [diff] [blame] | 38 | ifeq ($(TARGET_USES_QCOM_BSP),true) |
Arun Kumar K.R | 8e6b61c | 2013-06-25 12:18:01 -0700 | [diff] [blame] | 39 | # Enable QCOM Display features |
Naseer Ahmed | 7421472 | 2013-02-09 08:11:36 -0500 | [diff] [blame] | 40 | common_flags += -DQCOM_BSP |
Ramkumar Radhakrishnan | ad938e6 | 2013-07-11 19:24:09 -0700 | [diff] [blame] | 41 | endif |
Arun Kumar K.R | 8e6b61c | 2013-06-25 12:18:01 -0700 | [diff] [blame] | 42 | ifneq ($(call is-platform-sdk-version-at-least,18),true) |
Arun Kumar K.R | 7292155 | 2013-06-12 19:18:37 -0700 | [diff] [blame] | 43 | common_flags += -DANDROID_JELLYBEAN_MR1=1 |
| 44 | endif |
Naseer Ahmed | e7ff13f | 2013-04-15 20:42:08 -0400 | [diff] [blame] | 45 | ifeq ($(call is-vendor-board-platform,QCOM),true) |
| 46 | # This check is to pick the kernel headers from the right location. |
| 47 | # If the macro above is defined, we make the assumption that we have the kernel |
| 48 | # available in the build tree. |
| 49 | # If the macro is not present, the headers are picked from hardware/qcom/msmXXXX |
| 50 | # failing which, they are picked from bionic. |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 51 | common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 52 | kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 53 | endif |