niklase@google.com | 470e71d | 2011-07-07 08:21:25 +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 | LOCAL_PATH := $(call my-dir) |
| 10 | |
| 11 | include $(CLEAR_VARS) |
| 12 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 13 | include $(LOCAL_PATH)/../../../../android-webrtc.mk |
| 14 | |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 15 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| 16 | LOCAL_MODULE := libwebrtc_rtp_rtcp |
| 17 | LOCAL_MODULE_TAGS := optional |
| 18 | LOCAL_CPP_EXTENSION := .cc |
| 19 | LOCAL_GENERATED_SOURCES := |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 20 | LOCAL_SRC_FILES := \ |
| 21 | bitrate.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 22 | rtp_rtcp_impl.cc \ |
| 23 | rtcp_receiver.cc \ |
| 24 | rtcp_receiver_help.cc \ |
| 25 | rtcp_sender.cc \ |
| 26 | rtcp_utility.cc \ |
| 27 | rtp_receiver.cc \ |
| 28 | rtp_sender.cc \ |
| 29 | rtp_utility.cc \ |
leozwang@webrtc.org | 376be6c | 2012-01-23 16:46:38 +0000 | [diff] [blame^] | 30 | rtp_header_extension.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 31 | ssrc_database.cc \ |
| 32 | tmmbr_help.cc \ |
| 33 | dtmf_queue.cc \ |
| 34 | rtp_receiver_audio.cc \ |
| 35 | rtp_sender_audio.cc \ |
| 36 | bandwidth_management.cc \ |
| 37 | forward_error_correction.cc \ |
| 38 | forward_error_correction_internal.cc \ |
| 39 | overuse_detector.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 40 | remote_rate_control.cc \ |
leozwang@webrtc.org | 376be6c | 2012-01-23 16:46:38 +0000 | [diff] [blame^] | 41 | rtp_packet_history.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 42 | receiver_fec.cc \ |
| 43 | rtp_receiver_video.cc \ |
| 44 | rtp_sender_video.cc \ |
leozwang@webrtc.org | 376be6c | 2012-01-23 16:46:38 +0000 | [diff] [blame^] | 45 | rtp_format_vp8.cc \ |
| 46 | transmission_bucket.cc \ |
| 47 | vp8_partition_aggregator.cc |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 48 | |
| 49 | # Flags passed to both C and C++ files. |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 50 | LOCAL_CFLAGS := \ |
| 51 | $(MY_WEBRTC_COMMON_DEFS) |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 52 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 53 | LOCAL_C_INCLUDES := \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 54 | $(LOCAL_PATH)/../interface \ |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 55 | $(LOCAL_PATH)/../../.. \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 56 | $(LOCAL_PATH)/../../interface \ |
| 57 | $(LOCAL_PATH)/../../../system_wrappers/interface |
| 58 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 59 | LOCAL_SHARED_LIBRARIES := \ |
| 60 | libcutils \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 61 | libdl \ |
| 62 | libstlport |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 63 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 64 | ifndef NDK_ROOT |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 65 | include external/stlport/libstlport.mk |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 66 | endif |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 67 | include $(BUILD_STATIC_LIBRARY) |