blob: 55d0611661ef6e35218d38629527bc55ca6b048a [file] [log] [blame]
Jean-Michel Trivi6cc3a992013-09-10 09:15:18 -07001LOCAL_PATH:= $(call my-dir)
2
3# LoudnessEnhancer library
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7 EffectLoudnessEnhancer.cpp \
8 dsp/core/dynamic_range_compression.cpp
9
10LOCAL_CFLAGS+= -O2 -fvisibility=hidden
11
12LOCAL_SHARED_LIBRARIES := \
13 libcutils \
14 liblog \
Jean-Michel Trivi6cc3a992013-09-10 09:15:18 -070015
Colin Cross7d6fc5e2014-01-24 21:00:32 -080016LOCAL_MODULE_RELATIVE_PATH := soundfx
Jean-Michel Trivi6cc3a992013-09-10 09:15:18 -070017LOCAL_MODULE:= libldnhncr
18
19LOCAL_C_INCLUDES := \
20 $(call include-path-for, audio-effects) \
Jean-Michel Trivi6cc3a992013-09-10 09:15:18 -070021
Jean-Michel Trivi6cc3a992013-09-10 09:15:18 -070022include $(BUILD_SHARED_LIBRARY)