• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
6        include $(addsuffix /Android.mk, $(addprefix $(call my-dir)/, mm-image-codec QCamera2))
7      endif
8      ifneq ($(filter msm8998,$(TARGET_BOARD_PLATFORM)),)
9        include $(call all-makefiles-under,$(call my-dir)/msm8998)
10      endif
11    endif
12  endif
13endif
14