aboutsummaryrefslogtreecommitdiff
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk94
1 files changed, 0 insertions, 94 deletions
diff --git a/Android.mk b/Android.mk
deleted file mode 100644
index 77fdadf344..0000000000
--- a/Android.mk
+++ /dev/null
@@ -1,94 +0,0 @@
-# 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 := libwebrtc_audio_preprocessing
-LOCAL_VENDOR_MODULE := true
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_WHOLE_STATIC_LIBRARIES := \
- libwebrtc_aec \
- libwebrtc_aecm \
- libwebrtc_agc \
- libwebrtc_apm \
- libwebrtc_apm_utility \
- libwebrtc_apvad \
- libwebrtc_base \
- libwebrtc_beamformer \
- libwebrtc_common \
- libwebrtc_intell \
- libwebrtc_isac \
- libwebrtc_resampler \
- libwebrtc_ns \
- libwebrtc_spl \
- libwebrtc_system_wrappers \
- libwebrtc_transient \
- libwebrtc_vad \
-
-LOCAL_SHARED_LIBRARIES := \
- liblog \
- libcutils \
- libdl \
- libprotobuf-cpp-lite \
-
-include $(BUILD_SHARED_LIBRARY)
-
-
-include $(CLEAR_VARS)
-include $(LOCAL_PATH)/android-webrtc.mk
-
-LOCAL_ARM_MODE := arm
-LOCAL_MODULE := libwebrtc_audio_coding
-LOCAL_VENDOR_MODULE := true
-LOCAL_MODULE_TAGS := optional
-
-LOCAL_WHOLE_STATIC_LIBRARIES := \
- libwebrtc_base \
- libwebrtc_common \
- libwebrtc_intell \
- libwebrtc_isac \
- libwebrtc_isacfix \
- libwebrtc_resampler \
- libwebrtc_spl \
- libwebrtc_system_wrappers \
-
-LOCAL_SHARED_LIBRARIES := \
- libprotobuf-cpp-lite \
- liblog \
- libcutils \
- libdl \
-
-include $(BUILD_SHARED_LIBRARY)
-
-
-webrtc_path := $(LOCAL_PATH)
-# voice
-include $(webrtc_path)/webrtc/base/Android.mk
-include $(webrtc_path)/webrtc/common_audio/Android.mk
-include $(webrtc_path)/webrtc/common_audio/resampler/Android.mk
-include $(webrtc_path)/webrtc/common_audio/signal_processing/Android.mk
-include $(webrtc_path)/webrtc/common_audio/vad/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_coding/codecs/isac/fix/test/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_coding/codecs/isac/fix/source/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_coding/codecs/isac/main/source/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/aec/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/aecm/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/agc/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/beamformer/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/intelligibility/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/ns/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/transient/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/utility/Android.mk
-include $(webrtc_path)/webrtc/modules/audio_processing/vad/Android.mk
-include $(webrtc_path)/webrtc/system_wrappers/source/Android.mk