Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 1 | #Common headers |
| 2 | common_includes := hardware/qcom/display/libgralloc |
| 3 | common_includes += hardware/qcom/display/libgenlock |
| 4 | common_includes += hardware/qcom/display/liboverlay |
| 5 | common_includes += hardware/qcom/display/libqdutils |
| 6 | |
| 7 | ifeq ($(TARGET_USES_POST_PROCESSING),true) |
| 8 | common_flags += -DUSES_POST_PROCESSING |
| 9 | common_includes += $(TARGET_OUT_HEADERS)/pp/inc |
| 10 | endif |
| 11 | |
| 12 | |
| 13 | #Common libraries external to display HAL |
| 14 | common_libs := liblog libutils libcutils libhardware |
| 15 | |
| 16 | #Common C flags |
Naseer Ahmed | 01d3fd3 | 2012-07-14 21:08:13 -0700 | [diff] [blame^] | 17 | common_flags := -DDEBUG_CALC_FPS -Wno-missing-field-initializers |
Naseer Ahmed | 4d35af8 | 2012-07-11 23:43:42 -0700 | [diff] [blame] | 18 | ifeq ($(ARCH_ARM_HAVE_NEON),true) |
| 19 | common_flags += -D__ARM_HAVE_NEON |
| 20 | endif |
| 21 | |
| 22 | common_deps := |
| 23 | kernel_includes := |
| 24 | #Kernel includes |
| 25 | ifeq ($(call is-vendor-board-platform,QCOM),true) |
| 26 | common_deps += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 27 | kernel_includes += $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 28 | endif |
| 29 | |
| 30 | |