Android.mk revision 112b0af826aeca45855690b9c105b2cdf9938bbe
1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= \
6    src/DeviceDescriptor.cpp \
7    src/AudioGain.cpp \
8    src/StreamDescriptor.cpp \
9    src/HwModule.cpp \
10    src/IOProfile.cpp \
11    src/AudioPort.cpp \
12    src/AudioProfile.cpp \
13    src/AudioPolicyMix.cpp \
14    src/AudioPatch.cpp \
15    src/AudioInputDescriptor.cpp \
16    src/AudioOutputDescriptor.cpp \
17    src/EffectDescriptor.cpp \
18    src/ConfigParsingUtils.cpp \
19    src/SoundTriggerSession.cpp \
20    src/SessionRoute.cpp \
21    src/AudioSourceDescriptor.cpp \
22    src/TypeConverter.cpp \
23    src/AudioSession.cpp
24
25LOCAL_SHARED_LIBRARIES := \
26    libcutils \
27    libutils \
28    liblog \
29
30LOCAL_C_INCLUDES += \
31    $(LOCAL_PATH)/include \
32    $(TOPDIR)frameworks/av/services/audiopolicy/common/include \
33    $(TOPDIR)frameworks/av/services/audiopolicy \
34    $(TOPDIR)frameworks/av/services/audiopolicy/utilities \
35
36LOCAL_EXPORT_C_INCLUDE_DIRS := \
37    $(LOCAL_PATH)/include
38
39LOCAL_MODULE := libaudiopolicycomponents
40
41include $(BUILD_STATIC_LIBRARY)
42