niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 1 | # 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 | |
| 9 | MY_APM_WHOLE_STATIC_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 +0000 | [diff] [blame] | 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 |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 19 | |
| 20 | LOCAL_PATH := $(call my-dir) |
| 21 | |
| 22 | include $(CLEAR_VARS) |
| 23 | |
| 24 | LOCAL_ARM_MODE := arm |
| 25 | LOCAL_MODULE := libwebrtc_audio_preprocessing |
| 26 | LOCAL_MODULE_TAGS := optional |
| 27 | LOCAL_LDFLAGS := |
| 28 | |
| 29 | LOCAL_WHOLE_STATIC_LIBRARIES := \ |
| 30 | $(MY_APM_WHOLE_STATIC_LIBRARIES) \ |
| 31 | libwebrtc_system_wrappers \ |
| 32 | |
| 33 | LOCAL_SHARED_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 +0000 | [diff] [blame] | 34 | libcutils \ |
| 35 | libdl \ |
| 36 | libstlport |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 37 | |
| 38 | LOCAL_ADDITIONAL_DEPENDENCIES := |
| 39 | |
| 40 | include external/stlport/libstlport.mk |
| 41 | include $(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 := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 +0000 | [diff] [blame] | 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 |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 82 | |
| 83 | LOCAL_STATIC_LIBRARIES := |
| 84 | LOCAL_SHARED_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 +0000 | [diff] [blame] | 85 | libcutils \ |
| 86 | libdl \ |
| 87 | libstlport \ |
| 88 | libjpeg \ |
| 89 | libGLESv2 \ |
| 90 | libOpenSLES \ |
| 91 | libwebrtc_audio_preprocessing |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 +0000 | [diff] [blame] | 92 | |
| 93 | LOCAL_ADDITIONAL_DEPENDENCIES := |
| 94 | |
| 95 | include external/stlport/libstlport.mk |
| 96 | include $(BUILD_SHARED_LIBRARY) |