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