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