blob: f02d2030776d10f64897061df4e13a659ba3e17b [file] [log] [blame]
niklase@google.comda159d62011-05-30 11:51:34 +00001# 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 := \
leozwang@google.com0b0c28c2011-06-07 17:24:39 +000010 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
niklase@google.comda159d62011-05-30 11:51:34 +000019
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 := \
leozwang@google.com0b0c28c2011-06-07 17:24:39 +000034 libcutils \
35 libdl \
36 libstlport
niklase@google.comda159d62011-05-30 11:51:34 +000037
38LOCAL_ADDITIONAL_DEPENDENCIES :=
39
40include external/stlport/libstlport.mk
41include $(BUILD_SHARED_LIBRARY)
42
43###
44
45LOCAL_PATH := $(call my-dir)
46
47include $(CLEAR_VARS)
48
49LOCAL_ARM_MODE := arm
50LOCAL_MODULE := libwebrtc
51LOCAL_MODULE_TAGS := optional
52LOCAL_LDFLAGS :=
53
54LOCAL_WHOLE_STATIC_LIBRARIES := \
leozwang@google.com0b0c28c2011-06-07 17:24:39 +000055 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
niklase@google.comda159d62011-05-30 11:51:34 +000082
83LOCAL_STATIC_LIBRARIES :=
84LOCAL_SHARED_LIBRARIES := \
leozwang@google.com0b0c28c2011-06-07 17:24:39 +000085 libcutils \
86 libdl \
87 libstlport \
88 libjpeg \
89 libGLESv2 \
90 libOpenSLES \
91 libwebrtc_audio_preprocessing
niklase@google.comda159d62011-05-30 11:51:34 +000092
93LOCAL_ADDITIONAL_DEPENDENCIES :=
94
95include external/stlport/libstlport.mk
96include $(BUILD_SHARED_LIBRARY)