blob: 611eba7e743558dcc98bdf9bd928631f76633ff2 [file] [log] [blame]
Simon Wilson15f60a82012-04-24 20:56:32 -07001# Copyright (C) 2012 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
19LOCAL_MODULE := audio.primary.manta
Ying Wang49267172014-02-12 14:43:06 -080020LOCAL_MODULE_RELATIVE_PATH := hw
Simon Wilson15f60a82012-04-24 20:56:32 -070021LOCAL_SRC_FILES := \
Simon Wilson759c6f02013-01-15 16:38:56 -080022 audio_hw.c
Simon Wilson15f60a82012-04-24 20:56:32 -070023LOCAL_C_INCLUDES += \
24 external/tinyalsa/include \
Simon Wilsonf051bcf2012-09-26 14:10:07 -070025 hardware/samsung_slsi/exynos5/include \
Eric Laurenta989ebf2012-10-15 15:14:44 -070026 device/samsung/manta/bubblelevel \
Jean-Michel Trivie04f7c92012-09-30 16:01:41 -070027 device/samsung/manta/voicefx \
Simon Wilson759c6f02013-01-15 16:38:56 -080028 $(call include-path-for, audio-utils) \
29 $(call include-path-for, audio-route)
Glenn Kasten05a2f712014-07-15 10:28:24 -070030LOCAL_CFLAGS := -Wno-unused-parameter
Simon Wilson759c6f02013-01-15 16:38:56 -080031LOCAL_SHARED_LIBRARIES := liblog libcutils libtinyalsa libaudioutils libbubblelevel \
32 libaudience_voicefx libaudioroute
Simon Wilson15f60a82012-04-24 20:56:32 -070033LOCAL_MODULE_TAGS := optional
34
35include $(BUILD_SHARED_LIBRARY)