mirror of
https://github.com/ioacademy-jikim/multimedia
synced 2025-06-19 21:56:09 +00:00
34 lines
612 B
Makefile
34 lines
612 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= test-mixer.cpp AudioMixer.cpp.arm BufferProviders.cpp
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(call include-path-for, audio-effects) \
|
|
$(call include-path-for, audio-utils) \
|
|
frameworks/av/services/audioflinger \
|
|
external/sonic
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libsndfile
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libeffects \
|
|
libnbaio \
|
|
libcommon_time_client \
|
|
libaudioresampler \
|
|
libaudioutils \
|
|
libdl \
|
|
libcutils \
|
|
libutils \
|
|
liblog \
|
|
libsonic
|
|
|
|
LOCAL_MODULE:= test-mixer
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_CXX_STL := libc++
|
|
|
|
include $(BUILD_EXECUTABLE)
|