Skip to content
Snippets Groups Projects
Android.mk 374 B
Newer Older
LOCAL_PATH := $(call my-dir)
Indranil's avatar
Indranil committed

#Disable WFD for selected 32-bit targets
ifeq ($(call is-board-platform,bengal),true)
ifeq ($(TARGET_BOARD_SUFFIX),_32)
WFD_DISABLE_PLATFORM_LIST := bengal
endif
endif

ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true)
ifneq ($(TARGET_HAS_LOW_RAM), true)
include $(call all-makefiles-under, $(LOCAL_PATH))
Indranil's avatar
Indranil committed
endif