LOCAL_PATH := $(call my-dir)
PREBUILT_DIR_PATH := $(LOCAL_PATH)

ifeq ($(call is-board-platform,kona),true)
   -include $(PREBUILT_DIR_PATH)/target/product/kona/Android.mk
endif

ifeq ($(call is-board-platform,lito),true)
   -include $(PREBUILT_DIR_PATH)/target/product/lito/Android.mk
endif

-include $(PREBUILT_DIR_PATH)/target/product/qssi/Android.mk
ifeq ($(strip $(TARGET_PRODUCT)),qssi)
   ifneq ($(strip $(TARGET_PARENT_VENDOR)),msmnile)
      -include $(PREBUILT_DIR_PATH)/target/product/$(TARGET_PARENT_VENDOR)/Android.mk
   endif
endif

-include $(sort $(wildcard $(PREBUILT_DIR_PATH)/*/*/Android.mk))
