OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 import("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "nack_module.cc", | 47 "nack_module.cc", |
48 "nack_module.h", | 48 "nack_module.h", |
49 "packet.cc", | 49 "packet.cc", |
50 "packet.h", | 50 "packet.h", |
51 "packet_buffer.cc", | 51 "packet_buffer.cc", |
52 "packet_buffer.h", | 52 "packet_buffer.h", |
53 "percentile_filter.cc", | 53 "percentile_filter.cc", |
54 "percentile_filter.h", | 54 "percentile_filter.h", |
55 "receiver.cc", | 55 "receiver.cc", |
56 "receiver.h", | 56 "receiver.h", |
| 57 "rtp_frame_reference_finder.cc", |
| 58 "rtp_frame_reference_finder.h", |
57 "rtt_filter.cc", | 59 "rtt_filter.cc", |
58 "rtt_filter.h", | 60 "rtt_filter.h", |
59 "session_info.cc", | 61 "session_info.cc", |
60 "session_info.h", | 62 "session_info.h", |
61 "timestamp_map.cc", | 63 "timestamp_map.cc", |
62 "timestamp_map.h", | 64 "timestamp_map.h", |
63 "timing.cc", | 65 "timing.cc", |
64 "timing.h", | 66 "timing.h", |
65 "video_coding_impl.cc", | 67 "video_coding_impl.cc", |
66 "video_coding_impl.h", | 68 "video_coding_impl.h", |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 256 |
255 deps = [ | 257 deps = [ |
256 ":video_coding_utility", | 258 ":video_coding_utility", |
257 "../../common_video", | 259 "../../common_video", |
258 "../../system_wrappers", | 260 "../../system_wrappers", |
259 ] | 261 ] |
260 if (rtc_build_libvpx) { | 262 if (rtc_build_libvpx) { |
261 deps += [ rtc_libvpx_dir ] | 263 deps += [ rtc_libvpx_dir ] |
262 } | 264 } |
263 } | 265 } |
OLD | NEW |