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