By specifying the define WEBRTC_DUMMY_FILE_DEVICES (which is similar to WEBRTC_DUMMY_AUDIO_BUILD) an application will be able to tell WebRTC to play out audio to a file and feed audio in from a file. We want to do so we can better test WebRTC-using applications by recording what the audio stack outputs and feeding known audio in for quality tests. R=henrika@webrtc.org Review URL: https://webrtc-codereview.appspot.com/19729004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6403 4adac7df-926f-26a2-2b94-8c16560cd09d
59 lines
1.7 KiB
Makefile
59 lines
1.7 KiB
Makefile
# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
include $(LOCAL_PATH)/../../../../../android-webrtc.mk
|
|
|
|
LOCAL_ARM_MODE := arm
|
|
LOCAL_MODULE_CLASS := STATIC_LIBRARIES
|
|
LOCAL_MODULE := libwebrtc_audio_device
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_CPP_EXTENSION := .cc
|
|
LOCAL_SRC_FILES := \
|
|
audio_device_buffer.cc \
|
|
audio_device_generic.cc \
|
|
audio_device_utility.cc \
|
|
audio_device_impl.cc \
|
|
android/audio_device_android_opensles.cc \
|
|
android/audio_device_utility_android.cc \
|
|
dummy/audio_device_utility_dummy.cc \
|
|
dummy/audio_device_dummy.cc \
|
|
dummy/file_audio_device.cc
|
|
|
|
# Flags passed to both C and C++ files.
|
|
LOCAL_CFLAGS := \
|
|
$(MY_WEBRTC_COMMON_DEFS) \
|
|
'-DWEBRTC_ANDROID_OPENSLES'
|
|
|
|
LOCAL_C_INCLUDES := \
|
|
$(LOCAL_PATH) \
|
|
$(LOCAL_PATH)/android \
|
|
$(LOCAL_PATH)/dummy \
|
|
$(LOCAL_PATH)/linux \
|
|
$(LOCAL_PATH)/../interface \
|
|
$(LOCAL_PATH)/../../../.. \
|
|
$(LOCAL_PATH)/../../../interface \
|
|
$(LOCAL_PATH)/../../../../common_audio/resampler/include \
|
|
$(LOCAL_PATH)/../../../../common_audio/signal_processing/include \
|
|
$(LOCAL_PATH)/../../../../system_wrappers/interface \
|
|
system/media/wilhelm/include
|
|
|
|
LOCAL_SHARED_LIBRARIES := \
|
|
libcutils \
|
|
libdl \
|
|
libstlport \
|
|
libOpenSLES
|
|
|
|
ifndef NDK_ROOT
|
|
include external/stlport/libstlport.mk
|
|
endif
|
|
include $(BUILD_STATIC_LIBRARY)
|