1LOCAL_PATH:= $(call my-dir)
2
3# Visualizer library
4include $(CLEAR_VARS)
5
6LOCAL_SRC_FILES:= \
7	EffectVisualizer.cpp
8
9LOCAL_CFLAGS+= -O2 -fvisibility=hidden
10
11LOCAL_SHARED_LIBRARIES := \
12	libcutils \
13	liblog \
14	libdl
15
16LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx
17LOCAL_MODULE:= libvisualizer
18
19LOCAL_C_INCLUDES := \
20	$(call include-path-for, graphics corecg) \
21	$(call include-path-for, audio-effects)
22
23
24include $(BUILD_SHARED_LIBRARY)
25