blob: 3ee7494f6b47782b15031e317e731f0822ff4957 [file] [log] [blame]
Marco Nelissendcb346b2015-09-09 10:47:29 -07001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4
5LOCAL_SRC_FILES := \
6 main_audioserver.cpp
7
8LOCAL_SHARED_LIBRARIES := \
Phil Burk7f6b40d2017-02-09 13:18:38 -08009 libaaudioservice \
Marco Nelissendcb346b2015-09-09 10:47:29 -070010 libaudioflinger \
11 libaudiopolicyservice \
12 libbinder \
Glenn Kastenae0cff12016-02-24 13:57:49 -080013 libcutils \
Marco Nelissendcb346b2015-09-09 10:47:29 -070014 liblog \
Glenn Kastenae0cff12016-02-24 13:57:49 -080015 libmedialogservice \
Nicolas Roulet40a44982017-02-03 13:39:57 -080016 libnbaio \
Marco Nelissendcb346b2015-09-09 10:47:29 -070017 libsoundtriggerservice \
Eric Laurente2afa1e2016-12-16 16:30:28 -080018 libutils \
19 libhwbinder
Marco Nelissendcb346b2015-09-09 10:47:29 -070020
Phil Burk7f6b40d2017-02-09 13:18:38 -080021# TODO oboeservice is the old folder name for aaudioservice. It will be changed.
Marco Nelissendcb346b2015-09-09 10:47:29 -070022LOCAL_C_INCLUDES := \
23 frameworks/av/services/audioflinger \
24 frameworks/av/services/audiopolicy \
25 frameworks/av/services/audiopolicy/common/managerdefinitions/include \
26 frameworks/av/services/audiopolicy/common/include \
27 frameworks/av/services/audiopolicy/engine/interface \
28 frameworks/av/services/audiopolicy/service \
Glenn Kastenae0cff12016-02-24 13:57:49 -080029 frameworks/av/services/medialog \
Phil Burk7f6b40d2017-02-09 13:18:38 -080030 frameworks/av/services/oboeservice \
Marco Nelissendcb346b2015-09-09 10:47:29 -070031 frameworks/av/services/radio \
32 frameworks/av/services/soundtrigger \
Phil Burk7f6b40d2017-02-09 13:18:38 -080033 frameworks/av/media/libaaudio/include \
34 frameworks/av/media/libaaudio/src \
35 frameworks/av/media/libaaudio/src/binding \
Marco Nelissendcb346b2015-09-09 10:47:29 -070036 $(call include-path-for, audio-utils) \
37 external/sonic \
38
Andy Hung8fa26972016-03-03 13:19:27 -080039# If AUDIOSERVER_MULTILIB in device.mk is non-empty then it is used to control
40# the LOCAL_MULTILIB for all audioserver exclusive libraries.
41# This is relevant for 64 bit architectures where either or both
42# 32 and 64 bit libraries may be built.
43#
44# AUDIOSERVER_MULTILIB may be set as follows:
45# 32 to build 32 bit audioserver libraries and 32 bit audioserver.
46# 64 to build 64 bit audioserver libraries and 64 bit audioserver.
47# both to build both 32 bit and 64 bit libraries,
48# and use primary target architecture (32 or 64) for audioserver.
49# first to build libraries and audioserver for the primary target architecture only.
50# <empty> to build both 32 and 64 bit libraries and 32 bit audioserver.
51
52ifeq ($(strip $(AUDIOSERVER_MULTILIB)),)
53LOCAL_MULTILIB := 32
54else
55LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
56endif
57
Marco Nelissendcb346b2015-09-09 10:47:29 -070058LOCAL_MODULE := audioserver
Marco Nelissendcb346b2015-09-09 10:47:29 -070059
60LOCAL_INIT_RC := audioserver.rc
61
Glenn Kastene875c802016-03-18 14:52:27 -070062LOCAL_CFLAGS := -Werror -Wall
63
Marco Nelissendcb346b2015-09-09 10:47:29 -070064include $(BUILD_EXECUTABLE)