19 lines
648 B
Makefile
19 lines
648 B
Makefile
ifeq ($(call my-dir),$(call project-path-for,qcom-camera))
|
|
|
|
ifneq ($(strip $(USE_DEVICE_SPECIFIC_CAMERA)),true)
|
|
# TODO: Find a better way to separate build configs for ADP vs non-ADP devices
|
|
ifneq ($(TARGET_BOARD_AUTO),true)
|
|
ifneq ($(strip $(USE_CAMERA_STUB)),true)
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),)
|
|
include $(addsuffix /Android.mk, $(addprefix $(call my-dir)/, mm-image-codec QCamera2))
|
|
endif
|
|
ifneq ($(filter msm8998,$(TARGET_BOARD_PLATFORM)),)
|
|
include $(call all-makefiles-under,$(call my-dir)/msm8998)
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
endif
|