stefan@webrtc.org | 23307f7 | 2012-02-08 10:39:13 +0000 | [diff] [blame] | 1 | # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 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_ARM_MODE := arm |
| 16 | LOCAL_MODULE_CLASS := STATIC_LIBRARIES |
| 17 | LOCAL_MODULE := libwebrtc_video_coding |
| 18 | LOCAL_MODULE_TAGS := optional |
| 19 | LOCAL_CPP_EXTENSION := .cc |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 20 | LOCAL_SRC_FILES := \ |
| 21 | codec_database.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 22 | codec_timer.cc \ |
| 23 | content_metrics_processing.cc \ |
leozwang@webrtc.org | 9aa9f44 | 2011-12-14 19:08:33 +0000 | [diff] [blame] | 24 | decoding_state.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 25 | encoded_frame.cc \ |
| 26 | exp_filter.cc \ |
| 27 | frame_buffer.cc \ |
| 28 | frame_dropper.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 29 | generic_decoder.cc \ |
| 30 | generic_encoder.cc \ |
| 31 | inter_frame_delay.cc \ |
| 32 | jitter_buffer.cc \ |
kma@webrtc.org | d75889e | 2011-10-20 16:28:56 +0000 | [diff] [blame] | 33 | jitter_buffer_common.cc \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 34 | jitter_estimator.cc \ |
| 35 | media_opt_util.cc \ |
| 36 | media_optimization.cc \ |
| 37 | packet.cc \ |
| 38 | qm_select.cc \ |
| 39 | receiver.cc \ |
| 40 | rtt_filter.cc \ |
| 41 | session_info.cc \ |
| 42 | timestamp_extrapolator.cc \ |
| 43 | timestamp_map.cc \ |
| 44 | timing.cc \ |
| 45 | video_coding_impl.cc |
| 46 | |
| 47 | # Flags passed to both C and C++ files. |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 48 | LOCAL_CFLAGS := \ |
| 49 | $(MY_WEBRTC_COMMON_DEFS) |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 50 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 51 | LOCAL_C_INCLUDES := \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 52 | $(LOCAL_PATH)/../interface \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 53 | $(LOCAL_PATH)/../../codecs/interface \ |
| 54 | $(LOCAL_PATH)/../../codecs/i420/main/interface \ |
| 55 | $(LOCAL_PATH)/../../codecs/vp8/main/interface \ |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 56 | $(LOCAL_PATH)/../../../interface \ |
| 57 | $(LOCAL_PATH)/../../../.. \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 58 | $(LOCAL_PATH)/../../../../common_video/vplib/main/interface \ |
leozwang@google.com | 0ee7dae | 2011-07-12 21:51:49 +0000 | [diff] [blame] | 59 | $(LOCAL_PATH)/../../../../common_video/interface \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 60 | $(LOCAL_PATH)/../../../../system_wrappers/interface |
| 61 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 62 | LOCAL_SHARED_LIBRARIES := \ |
| 63 | libcutils \ |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 64 | libdl \ |
| 65 | libstlport |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 66 | |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 67 | ifndef NDK_ROOT |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 68 | include external/stlport/libstlport.mk |
leozwang@google.com | 79835d1 | 2011-08-05 21:01:02 +0000 | [diff] [blame] | 69 | endif |
niklase@google.com | 470e71d | 2011-07-07 08:21:25 +0000 | [diff] [blame] | 70 | include $(BUILD_STATIC_LIBRARY) |