blob: 01d6a9e3dd9acc3ff23582c9bbcd86f6046e6d45 [file] [log] [blame]
Eric Laurente48d5842011-06-16 21:50:24 -07001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9MY_APM_WHOLE_STATIC_LIBRARIES := \
10 libwebrtc_spl \
11 libwebrtc_resampler \
12 libwebrtc_apm \
13 libwebrtc_apm_utility \
14 libwebrtc_vad \
15 libwebrtc_ns \
16 libwebrtc_agc \
17 libwebrtc_aec \
18 libwebrtc_aecm
19
20LOCAL_PATH := $(call my-dir)
21
22include $(CLEAR_VARS)
23
24LOCAL_ARM_MODE := arm
25LOCAL_MODULE := libwebrtc_audio_preprocessing
26LOCAL_MODULE_TAGS := optional
27LOCAL_LDFLAGS :=
28
29LOCAL_WHOLE_STATIC_LIBRARIES := \
30 $(MY_APM_WHOLE_STATIC_LIBRARIES) \
31 libwebrtc_system_wrappers \
32
33LOCAL_SHARED_LIBRARIES := \
34 libcutils \
35 libdl \
36 libstlport
37
38LOCAL_ADDITIONAL_DEPENDENCIES :=
39
40include external/stlport/libstlport.mk
41include $(BUILD_SHARED_LIBRARY)
42
43###
44
45#LOCAL_PATH := $(call my-dir)
46#
47#include $(CLEAR_VARS)
48#
49#LOCAL_ARM_MODE := arm
50#LOCAL_MODULE := libwebrtc
51#LOCAL_MODULE_TAGS := optional
52#LOCAL_LDFLAGS :=
53#
54#LOCAL_WHOLE_STATIC_LIBRARIES := \
55# libwebrtc_system_wrappers \
56# libwebrtc_audio_device \
57# libwebrtc_pcm16b \
58# libwebrtc_cng \
59# libwebrtc_audio_coding \
60# libwebrtc_rtp_rtcp \
61# libwebrtc_media_file \
62# libwebrtc_udp_transport \
63# libwebrtc_utility \
64# libwebrtc_neteq \
65# libwebrtc_audio_conference_mixer \
66# libwebrtc_isac \
67# libwebrtc_ilbc \
68# libwebrtc_isacfix \
69# libwebrtc_g722 \
70# libwebrtc_g711 \
71# libwebrtc_voe_core \
72# libwebrtc_video_render \
73# libwebrtc_video_capture \
74# libwebrtc_i420 \
75# libwebrtc_video_coding \
76# libwebrtc_video_processing \
77# libwebrtc_vp8 \
78# libwebrtc_vie_core \
79# libwebrtc_vplib \
80# libwebrtc_jpeg \
81# libwebrtc_vpx
82#
83#LOCAL_STATIC_LIBRARIES :=
84#LOCAL_SHARED_LIBRARIES := \
85# libcutils \
86# libdl \
87# libstlport \
88# libjpeg \
89# libGLESv2 \
90# libOpenSLES \
91# libwebrtc_audio_preprocessing
92#
93#LOCAL_ADDITIONAL_DEPENDENCIES :=
94#
95#include external/stlport/libstlport.mk
96#include $(BUILD_SHARED_LIBRARY)