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 28 matching lines...) Expand all Loading... |
39 "jitter_buffer_common.h", | 39 "jitter_buffer_common.h", |
40 "jitter_estimator.cc", | 40 "jitter_estimator.cc", |
41 "jitter_estimator.h", | 41 "jitter_estimator.h", |
42 "media_opt_util.cc", | 42 "media_opt_util.cc", |
43 "media_opt_util.h", | 43 "media_opt_util.h", |
44 "media_optimization.cc", | 44 "media_optimization.cc", |
45 "media_optimization.h", | 45 "media_optimization.h", |
46 "nack_fec_tables.h", | 46 "nack_fec_tables.h", |
47 "packet.cc", | 47 "packet.cc", |
48 "packet.h", | 48 "packet.h", |
| 49 "percentile_filter.cc", |
| 50 "percentile_filter.h", |
49 "qm_select.cc", | 51 "qm_select.cc", |
50 "qm_select.h", | 52 "qm_select.h", |
51 "qm_select_data.h", | 53 "qm_select_data.h", |
52 "receiver.cc", | 54 "receiver.cc", |
53 "receiver.h", | 55 "receiver.h", |
54 "rtt_filter.cc", | 56 "rtt_filter.cc", |
55 "rtt_filter.h", | 57 "rtt_filter.h", |
56 "session_info.cc", | 58 "session_info.cc", |
57 "session_info.h", | 59 "session_info.h", |
58 "timestamp_map.cc", | 60 "timestamp_map.cc", |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 | 251 |
250 deps = [ | 252 deps = [ |
251 ":video_coding_utility", | 253 ":video_coding_utility", |
252 "../../common_video", | 254 "../../common_video", |
253 "../../system_wrappers", | 255 "../../system_wrappers", |
254 ] | 256 ] |
255 if (rtc_build_libvpx) { | 257 if (rtc_build_libvpx) { |
256 deps += [ rtc_libvpx_dir ] | 258 deps += [ rtc_libvpx_dir ] |
257 } | 259 } |
258 } | 260 } |
OLD | NEW |