blob: 7d9e014d3c291645b660fdd3e2a25bb49579950c [file] [log] [blame]
Eric Laurentc7e50402014-03-06 14:35:55 -08001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES:= \
6 AudioPolicyService.cpp
7
8LOCAL_C_INCLUDES := \
9 $(TOPDIR)frameworks/av/services/audioflinger \
10 $(call include-path-for, audio-effects) \
11 $(call include-path-for, audio-utils)
12
13LOCAL_SHARED_LIBRARIES := \
14 libcutils \
15 libutils \
16 liblog \
17 libbinder \
18 libmedia \
19 libhardware \
20 libhardware_legacy
21
22LOCAL_STATIC_LIBRARIES := \
23 libmedia_helper \
24 libserviceutility
25
26LOCAL_MODULE:= libaudiopolicy
27
28LOCAL_CFLAGS += -fvisibility=hidden
29
30include $(BUILD_SHARED_LIBRARY)