mirror of
https://github.com/ioacademy-jikim/multimedia
synced 2025-06-08 08:26:11 +00:00
37 lines
624 B
Makefile
37 lines
624 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_SRC_FILES:= \
|
|
test-mixer.cpp \
|
|
AudioMixer.cpp.arm \
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
bionic \
|
|
bionic/libstdc++/include \
|
|
external/stlport/stlport \
|
|
$(call include-path-for, audio-effects) \
|
|
$(call include-path-for, audio-utils) \
|
|
frameworks/av/services/audioflinger
|
|
|
|
LOCAL_STATIC_LIBRARIES := \
|
|
libsndfile
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libstlport \
|
|
libeffects \
|
|
libnbaio \
|
|
libcommon_time_client \
|
|
libaudioresampler \
|
|
libaudioutils \
|
|
libdl \
|
|
libcutils \
|
|
libutils \
|
|
liblog
|
|
|
|
LOCAL_MODULE:= test-mixer
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
include $(BUILD_EXECUTABLE)
|