blob: 17e44403c06f0e950c2995e3b9d323d3b45f0dd2 [file] [log] [blame]
Eric Laurent27ef4d82016-10-14 15:46:06 -07001#
2# Copyright (C) 2016 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
17LOCAL_PATH := $(call my-dir)
18
19include $(CLEAR_VARS)
20LOCAL_MODULE := android.hardware.soundtrigger@2.0-impl
Bob Badourb224b362021-02-12 20:13:01 -080021LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
22LOCAL_LICENSE_CONDITIONS := notice
23LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../../../NOTICE
Mikhail Naganovdfdc3bb2017-12-22 13:35:23 -080024LOCAL_VENDOR_MODULE := true
Eric Laurent27ef4d82016-10-14 15:46:06 -070025LOCAL_MODULE_RELATIVE_PATH := hw
26LOCAL_SRC_FILES := \
Mikhail Naganovdfdc3bb2017-12-22 13:35:23 -080027 FetchISoundTriggerHw.cpp
Eric Laurent27ef4d82016-10-14 15:46:06 -070028
Chih-Hung Hsieh3f2ea622017-11-20 10:49:11 -080029LOCAL_CFLAGS := -Wall -Werror
30
Eric Laurent27ef4d82016-10-14 15:46:06 -070031LOCAL_SHARED_LIBRARIES := \
Eric Laurent27ef4d82016-10-14 15:46:06 -070032 libhardware \
Mikhail Naganovdfdc3bb2017-12-22 13:35:23 -080033 libutils \
Eric Laurent27ef4d82016-10-14 15:46:06 -070034 android.hardware.soundtrigger@2.0 \
Mikhail Naganovdfdc3bb2017-12-22 13:35:23 -080035 android.hardware.soundtrigger@2.0-core
Eric Laurent27ef4d82016-10-14 15:46:06 -070036
Mikhail Naganovdfdc3bb2017-12-22 13:35:23 -080037LOCAL_C_INCLUDE_DIRS := $(LOCAL_PATH)
Eric Laurent27ef4d82016-10-14 15:46:06 -070038
39ifeq ($(strip $(AUDIOSERVER_MULTILIB)),)
40LOCAL_MULTILIB := 32
41else
42LOCAL_MULTILIB := $(AUDIOSERVER_MULTILIB)
43endif
44
45include $(BUILD_SHARED_LIBRARY)