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 "send_statistics_proxy.cc", | 27 "send_statistics_proxy.cc", |
28 "send_statistics_proxy.h", | 28 "send_statistics_proxy.h", |
| 29 "stats_counter.cc", |
| 30 "stats_counter.h", |
29 "stream_synchronization.cc", | 31 "stream_synchronization.cc", |
30 "stream_synchronization.h", | 32 "stream_synchronization.h", |
31 "video_capture_input.cc", | 33 "video_capture_input.cc", |
32 "video_capture_input.h", | 34 "video_capture_input.h", |
33 "video_decoder.cc", | 35 "video_decoder.cc", |
34 "video_encoder.cc", | 36 "video_encoder.cc", |
35 "video_receive_stream.cc", | 37 "video_receive_stream.cc", |
36 "video_receive_stream.h", | 38 "video_receive_stream.h", |
37 "video_send_stream.cc", | 39 "video_send_stream.cc", |
38 "video_send_stream.h", | 40 "video_send_stream.h", |
(...skipping 27 matching lines...) Expand all Loading... |
66 "../modules/rtp_rtcp", | 68 "../modules/rtp_rtcp", |
67 "../modules/utility", | 69 "../modules/utility", |
68 "../modules/video_capture:video_capture_module", | 70 "../modules/video_capture:video_capture_module", |
69 "../modules/video_coding", | 71 "../modules/video_coding", |
70 "../modules/video_processing", | 72 "../modules/video_processing", |
71 "../modules/video_render:video_render_module", | 73 "../modules/video_render:video_render_module", |
72 "../system_wrappers", | 74 "../system_wrappers", |
73 "../voice_engine", | 75 "../voice_engine", |
74 ] | 76 ] |
75 } | 77 } |
OLD | NEW |