summaryrefslogtreecommitdiffstats
path: root/services/audiopolicy/engineconfigurable/parameter-framework/plugin/Android.mk
blob: 46b27253ff19db933537805c515b10c9529c632e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
LOCAL_PATH := $(call my-dir)

include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := \
    PolicySubsystemBuilder.cpp \
    PolicySubsystem.cpp \
    Strategy.cpp \
    InputSource.cpp \
    VolumeProfile.cpp \
    Stream.cpp \
    Usage.cpp

LOCAL_CFLAGS += \
    -Wall \
    -Werror \
    -Wextra \

LOCAL_C_INCLUDES := \
    $(TOPDIR)external/parameter-framework/parameter \
    $(TOPDIR)frameworks/av/services/audiopolicy/common/include \
    $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/include \
    $(TOPDIR)frameworks/av/services/audiopolicy/engineconfigurable/interface \

LOCAL_SHARED_LIBRARIES := \
    libaudiopolicyengineconfigurable  \
    libparameter \
    libicuuc \
    liblog \

LOCAL_STATIC_LIBRARIES := \
    libxmlserializer \
    libpfw_utility \
    libxml2 \

LOCAL_MODULE_TAGS := optional
LOCAL_MODULE := libpolicy-subsystem

include $(BUILD_SHARED_LIBRARY)