From 32c3dbf4a4915078eae6861b59e9c52caba72cd1 Mon Sep 17 00:00:00 2001 From: Chih-Wei Huang Date: Wed, 29 Apr 2015 17:13:18 +0800 Subject: remove unnecessary paths in LOCAL_C_INCLUDES Now the include paths are imported automatically from libdrm*. --- Android.mk | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/Android.mk b/Android.mk index 18b02c4..4aecfb0 100644 --- a/Android.mk +++ b/Android.mk @@ -89,10 +89,6 @@ LOCAL_SRC_FILES := \ gralloc_drm.c \ gralloc_drm_kms.c -LOCAL_C_INCLUDES := \ - external/drm \ - external/drm/include/drm - LOCAL_SHARED_LIBRARIES := \ libdrm \ liblog \ @@ -101,28 +97,24 @@ LOCAL_SHARED_LIBRARIES := \ ifneq ($(filter $(freedreno_drivers), $(DRM_GPU_DRIVERS)),) LOCAL_SRC_FILES += gralloc_drm_freedreno.c -LOCAL_C_INCLUDES += external/drm/freedreno LOCAL_CFLAGS += -DENABLE_FREEDRENO LOCAL_SHARED_LIBRARIES += libdrm_freedreno endif ifneq ($(filter $(intel_drivers), $(DRM_GPU_DRIVERS)),) LOCAL_SRC_FILES += gralloc_drm_intel.c -LOCAL_C_INCLUDES += external/drm/intel LOCAL_CFLAGS += -DENABLE_INTEL LOCAL_SHARED_LIBRARIES += libdrm_intel endif ifneq ($(filter $(radeon_drivers), $(DRM_GPU_DRIVERS)),) LOCAL_SRC_FILES += gralloc_drm_radeon.c -LOCAL_C_INCLUDES += external/drm/radeon LOCAL_CFLAGS += -DENABLE_RADEON LOCAL_SHARED_LIBRARIES += libdrm_radeon endif ifneq ($(filter $(nouveau_drivers), $(DRM_GPU_DRIVERS)),) LOCAL_SRC_FILES += gralloc_drm_nouveau.c -LOCAL_C_INCLUDES += external/drm/nouveau LOCAL_CFLAGS += -DENABLE_NOUVEAU LOCAL_SHARED_LIBRARIES += libdrm_nouveau endif @@ -168,12 +160,9 @@ include $(CLEAR_VARS) LOCAL_SRC_FILES := \ gralloc.c \ -LOCAL_C_INCLUDES := \ - external/drm \ - external/drm/include/drm \ - LOCAL_SHARED_LIBRARIES := \ libgralloc_drm \ + libdrm \ liblog \ # for glFlush/glFinish -- cgit v1.1