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

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

Issue 1377273003: cast: cleanup rtp header and parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 2 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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cast") { 7 component("cast") {
8 deps = [ 8 deps = [
9 ":sender", 9 ":sender",
10 ":receiver", 10 ":receiver",
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "net/rtp/cast_message_builder.cc", 80 "net/rtp/cast_message_builder.cc",
81 "net/rtp/cast_message_builder.h", 81 "net/rtp/cast_message_builder.h",
82 "net/rtp/frame_buffer.cc", 82 "net/rtp/frame_buffer.cc",
83 "net/rtp/frame_buffer.h", 83 "net/rtp/frame_buffer.h",
84 "net/rtp/framer.cc", 84 "net/rtp/framer.cc",
85 "net/rtp/framer.h", 85 "net/rtp/framer.h",
86 "net/rtp/packet_storage.cc", 86 "net/rtp/packet_storage.cc",
87 "net/rtp/packet_storage.h", 87 "net/rtp/packet_storage.h",
88 "net/rtp/receiver_stats.cc", 88 "net/rtp/receiver_stats.cc",
89 "net/rtp/receiver_stats.h", 89 "net/rtp/receiver_stats.h",
90 "net/rtp/rtp_defines.cc",
91 "net/rtp/rtp_defines.h",
90 "net/rtp/rtp_packetizer.cc", 92 "net/rtp/rtp_packetizer.cc",
91 "net/rtp/rtp_packetizer.h", 93 "net/rtp/rtp_packetizer.h",
92 "net/rtp/rtp_parser.cc", 94 "net/rtp/rtp_parser.cc",
93 "net/rtp/rtp_parser.h", 95 "net/rtp/rtp_parser.h",
94 "net/rtp/rtp_receiver_defines.cc",
95 "net/rtp/rtp_receiver_defines.h",
96 "net/rtp/rtp_sender.cc", 96 "net/rtp/rtp_sender.cc",
97 "net/rtp/rtp_sender.h", 97 "net/rtp/rtp_sender.h",
98 "net/udp_transport.cc", 98 "net/udp_transport.cc",
99 "net/udp_transport.h", 99 "net/udp_transport.h",
100 ] 100 ]
101 101
102 deps = [ 102 deps = [
103 ":common", 103 ":common",
104 ] 104 ]
105 } 105 }
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 # TODO(miu): The following two are test utility modules. Rename/move the fi les. 303 # TODO(miu): The following two are test utility modules. Rename/move the fi les.
304 "net/rtcp/test_rtcp_packet_builder.cc", 304 "net/rtcp/test_rtcp_packet_builder.cc",
305 "net/rtcp/test_rtcp_packet_builder.h", 305 "net/rtcp/test_rtcp_packet_builder.h",
306 "net/rtp/cast_message_builder_unittest.cc", 306 "net/rtp/cast_message_builder_unittest.cc",
307 "net/rtp/frame_buffer_unittest.cc", 307 "net/rtp/frame_buffer_unittest.cc",
308 "net/rtp/framer_unittest.cc", 308 "net/rtp/framer_unittest.cc",
309 "net/rtp/mock_rtp_payload_feedback.cc", 309 "net/rtp/mock_rtp_payload_feedback.cc",
310 "net/rtp/mock_rtp_payload_feedback.h", 310 "net/rtp/mock_rtp_payload_feedback.h",
311 "net/rtp/packet_storage_unittest.cc", 311 "net/rtp/packet_storage_unittest.cc",
312 "net/rtp/receiver_stats_unittest.cc", 312 "net/rtp/receiver_stats_unittest.cc",
313 "net/rtp/rtp_header_parser.cc",
314 "net/rtp/rtp_header_parser.h",
315 "net/rtp/rtp_packet_builder.cc", 313 "net/rtp/rtp_packet_builder.cc",
316 "net/rtp/rtp_packetizer_unittest.cc", 314 "net/rtp/rtp_packetizer_unittest.cc",
317 "net/rtp/rtp_parser_unittest.cc", 315 "net/rtp/rtp_parser_unittest.cc",
318 "net/rtp/rtp_receiver_defines.h",
319 "net/udp_transport_unittest.cc", 316 "net/udp_transport_unittest.cc",
320 "receiver/audio_decoder_unittest.cc", 317 "receiver/audio_decoder_unittest.cc",
321 "receiver/frame_receiver_unittest.cc", 318 "receiver/frame_receiver_unittest.cc",
322 "receiver/video_decoder_unittest.cc", 319 "receiver/video_decoder_unittest.cc",
323 "sender/audio_encoder_unittest.cc", 320 "sender/audio_encoder_unittest.cc",
324 "sender/audio_sender_unittest.cc", 321 "sender/audio_sender_unittest.cc",
325 "sender/congestion_control_unittest.cc", 322 "sender/congestion_control_unittest.cc",
326 "sender/external_video_encoder_unittest.cc", 323 "sender/external_video_encoder_unittest.cc",
327 "sender/fake_video_encode_accelerator_factory.cc", 324 "sender/fake_video_encode_accelerator_factory.cc",
328 "sender/fake_video_encode_accelerator_factory.h", 325 "sender/fake_video_encode_accelerator_factory.h",
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 "test/utility/tap_proxy.cc", 432 "test/utility/tap_proxy.cc",
436 ] 433 ]
437 434
438 deps = [ 435 deps = [
439 ":test_support", 436 ":test_support",
440 "//base", 437 "//base",
441 "//media", 438 "//media",
442 ] 439 ]
443 } 440 }
444 } 441 }
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