François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | |
| 5 | LOCAL_SRC_FILES:= \ |
| 6 | src/DeviceDescriptor.cpp \ |
| 7 | src/AudioGain.cpp \ |
| 8 | src/HwModule.cpp \ |
| 9 | src/IOProfile.cpp \ |
| 10 | src/AudioPort.cpp \ |
| 11 | src/AudioPatch.cpp \ |
| 12 | src/AudioInputDescriptor.cpp \ |
| 13 | src/AudioOutputDescriptor.cpp \ |
| 14 | src/ConfigParsingUtils.cpp \ |
| 15 | |
| 16 | LOCAL_SHARED_LIBRARIES := \ |
| 17 | libcutils \ |
| 18 | libutils \ |
| 19 | liblog \ |
| 20 | |
| 21 | LOCAL_C_INCLUDES += \ |
| 22 | $(LOCAL_PATH)/include \ |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame^] | 23 | $(TOPDIR)frameworks/av/services/audiopolicy/common/include \ |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 24 | |
| 25 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 26 | $(LOCAL_PATH)/include |
| 27 | |
| 28 | LOCAL_MODULE := libaudiopolicycomponents |
| 29 | |
| 30 | include $(BUILD_STATIC_LIBRARY) |