This change provides required support to disable display module compilation along with all modules and supports module specific override to enable compilation if required. Change-Id: I38acdce4083e38245eb6285c99d5dbbd15911fbb Signed-off-by: Prabhanjan Kandula <quic_pkandula@quicinc.com>
13 lines
327 B
Makefile
13 lines
327 B
Makefile
# Android makefile for display kernel modules
|
|
DISPLAY_DLKM_ENABLE := true
|
|
ifeq ($(TARGET_KERNEL_DLKM_DISABLE), true)
|
|
ifeq ($(TARGET_KERNEL_DLKM_DISPLAY_OVERRIDE), false)
|
|
DISPLAY_DLKM_ENABLE := false
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(DISPLAY_DLKM_ENABLE), true)
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(LOCAL_PATH)/msm/Android.mk
|
|
endif
|