François Gaffie | 20f06f9 | 2015-03-24 09:01:14 +0100 | [diff] [blame] | 1 | LOCAL_PATH:= $(call my-dir) |
| 2 | |
| 3 | ################################################################## |
| 4 | # WRAPPER LIBRARY |
| 5 | ################################################################## |
| 6 | |
| 7 | include $(CLEAR_VARS) |
| 8 | |
| 9 | LOCAL_C_INCLUDES := \ |
| 10 | $(LOCAL_PATH)/include \ |
François Gaffie | 20f06f9 | 2015-03-24 09:01:14 +0100 | [diff] [blame] | 11 | $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \ |
| 12 | $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/interface \ |
| 13 | $(TOPDIR)frameworks/av/services/audiopolicy/utilities/convert \ |
| 14 | |
| 15 | LOCAL_SRC_FILES:= ParameterManagerWrapper.cpp |
| 16 | |
| 17 | LOCAL_STATIC_LIBRARIES := \ |
| 18 | libmedia_helper \ |
| 19 | |
Dan Willemsen | 4ffbc76 | 2016-11-18 13:28:36 -0800 | [diff] [blame^] | 20 | LOCAL_SHARED_LIBRARIES := \ |
| 21 | libparameter \ |
| 22 | |
Andy Hung | 8fa2697 | 2016-03-03 13:19:27 -0800 | [diff] [blame] | 23 | LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB) |
| 24 | |
François Gaffie | 20f06f9 | 2015-03-24 09:01:14 +0100 | [diff] [blame] | 25 | LOCAL_MODULE:= libaudiopolicypfwwrapper |
| 26 | LOCAL_EXPORT_C_INCLUDE_DIRS := $(LOCAL_PATH)/include |
| 27 | |
| 28 | LOCAL_MODULE_TAGS := optional |
| 29 | LOCAL_CFLAGS := -Wall -Werror -Wextra |
| 30 | |
| 31 | include $(BUILD_STATIC_LIBRARY) |
| 32 | |
| 33 | ################################################################## |
| 34 | # CONFIGURATION FILE |
| 35 | ################################################################## |
| 36 | |
| 37 | # specific management of audio_policy_criteria.conf |
| 38 | include $(CLEAR_VARS) |
| 39 | LOCAL_MODULE := audio_policy_criteria.conf |
| 40 | LOCAL_MODULE_TAGS := optional |
| 41 | LOCAL_MODULE_CLASS := ETC |
| 42 | LOCAL_MODULE_PATH := $(TARGET_OUT_ETC) |
| 43 | LOCAL_SRC_FILES := config/$(LOCAL_MODULE) |
| 44 | include $(BUILD_PREBUILT) |