1b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# Copyright 2014 The Android Open Source Project
2b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent#
3b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# Licensed under the Apache License, Version 2.0 (the "License");
4b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# you may not use this file except in compliance with the License.
5b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# You may obtain a copy of the License at
6b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent#
7b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent#      http://www.apache.org/licenses/LICENSE-2.0
8b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent#
9b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# Unless required by applicable law or agreed to in writing, software
10b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# distributed under the License is distributed on an "AS IS" BASIS,
11b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# See the License for the specific language governing permissions and
13b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent# limitations under the License.
14b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
15b7a11d83f749ad0200778c4815e907d011d4b5d3Eric LaurentLOCAL_PATH:= $(call my-dir)
16b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
17b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurentinclude $(CLEAR_VARS)
18b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
19b7a11d83f749ad0200778c4815e907d011d4b5d3Eric LaurentLOCAL_SRC_FILES:= \
20b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	SoundTrigger.cpp \
21b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	ISoundTrigger.cpp \
22b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	ISoundTriggerClient.cpp \
23b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	ISoundTriggerHwService.cpp
24b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
25b7a11d83f749ad0200778c4815e907d011d4b5d3Eric LaurentLOCAL_SHARED_LIBRARIES := \
26b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	libcutils \
27b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	libutils \
28b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	liblog \
29b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	libbinder \
30b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	libhardware
31b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
32b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent#LOCAL_C_INCLUDES += \
33b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	system/media/camera/include \
34b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent	system/media/private/camera/include
35b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
36b7a11d83f749ad0200778c4815e907d011d4b5d3Eric LaurentLOCAL_MODULE:= libsoundtrigger
37b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurent
38b7a11d83f749ad0200778c4815e907d011d4b5d3Eric Laurentinclude $(BUILD_SHARED_LIBRARY)
39