niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [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 | [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 | [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 |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 27 | |
| 28 | LOCAL_WHOLE_STATIC_LIBRARIES := \ |
leozwang@google.com | a39ffa9 | 2011-07-25 21:28:22 | [diff] [blame^] | 29 | $(MY_APM_WHOLE_STATIC_LIBRARIES) \ |
| 30 | libwebrtc_system_wrappers \ |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 31 | |
| 32 | LOCAL_SHARED_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 | [diff] [blame] | 33 | libcutils \ |
| 34 | libdl \ |
| 35 | libstlport |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 36 | |
leozwang@google.com | 5724084 | 2011-07-14 20:54:56 | [diff] [blame] | 37 | LOCAL_PRELINK_MODULE := false |
| 38 | |
leozwang@google.com | a39ffa9 | 2011-07-25 21:28:22 | [diff] [blame^] | 39 | ifndef NDK_ROOT |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 40 | include external/stlport/libstlport.mk |
leozwang@google.com | a39ffa9 | 2011-07-25 21:28:22 | [diff] [blame^] | 41 | endif |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 42 | include $(BUILD_SHARED_LIBRARY) |
| 43 | |
| 44 | ### |
| 45 | |
| 46 | LOCAL_PATH := $(call my-dir) |
| 47 | |
| 48 | include $(CLEAR_VARS) |
| 49 | |
| 50 | LOCAL_ARM_MODE := arm |
| 51 | LOCAL_MODULE := libwebrtc |
| 52 | LOCAL_MODULE_TAGS := optional |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 53 | |
| 54 | LOCAL_WHOLE_STATIC_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 | [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 | [diff] [blame] | 82 | |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 83 | LOCAL_SHARED_LIBRARIES := \ |
leozwang@google.com | 0b0c28c | 2011-06-07 17:24:39 | [diff] [blame] | 84 | libcutils \ |
| 85 | libdl \ |
| 86 | libstlport \ |
| 87 | libjpeg \ |
| 88 | libGLESv2 \ |
| 89 | libOpenSLES \ |
| 90 | libwebrtc_audio_preprocessing |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 91 | |
leozwang@google.com | 5724084 | 2011-07-14 20:54:56 | [diff] [blame] | 92 | LOCAL_PRELINK_MODULE := false |
| 93 | |
leozwang@google.com | a39ffa9 | 2011-07-25 21:28:22 | [diff] [blame^] | 94 | ifndef NDK_ROOT |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 95 | include external/stlport/libstlport.mk |
leozwang@google.com | a39ffa9 | 2011-07-25 21:28:22 | [diff] [blame^] | 96 | endif |
niklase@google.com | da159d6 | 2011-05-30 11:51:34 | [diff] [blame] | 97 | include $(BUILD_SHARED_LIBRARY) |