You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
626 B
16 lines
626 B
# TODO: Find a better way to separate build configs for ADP vs non-ADP devices |
|
ifneq ($(TARGET_BOARD_AUTO),true) |
|
ifneq ($(filter msm8960 msm8226 msm8x26 msm8x84 msm8084 msm8992 msm8994 msm8996 msm8909 msm8952 msm8998,$(TARGET_BOARD_PLATFORM)),) |
|
|
|
MY_LOCAL_PATH := $(call my-dir) |
|
|
|
ifeq ($(BOARD_USES_LEGACY_ALSA_AUDIO),true) |
|
include $(MY_LOCAL_PATH)/legacy/Android.mk |
|
else |
|
include $(MY_LOCAL_PATH)/hal/Android.mk |
|
include $(MY_LOCAL_PATH)/voice_processing/Android.mk |
|
include $(MY_LOCAL_PATH)/visualizer/Android.mk |
|
include $(MY_LOCAL_PATH)/post_proc/Android.mk |
|
endif |
|
endif |
|
endif
|
|
|