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