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