From 65c3781db3443531deacecfbda5c7e7e82868a34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gaffie?= Date: Tue, 24 Mar 2015 09:01:14 +0100 Subject: Add a configurable version of the policy engine based on PFW MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch adds a configurable version of the policy engine based on the parameter framework. This configurable engine shall be activated with a flag USE_CONFIGURABLE_AUDIO_POLICY within BoardConfig.mk This patch provides the generic configuration as an example. This configuration provides the same user experience as the default policy engine. Change-Id: Ic8217333ae370b89bfdd2ad11320c5f14ea4da34 Signed-off-by: François Gaffie --- services/audiopolicy/Android.mk | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'services/audiopolicy/Android.mk') diff --git a/services/audiopolicy/Android.mk b/services/audiopolicy/Android.mk index d4ce86a..5b38e1c 100644 --- a/services/audiopolicy/Android.mk +++ b/services/audiopolicy/Android.mk @@ -64,8 +64,23 @@ LOCAL_SHARED_LIBRARIES := \ liblog \ libsoundtrigger +ifeq ($(USE_CONFIGURABLE_AUDIO_POLICY), 1) + +LOCAL_REQUIRED_MODULES := \ + parameter-framework.policy \ + audio_policy_criteria.conf \ + +LOCAL_C_INCLUDES += \ + $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \ + +LOCAL_SHARED_LIBRARIES += libaudiopolicyengineconfigurable + +else + LOCAL_SHARED_LIBRARIES += libaudiopolicyenginedefault +endif + LOCAL_C_INCLUDES += \ $(TOPDIR)frameworks/av/services/audiopolicy/common/include \ $(TOPDIR)frameworks/av/services/audiopolicy/engine/interface \ -- cgit v1.1