mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
15 lines
331 B
Makefile
15 lines
331 B
Makefile
|
LOCAL_PATH := $(call my-dir)
|
||
|
|
||
|
include $(CLEAR_VARS)
|
||
|
|
||
|
LOCAL_AUDIO_PATH :=$(LOCAL_PATH)
|
||
|
|
||
|
ifeq ($(BOARD_USE_ALP_AUDIO), true)
|
||
|
include $(LOCAL_AUDIO_PATH)/srp/alp/Android.mk
|
||
|
else
|
||
|
ifeq ($(USE_ULP_AUDIO), true)
|
||
|
include $(LOCAL_AUDIO_PATH)/srp/ulp/Android.mk
|
||
|
include $(LOCAL_AUDIO_PATH)/srp/libsa_jni/Android.mk
|
||
|
endif
|
||
|
endif
|