1# TODO: Find a better way to separate build configs for ADP vs non-ADP devices 2ifneq ($(TARGET_BOARD_AUTO),true) 3 ifneq ($(strip $(USE_CAMERA_STUB)),true) 4 ifneq ($(BUILD_TINY_ANDROID),true) 5 ifneq ($(USE_VR_CAMERA_HAL), true) 6 ifneq ($(filter msm8998,$(TARGET_BOARD_PLATFORM)),) 7 include $(call all-makefiles-under,$(call my-dir)/msm8998) 8 endif 9 endif 10 endif 11 endif 12endif 13