1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES := \
6	main_audioserver.cpp
7
8LOCAL_SHARED_LIBRARIES := \
9	libaaudioservice \
10	libaudioflinger \
11	libaudiopolicyservice \
12	libbinder \
13	libcutils \
14	liblog \
15	libmedialogservice \
16	libnbaio \
17	libradioservice \
18	libsoundtriggerservice \
19	libutils \
20	libhwbinder
21
22# TODO oboeservice is the old folder name for aaudioservice. It will be changed.
23LOCAL_C_INCLUDES := \
24	frameworks/av/services/audioflinger \
25	frameworks/av/services/audiopolicy \
26	frameworks/av/services/audiopolicy/common/managerdefinitions/include \
27	frameworks/av/services/audiopolicy/common/include \
28	frameworks/av/services/audiopolicy/engine/interface \
29	frameworks/av/services/audiopolicy/service \
30	frameworks/av/services/medialog \
31	frameworks/av/services/oboeservice \
32	frameworks/av/services/radio \
33	frameworks/av/services/soundtrigger \
34	frameworks/av/media/libaaudio/include \
35	frameworks/av/media/libaaudio/src \
36	frameworks/av/media/libaaudio/src/binding \
37	$(call include-path-for, audio-utils) \
38	external/sonic \
39
40# If AUDIOSERVER_MULTILIB in device.mk is non-empty then it is used to control
41# the LOCAL_MULTILIB for all audioserver exclusive libraries.
42# This is relevant for 64 bit architectures where either or both
43# 32 and 64 bit libraries may be built.
44#
45# AUDIOSERVER_MULTILIB may be set as follows:
46#   32      to build 32 bit audioserver libraries and 32 bit audioserver.
47#   64      to build 64 bit audioserver libraries and 64 bit audioserver.
48#   both    to build both 32 bit and 64 bit libraries,
49#           and use primary target architecture (32 or 64) for audioserver.
50#   first   to build libraries and audioserver for the primary target architecture only.
51#   <empty> to build both 32 and 64 bit libraries and 32 bit audioserver.
52
53ifeq ($(strip $(AUDIOSERVER_MULTILIB)),)
54LOCAL_MULTILIB := 32
55else
56LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
57endif
58
59LOCAL_MODULE := audioserver
60
61LOCAL_INIT_RC := audioserver.rc
62
63LOCAL_CFLAGS := -Werror -Wall
64
65include $(BUILD_EXECUTABLE)
66