summaryrefslogtreecommitdiffstats
path: root/services/audiopolicy/Android.mk
diff options
context:
space:
mode:
authorEric Laurent <elaurent@google.com>2014-03-07 13:25:54 -0800
committerEric Laurent <elaurent@google.com>2014-03-11 13:56:42 -0700
commit2d388eccc9dc085337c7a03a68467cbee6b809e1 (patch)
tree359f5f2873277708258f9cfd103354e470f3a4ea /services/audiopolicy/Android.mk
parentc7e5040aa8b8e4da86814bf560346c7571e48087 (diff)
downloadframeworks_av-2d388eccc9dc085337c7a03a68467cbee6b809e1.zip
frameworks_av-2d388eccc9dc085337c7a03a68467cbee6b809e1.tar.gz
frameworks_av-2d388eccc9dc085337c7a03a68467cbee6b809e1.tar.bz2
audio policy: split implementation
Split audio policy service implementation to ease further evolution: AudioPolicyInterfaceImpl.cpp contains the implementation of IAudioPolicyService interface AudioPolicyClientImpl.cpp contains the implementation of the AudioPolicyManager client interface AudioPolicyService.cpp contains the rest of the code mostly command threads implementation and pre processing management. AudioPolicyService.cpp: Change-Id: Ic48ba165532ef66e84a30894d01f750ed6619d02
Diffstat (limited to 'services/audiopolicy/Android.mk')
-rw-r--r--services/audiopolicy/Android.mk6
1 files changed, 4 insertions, 2 deletions
diff --git a/services/audiopolicy/Android.mk b/services/audiopolicy/Android.mk
index 7d9e014..84565bb 100644
--- a/services/audiopolicy/Android.mk
+++ b/services/audiopolicy/Android.mk
@@ -2,8 +2,10 @@ LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
-LOCAL_SRC_FILES:= \
- AudioPolicyService.cpp
+LOCAL_SRC_FILES:= \
+ AudioPolicyService.cpp \
+ AudioPolicyInterfaceImpl.cpp \
+ AudioPolicyClientImpl.cpp
LOCAL_C_INCLUDES := \
$(TOPDIR)frameworks/av/services/audioflinger \