1# Copyright 2014 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#      http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH:= $(call my-dir)
16
17include $(CLEAR_VARS)
18
19ifeq ($(SOUND_TRIGGER_USE_STUB_MODULE), 1)
20    ifneq ($(USE_LEGACY_LOCAL_AUDIO_HAL), true)
21        $(error Requires building with USE_LEGACY_LOCAL_AUDIO_HAL=true)
22    endif
23    LOCAL_CFLAGS += -DSOUND_TRIGGER_USE_STUB_MODULE
24endif
25
26LOCAL_SRC_FILES:=               \
27    SoundTriggerHwService.cpp
28
29LOCAL_SHARED_LIBRARIES:= \
30    liblog \
31    libutils \
32    libbinder \
33    libcutils \
34    libhardware \
35    libsoundtrigger \
36    libaudioclient \
37    libserviceutility
38
39
40ifeq ($(USE_LEGACY_LOCAL_AUDIO_HAL),true)
41# libhardware configuration
42LOCAL_SRC_FILES +=               \
43    SoundTriggerHalLegacy.cpp
44else
45# Treble configuration
46LOCAL_SRC_FILES +=               \
47    SoundTriggerHalHidl.cpp
48
49LOCAL_SHARED_LIBRARIES += \
50    libhwbinder \
51    libhidlbase \
52    libhidlmemory \
53    libhidltransport \
54    libbase \
55    libaudiohal \
56    libaudiohal_deathhandler \
57    android.hardware.soundtrigger@2.0 \
58    android.hardware.soundtrigger@2.1 \
59    android.hardware.audio.common@2.0 \
60    android.hidl.allocator@1.0 \
61    android.hidl.memory@1.0
62endif
63
64
65LOCAL_C_INCLUDES += \
66    frameworks/av/services/audioflinger
67
68LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
69
70LOCAL_CFLAGS += -Wall -Werror
71
72LOCAL_MODULE:= libsoundtriggerservice
73
74include $(BUILD_SHARED_LIBRARY)
75