1LOCAL_PATH := $(call my-dir) 2# TODO: Find a better way to separate build configs for ADP vs non-ADP devices 3ifneq ($(BOARD_IS_AUTOMOTIVE),true) 4 ifneq ($(filter msm8x27 msm8226,$(TARGET_BOARD_PLATFORM)),) 5 include $(call all-named-subdir-makefiles,msm8960) 6 else ifneq ($(filter msm8994,$(TARGET_BOARD_PLATFORM)),) 7 include $(call all-named-subdir-makefiles,msm8992) 8 else ifneq ($(filter msm8909,$(TARGET_BOARD_PLATFORM)),) 9 ifeq ($(TARGET_SUPPORTS_QCOM_3100),true) 10 include $(call all-named-subdir-makefiles,msm8909w_3100) 11 else 12 include $(call all-named-subdir-makefiles,msm8909) 13 endif 14 else ifneq ($(wildcard $(LOCAL_PATH)/$(TARGET_BOARD_PLATFORM)),) 15 include $(call all-named-subdir-makefiles,$(TARGET_BOARD_PLATFORM)) 16 endif 17endif 18