| 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 |
| 11 source_set("video") { | 11 source_set("video") { |
| 12 sources = [ | 12 sources = [ |
| 13 "call_stats.cc", | 13 "call_stats.cc", |
| 14 "call_stats.h", | 14 "call_stats.h", |
| 15 "encoded_frame_callback_adapter.cc", | 15 "encoded_frame_callback_adapter.cc", |
| 16 "encoded_frame_callback_adapter.h", | 16 "encoded_frame_callback_adapter.h", |
| 17 "encoder_state_feedback.cc", | 17 "encoder_state_feedback.cc", |
| 18 "encoder_state_feedback.h", | 18 "encoder_state_feedback.h", |
| 19 "overuse_frame_detector.cc", | 19 "overuse_frame_detector.cc", |
| 20 "overuse_frame_detector.h", | 20 "overuse_frame_detector.h", |
| 21 "payload_router.cc", | 21 "payload_router.cc", |
| 22 "payload_router.h", | 22 "payload_router.h", |
| 23 "receive_statistics_proxy.cc", | 23 "receive_statistics_proxy.cc", |
| 24 "receive_statistics_proxy.h", | 24 "receive_statistics_proxy.h", |
| 25 "report_block_stats.cc", | 25 "report_block_stats.cc", |
| 26 "report_block_stats.h", | 26 "report_block_stats.h", |
| 27 "rtp_stream_receiver.cc", | 27 "rtp_stream_receiver.cc", |
| 28 "rtp_stream_receiver.h", | 28 "rtp_stream_receiver.h", |
| 29 "send_delay_stats.cc", |
| 30 "send_delay_stats.h", |
| 29 "send_statistics_proxy.cc", | 31 "send_statistics_proxy.cc", |
| 30 "send_statistics_proxy.h", | 32 "send_statistics_proxy.h", |
| 31 "stream_synchronization.cc", | 33 "stream_synchronization.cc", |
| 32 "stream_synchronization.h", | 34 "stream_synchronization.h", |
| 33 "video_capture_input.cc", | 35 "video_capture_input.cc", |
| 34 "video_capture_input.h", | 36 "video_capture_input.h", |
| 35 "video_decoder.cc", | 37 "video_decoder.cc", |
| 36 "video_encoder.cc", | 38 "video_encoder.cc", |
| 37 "video_receive_stream.cc", | 39 "video_receive_stream.cc", |
| 38 "video_receive_stream.h", | 40 "video_receive_stream.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 68 "../modules/remote_bitrate_estimator", | 70 "../modules/remote_bitrate_estimator", |
| 69 "../modules/rtp_rtcp", | 71 "../modules/rtp_rtcp", |
| 70 "../modules/utility", | 72 "../modules/utility", |
| 71 "../modules/video_capture:video_capture_module", | 73 "../modules/video_capture:video_capture_module", |
| 72 "../modules/video_coding", | 74 "../modules/video_coding", |
| 73 "../modules/video_processing", | 75 "../modules/video_processing", |
| 74 "../system_wrappers", | 76 "../system_wrappers", |
| 75 "../voice_engine", | 77 "../voice_engine", |
| 76 ] | 78 ] |
| 77 } | 79 } |
| OLD | NEW |