Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: media/cast/BUILD.gn

Issue 513313004: Cast: Re-factor rtcp_sender.cc into rtcp_builder.cc and do some cleanup (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed leaky and unused testing_clock_ Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 component("cast") { 5 component("cast") {
6 deps = [ 6 deps = [
7 ":sender", 7 ":sender",
8 ":receiver", 8 ":receiver",
9 ] 9 ]
10 } 10 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "net/cast_transport_sender.h", 65 "net/cast_transport_sender.h",
66 "net/cast_transport_sender_impl.cc", 66 "net/cast_transport_sender_impl.cc",
67 "net/cast_transport_sender_impl.h", 67 "net/cast_transport_sender_impl.h",
68 "net/pacing/paced_sender.cc", 68 "net/pacing/paced_sender.cc",
69 "net/pacing/paced_sender.h", 69 "net/pacing/paced_sender.h",
70 "net/rtcp/receiver_rtcp_event_subscriber.cc", 70 "net/rtcp/receiver_rtcp_event_subscriber.cc",
71 "net/rtcp/rtcp_defines.cc", 71 "net/rtcp/rtcp_defines.cc",
72 "net/rtcp/rtcp_defines.h", 72 "net/rtcp/rtcp_defines.h",
73 "net/rtcp/rtcp.h", 73 "net/rtcp/rtcp.h",
74 "net/rtcp/rtcp.cc", 74 "net/rtcp/rtcp.cc",
75 "net/rtcp/rtcp_sender.cc", 75 "net/rtcp/rtcp_builder.cc",
76 "net/rtcp/rtcp_sender.h", 76 "net/rtcp/rtcp_builder.h",
77 "net/rtcp/rtcp_utility.cc", 77 "net/rtcp/rtcp_utility.cc",
78 "net/rtcp/rtcp_utility.h", 78 "net/rtcp/rtcp_utility.h",
79 "net/rtp/packet_storage.cc", 79 "net/rtp/packet_storage.cc",
80 "net/rtp/packet_storage.h", 80 "net/rtp/packet_storage.h",
81 "net/rtp/rtp_packetizer.cc", 81 "net/rtp/rtp_packetizer.cc",
82 "net/rtp/rtp_packetizer.h", 82 "net/rtp/rtp_packetizer.h",
83 "net/rtp/rtp_sender.cc", 83 "net/rtp/rtp_sender.cc",
84 "net/rtp/rtp_sender.h", 84 "net/rtp/rtp_sender.h",
85 "net/udp_transport.cc", 85 "net/udp_transport.cc",
86 "net/udp_transport.h", 86 "net/udp_transport.h",
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 "logging/serialize_deserialize_test.cc", 222 "logging/serialize_deserialize_test.cc",
223 "logging/logging_impl_unittest.cc", 223 "logging/logging_impl_unittest.cc",
224 "logging/logging_raw_unittest.cc", 224 "logging/logging_raw_unittest.cc",
225 "logging/receiver_time_offset_estimator_impl_unittest.cc", 225 "logging/receiver_time_offset_estimator_impl_unittest.cc",
226 "logging/simple_event_subscriber_unittest.cc", 226 "logging/simple_event_subscriber_unittest.cc",
227 "logging/stats_event_subscriber_unittest.cc", 227 "logging/stats_event_subscriber_unittest.cc",
228 "net/cast_transport_sender_impl_unittest.cc", 228 "net/cast_transport_sender_impl_unittest.cc",
229 "net/pacing/mock_paced_packet_sender.cc", 229 "net/pacing/mock_paced_packet_sender.cc",
230 "net/pacing/mock_paced_packet_sender.h", 230 "net/pacing/mock_paced_packet_sender.h",
231 "net/pacing/paced_sender_unittest.cc", 231 "net/pacing/paced_sender_unittest.cc",
232 "net/rtcp/rtcp_sender_unittest.cc", 232 "net/rtcp/rtcp_builder_unittest.cc",
233 "net/rtcp/rtcp_unittest.cc", 233 "net/rtcp/rtcp_unittest.cc",
234 "net/rtcp/rtcp_utility_unittest.cc", 234 "net/rtcp/rtcp_utility_unittest.cc",
235 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc", 235 "net/rtcp/receiver_rtcp_event_subscriber_unittest.cc",
236 # TODO(miu): The following two are test utility modules. Rename/move the files. 236 # TODO(miu): The following two are test utility modules. Rename/move the files.
237 "net/rtcp/test_rtcp_packet_builder.cc", 237 "net/rtcp/test_rtcp_packet_builder.cc",
238 "net/rtcp/test_rtcp_packet_builder.h", 238 "net/rtcp/test_rtcp_packet_builder.h",
239 "net/rtp/cast_message_builder_unittest.cc", 239 "net/rtp/cast_message_builder_unittest.cc",
240 "net/rtp/frame_buffer_unittest.cc", 240 "net/rtp/frame_buffer_unittest.cc",
241 "net/rtp/framer_unittest.cc", 241 "net/rtp/framer_unittest.cc",
242 "net/rtp/mock_rtp_payload_feedback.cc", 242 "net/rtp/mock_rtp_payload_feedback.cc",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 sources = [ 310 sources = [
311 "test/utility/udp_proxy_main.cc", 311 "test/utility/udp_proxy_main.cc",
312 ] 312 ]
313 313
314 deps = [ 314 deps = [
315 ":test_support", 315 ":test_support",
316 "//base", 316 "//base",
317 "//net", 317 "//net",
318 ] 318 ]
319 } 319 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698