| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "../api/audio_codecs:audio_codecs_api", | 30 "../api/audio_codecs:audio_codecs_api", |
| 31 "../base:rtc_base", | 31 "../base:rtc_base", |
| 32 "../base:rtc_base_approved", | 32 "../base:rtc_base_approved", |
| 33 ] | 33 ] |
| 34 } | 34 } |
| 35 | 35 |
| 36 # TODO(nisse): These RTP targets should be moved elsewhere | 36 # TODO(nisse): These RTP targets should be moved elsewhere |
| 37 # when interfaces have stabilized. | 37 # when interfaces have stabilized. |
| 38 rtc_source_set("rtp_interfaces") { | 38 rtc_source_set("rtp_interfaces") { |
| 39 sources = [ | 39 sources = [ |
| 40 "rtcp_packet_sink_interface.h", | |
| 41 "rtp_packet_sink_interface.h", | 40 "rtp_packet_sink_interface.h", |
| 42 "rtp_stream_receiver_controller_interface.h", | 41 "rtp_stream_receiver_controller_interface.h", |
| 43 "rtp_transport_controller_send_interface.h", | 42 "rtp_transport_controller_send_interface.h", |
| 44 ] | 43 ] |
| 45 deps = [ | |
| 46 "//webrtc/base:rtc_base_approved", | |
| 47 ] | |
| 48 } | 44 } |
| 49 | 45 |
| 50 rtc_source_set("rtp_receiver") { | 46 rtc_source_set("rtp_receiver") { |
| 51 sources = [ | 47 sources = [ |
| 52 "rsid_resolution_observer.h", | |
| 53 "rtcp_demuxer.cc", | |
| 54 "rtcp_demuxer.h", | |
| 55 "rtp_demuxer.cc", | 48 "rtp_demuxer.cc", |
| 56 "rtp_demuxer.h", | 49 "rtp_demuxer.h", |
| 57 "rtp_rtcp_demuxer_helper.cc", | |
| 58 "rtp_rtcp_demuxer_helper.h", | |
| 59 "rtp_stream_receiver_controller.cc", | 50 "rtp_stream_receiver_controller.cc", |
| 60 "rtp_stream_receiver_controller.h", | 51 "rtp_stream_receiver_controller.h", |
| 61 "rtx_receive_stream.cc", | 52 "rtx_receive_stream.cc", |
| 62 "rtx_receive_stream.h", | 53 "rtx_receive_stream.h", |
| 63 ] | 54 ] |
| 64 deps = [ | 55 deps = [ |
| 65 ":rtp_interfaces", | 56 ":rtp_interfaces", |
| 57 "../base:rtc_base_approved", |
| 66 "../modules/rtp_rtcp", | 58 "../modules/rtp_rtcp", |
| 67 "//webrtc:webrtc_common", | |
| 68 "//webrtc/base:rtc_base_approved", | |
| 69 ] | 59 ] |
| 70 } | 60 } |
| 71 | 61 |
| 72 rtc_source_set("rtp_sender") { | 62 rtc_source_set("rtp_sender") { |
| 73 sources = [ | 63 sources = [ |
| 74 "rtp_transport_controller_send.cc", | 64 "rtp_transport_controller_send.cc", |
| 75 "rtp_transport_controller_send.h", | 65 "rtp_transport_controller_send.h", |
| 76 ] | 66 ] |
| 77 deps = [ | 67 deps = [ |
| 78 ":rtp_interfaces", | 68 ":rtp_interfaces", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 # gets additional generated targets which would require many lines here to | 120 # gets additional generated targets which would require many lines here to |
| 131 # cover (which would be confusing to read and hard to maintain). | 121 # cover (which would be confusing to read and hard to maintain). |
| 132 if (!is_android && !is_ios) { | 122 if (!is_android && !is_ios) { |
| 133 visibility = [ "//webrtc:video_engine_tests" ] | 123 visibility = [ "//webrtc:video_engine_tests" ] |
| 134 } | 124 } |
| 135 sources = [ | 125 sources = [ |
| 136 "bitrate_allocator_unittest.cc", | 126 "bitrate_allocator_unittest.cc", |
| 137 "bitrate_estimator_tests.cc", | 127 "bitrate_estimator_tests.cc", |
| 138 "call_unittest.cc", | 128 "call_unittest.cc", |
| 139 "flexfec_receive_stream_unittest.cc", | 129 "flexfec_receive_stream_unittest.cc", |
| 140 "rtcp_demuxer_unittest.cc", | |
| 141 "rtp_demuxer_unittest.cc", | 130 "rtp_demuxer_unittest.cc", |
| 142 "rtp_rtcp_demuxer_helper_unittest.cc", | |
| 143 "rtx_receive_stream_unittest.cc", | 131 "rtx_receive_stream_unittest.cc", |
| 144 ] | 132 ] |
| 145 deps = [ | 133 deps = [ |
| 146 ":call", | 134 ":call", |
| 147 ":rtp_interfaces", | 135 ":rtp_interfaces", |
| 148 ":rtp_receiver", | 136 ":rtp_receiver", |
| 149 ":rtp_sender", | 137 ":rtp_sender", |
| 150 "../api:mock_audio_mixer", | 138 "../api:mock_audio_mixer", |
| 151 "../base:rtc_base_approved", | 139 "../base:rtc_base_approved", |
| 152 "../logging:rtc_event_log_api", | 140 "../logging:rtc_event_log_api", |
| 153 "../modules/audio_device:mock_audio_device", | 141 "../modules/audio_device:mock_audio_device", |
| 154 "../modules/audio_mixer", | 142 "../modules/audio_mixer", |
| 155 "../modules/bitrate_controller", | 143 "../modules/bitrate_controller", |
| 156 "../modules/congestion_controller:mock_congestion_controller", | 144 "../modules/congestion_controller:mock_congestion_controller", |
| 157 "../modules/pacing", | 145 "../modules/pacing", |
| 158 "../modules/rtp_rtcp", | 146 "../modules/rtp_rtcp", |
| 159 "../modules/rtp_rtcp:mock_rtp_rtcp", | 147 "../modules/rtp_rtcp:mock_rtp_rtcp", |
| 160 "../system_wrappers", | 148 "../system_wrappers", |
| 161 "../test:audio_codec_mocks", | 149 "../test:audio_codec_mocks", |
| 162 "../test:direct_transport", | 150 "../test:direct_transport", |
| 163 "../test:test_common", | 151 "../test:test_common", |
| 164 "../test:test_support", | 152 "../test:test_support", |
| 165 "../test:video_test_common", | 153 "../test:video_test_common", |
| 166 "//testing/gmock", | 154 "//testing/gmock", |
| 167 "//testing/gtest", | 155 "//testing/gtest", |
| 168 "//webrtc:webrtc_common", | |
| 169 ] | 156 ] |
| 170 if (!build_with_chromium && is_clang) { | 157 if (!build_with_chromium && is_clang) { |
| 171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 158 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 159 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 173 } | 160 } |
| 174 } | 161 } |
| 175 | 162 |
| 176 rtc_source_set("call_perf_tests") { | 163 rtc_source_set("call_perf_tests") { |
| 177 testonly = true | 164 testonly = true |
| 178 | 165 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 207 "//testing/gtest", | 194 "//testing/gtest", |
| 208 "//webrtc/test:field_trial", | 195 "//webrtc/test:field_trial", |
| 209 "//webrtc/test:test_common", | 196 "//webrtc/test:test_common", |
| 210 ] | 197 ] |
| 211 if (!build_with_chromium && is_clang) { | 198 if (!build_with_chromium && is_clang) { |
| 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 199 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 200 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 214 } | 201 } |
| 215 } | 202 } |
| 216 } | 203 } |
| OLD | NEW |