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 "../video_engine/call_stats.cc", |
| 14 "../video_engine/call_stats.h", |
| 15 "../video_engine/encoder_state_feedback.cc", |
| 16 "../video_engine/encoder_state_feedback.h", |
| 17 "../video_engine/overuse_frame_detector.cc", |
| 18 "../video_engine/overuse_frame_detector.h", |
| 19 "../video_engine/payload_router.cc", |
| 20 "../video_engine/payload_router.h", |
| 21 "../video_engine/report_block_stats.cc", |
| 22 "../video_engine/report_block_stats.h", |
| 23 "../video_engine/stream_synchronization.cc", |
| 24 "../video_engine/stream_synchronization.h", |
| 25 "../video_engine/vie_capturer.cc", |
| 26 "../video_engine/vie_capturer.h", |
| 27 "../video_engine/vie_channel.cc", |
| 28 "../video_engine/vie_channel.h", |
| 29 "../video_engine/vie_channel_group.cc", |
| 30 "../video_engine/vie_channel_group.h", |
| 31 "../video_engine/vie_defines.h", |
| 32 "../video_engine/vie_encoder.cc", |
| 33 "../video_engine/vie_encoder.h", |
| 34 "../video_engine/vie_receiver.cc", |
| 35 "../video_engine/vie_receiver.h", |
| 36 "../video_engine/vie_remb.cc", |
| 37 "../video_engine/vie_remb.h", |
| 38 "../video_engine/vie_sync_module.cc", |
| 39 "../video_engine/vie_sync_module.h", |
13 "audio_receive_stream.cc", | 40 "audio_receive_stream.cc", |
14 "audio_receive_stream.h", | 41 "audio_receive_stream.h", |
15 "call.cc", | 42 "call.cc", |
16 "encoded_frame_callback_adapter.cc", | 43 "encoded_frame_callback_adapter.cc", |
17 "encoded_frame_callback_adapter.h", | 44 "encoded_frame_callback_adapter.h", |
18 "receive_statistics_proxy.cc", | 45 "receive_statistics_proxy.cc", |
19 "receive_statistics_proxy.h", | 46 "receive_statistics_proxy.h", |
20 "send_statistics_proxy.cc", | 47 "send_statistics_proxy.cc", |
21 "send_statistics_proxy.h", | 48 "send_statistics_proxy.h", |
22 "transport_adapter.cc", | 49 "transport_adapter.cc", |
(...skipping 10 matching lines...) Expand all Loading... |
33 public_configs = [ "..:common_inherited_config" ] | 60 public_configs = [ "..:common_inherited_config" ] |
34 | 61 |
35 if (is_clang) { | 62 if (is_clang) { |
36 # Suppress warnings from Chrome's Clang plugins. | 63 # Suppress warnings from Chrome's Clang plugins. |
37 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 64 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
38 configs -= [ "//build/config/clang:find_bad_constructs" ] | 65 configs -= [ "//build/config/clang:find_bad_constructs" ] |
39 } | 66 } |
40 | 67 |
41 deps = [ | 68 deps = [ |
42 "..:webrtc_common", | 69 "..:webrtc_common", |
43 "../video_engine:video_engine_core", | 70 "../common_video", |
| 71 "../modules/bitrate_controller", |
| 72 "../modules/rtp_rtcp", |
| 73 "../modules/utility", |
| 74 "../modules/video_capture:video_capture_module", |
| 75 "../modules/video_coding", |
| 76 "../modules/video_processing", |
| 77 "../modules/video_render:video_render_module", |
| 78 "../voice_engine", |
| 79 "../system_wrappers", |
44 ] | 80 ] |
45 } | 81 } |
OLD | NEW |