blob: 598bfefbd6add7ed743964438df3139fb01e2e76 [file] [log] [blame]
Liviu Dudau6d4d0142012-11-07 18:28:48 +00001# ifeq ($(strip $(BOARD_USES_TINY_AUDIO_HW)),true)
2
3LOCAL_PATH := $(call my-dir)
4
5include $(CLEAR_VARS)
6
7# Should change this so the enable variable gets used as the name?
8LOCAL_MODULE := audio.primary.vexpress
9LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/hw
10LOCAL_SRC_FILES := audio_hw.c
11LOCAL_C_INCLUDES += \
12 external/tinyalsa/include \
13 external/expat/lib \
14 system/media/audio_utils/include \
15 system/media/audio_effects/include
16LOCAL_SHARED_LIBRARIES := liblog libcutils libtinyalsa libaudioutils \
17 libdl libexpat
18LOCAL_MODULE_TAGS := eng
19
20include $(BUILD_SHARED_LIBRARY)
21
22# endif