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 10 11 LOCAL_SHARED_LIBRARIES := \ 12 libcutils \ 13 libdl 14 15 LOCAL_MODULE_PATH := $(TARGET_OUT_SHARED_LIBRARIES)/soundfx 16 LOCAL_MODULE:= libvisualizer 17 18 LOCAL_C_INCLUDES := \ 19 $(call include-path-for, graphics corecg) \ 20 $(call include-path-for, audio-effects) 21 22 23 include $(BUILD_SHARED_LIBRARY) 24