forked from CyanogenMod/android_hardware_qcom_audio
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAndroid.mk
More file actions
27 lines (24 loc) · 752 Bytes
/
Android.mk
File metadata and controls
27 lines (24 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
ifneq ($(TARGET_PROVIDES_LIBAUDIO),true)
ifneq ($(BOARD_USES_AUDIO_LEGACY),true)
ifeq ($(BOARD_USES_QCOM_HARDWARE),true)
AUDIO_HW_ROOT := $(call my-dir)
ifeq ($(TARGET_BOARD_PLATFORM),msm8960)
include $(AUDIO_HW_ROOT)/alsa_sound/Android.mk
include $(AUDIO_HW_ROOT)/libalsa-intf/Android.mk
endif
ifeq ($(TARGET_BOARD_PLATFORM),msm7x27a)
include $(AUDIO_HW_ROOT)/msm7627a/Android.mk
endif
ifeq ($(TARGET_BOARD_PLATFORM),msm7x30)
include $(AUDIO_HW_ROOT)/msm7x30/Android.mk
endif
ifeq ($(TARGET_BOARD_PLATFORM),msm8660)
include $(AUDIO_HW_ROOT)/msm8660/Android.mk
include $(AUDIO_HW_ROOT)/mm-audio/Android.mk
endif
ifeq ($(TARGET_BOARD_PLATFORM),msm8960)
include $(AUDIO_HW_ROOT)/mm-audio/Android.mk
endif
endif
endif
endif