Indranil Chakraborty | 36e686a | 2018-04-05 12:05:02 +0530 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
Manu Prasad | 1e18ad9 | 2020-01-21 15:30:58 +0530 | [diff] [blame] | 2 | |
| 3 | #Disable WFD for selected 32-bit targets |
| 4 | ifeq ($(call is-board-platform,bengal),true) |
| 5 | ifeq ($(TARGET_BOARD_SUFFIX),_32) |
| 6 | WFD_DISABLE_PLATFORM_LIST := bengal |
| 7 | endif |
| 8 | endif |
| 9 | |
| 10 | ifneq ($(call is-board-platform-in-list,$(WFD_DISABLE_PLATFORM_LIST)),true) |
Manu Prasad | fafdcd5 | 2020-04-10 13:29:40 +0530 | [diff] [blame] | 11 | ifneq ($(TARGET_HAS_LOW_RAM), true) |
Indranil Chakraborty | 36e686a | 2018-04-05 12:05:02 +0530 | [diff] [blame] | 12 | include $(call all-makefiles-under, $(LOCAL_PATH)) |
Manu Prasad | 1e18ad9 | 2020-01-21 15:30:58 +0530 | [diff] [blame] | 13 | endif |
Manu Prasad | fafdcd5 | 2020-04-10 13:29:40 +0530 | [diff] [blame] | 14 | endif |