• 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 ($(USE_VR_CAMERA_HAL), true)
6        ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
7          include $(addsuffix /Android.mk, $(addprefix $(call my-dir)/, mm-image-codec QCamera2))
8        endif
9      endif
10    endif
11  endif
12endif
13