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 \ |
François Gaffie | 036e1e9 | 2015-03-19 10:16:24 +0100 | [diff] [blame] | 11 | src/AudioPolicyMix.cpp \ |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 12 | src/AudioPatch.cpp \ |
| 13 | src/AudioInputDescriptor.cpp \ |
| 14 | src/AudioOutputDescriptor.cpp \ |
François Gaffie | 45ed3b0 | 2015-03-19 10:35:14 +0100 | [diff] [blame] | 15 | src/EffectDescriptor.cpp \ |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 16 | src/ConfigParsingUtils.cpp \ |
François Gaffie | df37269 | 2015-03-19 10:43:27 +0100 | [diff] [blame^] | 17 | src/SoundTriggerSession.cpp \ |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 18 | |
| 19 | LOCAL_SHARED_LIBRARIES := \ |
| 20 | libcutils \ |
| 21 | libutils \ |
| 22 | liblog \ |
| 23 | |
| 24 | LOCAL_C_INCLUDES += \ |
| 25 | $(LOCAL_PATH)/include \ |
François Gaffie | 53615e2 | 2015-03-19 09:24:12 +0100 | [diff] [blame] | 26 | $(TOPDIR)frameworks/av/services/audiopolicy/common/include \ |
François Gaffie | 98cc191 | 2015-03-18 17:52:40 +0100 | [diff] [blame] | 27 | |
| 28 | LOCAL_EXPORT_C_INCLUDE_DIRS := \ |
| 29 | $(LOCAL_PATH)/include |
| 30 | |
| 31 | LOCAL_MODULE := libaudiopolicycomponents |
| 32 | |
| 33 | include $(BUILD_STATIC_LIBRARY) |