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 import("//testing/test.gni") | 10 import("//testing/test.gni") |
(...skipping 17 matching lines...) Expand all Loading... |
28 "rtp_streams_synchronizer.cc", | 28 "rtp_streams_synchronizer.cc", |
29 "rtp_streams_synchronizer.h", | 29 "rtp_streams_synchronizer.h", |
30 "send_delay_stats.cc", | 30 "send_delay_stats.cc", |
31 "send_delay_stats.h", | 31 "send_delay_stats.h", |
32 "send_statistics_proxy.cc", | 32 "send_statistics_proxy.cc", |
33 "send_statistics_proxy.h", | 33 "send_statistics_proxy.h", |
34 "stats_counter.cc", | 34 "stats_counter.cc", |
35 "stats_counter.h", | 35 "stats_counter.h", |
36 "stream_synchronization.cc", | 36 "stream_synchronization.cc", |
37 "stream_synchronization.h", | 37 "stream_synchronization.h", |
| 38 "video_capture_input.cc", |
| 39 "video_capture_input.h", |
38 "video_decoder.cc", | 40 "video_decoder.cc", |
39 "video_encoder.cc", | 41 "video_encoder.cc", |
40 "video_receive_stream.cc", | 42 "video_receive_stream.cc", |
41 "video_receive_stream.h", | 43 "video_receive_stream.h", |
42 "video_send_stream.cc", | 44 "video_send_stream.cc", |
43 "video_send_stream.h", | 45 "video_send_stream.h", |
44 "video_stream_decoder.cc", | 46 "video_stream_decoder.cc", |
45 "video_stream_decoder.h", | 47 "video_stream_decoder.h", |
46 "vie_encoder.cc", | 48 "vie_encoder.cc", |
47 "vie_encoder.h", | 49 "vie_encoder.h", |
48 "vie_remb.cc", | 50 "vie_remb.cc", |
49 "vie_remb.h", | 51 "vie_remb.h", |
50 ] | 52 ] |
51 | 53 |
52 configs += [ "..:common_config" ] | 54 configs += [ "..:common_config" ] |
53 public_configs = [ "..:common_inherited_config" ] | 55 public_configs = [ "..:common_inherited_config" ] |
54 | 56 |
55 if (is_clang) { | 57 if (is_clang) { |
56 # Suppress warnings from Chrome's Clang plugins. | 58 # Suppress warnings from Chrome's Clang plugins. |
57 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 59 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
58 configs -= [ "//build/config/clang:find_bad_constructs" ] | 60 configs -= [ "//build/config/clang:find_bad_constructs" ] |
59 } | 61 } |
60 | 62 |
61 deps = [ | 63 deps = [ |
62 "..:rtc_event_log", | 64 "..:rtc_event_log", |
63 "..:webrtc_common", | 65 "..:webrtc_common", |
64 "../base:rtc_base_approved", | 66 "../base:rtc_base_approved", |
65 "../base:rtc_task_queue", | |
66 "../common_video", | 67 "../common_video", |
67 "../modules/bitrate_controller", | 68 "../modules/bitrate_controller", |
68 "../modules/congestion_controller", | 69 "../modules/congestion_controller", |
69 "../modules/pacing", | 70 "../modules/pacing", |
70 "../modules/remote_bitrate_estimator", | 71 "../modules/remote_bitrate_estimator", |
71 "../modules/rtp_rtcp", | 72 "../modules/rtp_rtcp", |
72 "../modules/utility", | 73 "../modules/utility", |
73 "../modules/video_capture:video_capture_module", | 74 "../modules/video_capture:video_capture_module", |
74 "../modules/video_coding", | 75 "../modules/video_coding", |
75 "../modules/video_processing", | 76 "../modules/video_processing", |
(...skipping 10 matching lines...) Expand all Loading... |
86 "call_stats_unittest.cc", | 87 "call_stats_unittest.cc", |
87 "encoder_state_feedback_unittest.cc", | 88 "encoder_state_feedback_unittest.cc", |
88 "end_to_end_tests.cc", | 89 "end_to_end_tests.cc", |
89 "overuse_frame_detector_unittest.cc", | 90 "overuse_frame_detector_unittest.cc", |
90 "payload_router_unittest.cc", | 91 "payload_router_unittest.cc", |
91 "report_block_stats_unittest.cc", | 92 "report_block_stats_unittest.cc", |
92 "send_delay_stats_unittest.cc", | 93 "send_delay_stats_unittest.cc", |
93 "send_statistics_proxy_unittest.cc", | 94 "send_statistics_proxy_unittest.cc", |
94 "stats_counter_unittest.cc", | 95 "stats_counter_unittest.cc", |
95 "stream_synchronization_unittest.cc", | 96 "stream_synchronization_unittest.cc", |
| 97 "video_capture_input_unittest.cc", |
96 "video_decoder_unittest.cc", | 98 "video_decoder_unittest.cc", |
97 "video_encoder_unittest.cc", | 99 "video_encoder_unittest.cc", |
98 "video_send_stream_tests.cc", | 100 "video_send_stream_tests.cc", |
99 "vie_encoder_unittest.cc", | |
100 "vie_remb_unittest.cc", | 101 "vie_remb_unittest.cc", |
101 ] | 102 ] |
102 configs += [ "..:common_config" ] | 103 configs += [ "..:common_config" ] |
103 deps = [ | 104 deps = [ |
104 ":video", | 105 ":video", |
105 "//testing/gmock", | 106 "//testing/gmock", |
106 "//testing/gtest", | 107 "//testing/gtest", |
107 ] | 108 ] |
108 if (is_clang) { | 109 if (is_clang) { |
109 # Suppress warnings from the Chromium Clang plugin. | 110 # Suppress warnings from the Chromium Clang plugin. |
110 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 111 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
111 configs -= [ "//build/config/clang:find_bad_constructs" ] | 112 configs -= [ "//build/config/clang:find_bad_constructs" ] |
112 } | 113 } |
113 } | 114 } |
114 } | 115 } |
OLD | NEW |