| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "media_optimization.h", | 45 "media_optimization.h", |
| 46 "nack_fec_tables.h", | 46 "nack_fec_tables.h", |
| 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 "protection_bitrate_calculator.cc", |
| 56 "protection_bitrate_calculator.h", |
| 55 "receiver.cc", | 57 "receiver.cc", |
| 56 "receiver.h", | 58 "receiver.h", |
| 57 "rtp_frame_reference_finder.cc", | 59 "rtp_frame_reference_finder.cc", |
| 58 "rtp_frame_reference_finder.h", | 60 "rtp_frame_reference_finder.h", |
| 59 "rtt_filter.cc", | 61 "rtt_filter.cc", |
| 60 "rtt_filter.h", | 62 "rtt_filter.h", |
| 61 "session_info.cc", | 63 "session_info.cc", |
| 62 "session_info.h", | 64 "session_info.h", |
| 63 "timestamp_map.cc", | 65 "timestamp_map.cc", |
| 64 "timestamp_map.h", | 66 "timestamp_map.h", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 | 258 |
| 257 deps = [ | 259 deps = [ |
| 258 ":video_coding_utility", | 260 ":video_coding_utility", |
| 259 "../../common_video", | 261 "../../common_video", |
| 260 "../../system_wrappers", | 262 "../../system_wrappers", |
| 261 ] | 263 ] |
| 262 if (rtc_build_libvpx) { | 264 if (rtc_build_libvpx) { |
| 263 deps += [ rtc_libvpx_dir ] | 265 deps += [ rtc_libvpx_dir ] |
| 264 } | 266 } |
| 265 } | 267 } |
| OLD | NEW |