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

Side by Side Diff: media/cast/cast.gyp

Issue 1377273003: cast: cleanup rtp header and parsing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'variables': { 6 'variables': {
7 'include_tests%': 1, 7 'include_tests%': 1,
8 'chromium_code': 1, 8 'chromium_code': 1,
9 }, 9 },
10 'conditions': [ 10 'conditions': [
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 'sources': [ 100 'sources': [
101 'cast_receiver.h', 101 'cast_receiver.h',
102 'net/rtp/cast_message_builder.cc', 102 'net/rtp/cast_message_builder.cc',
103 'net/rtp/cast_message_builder.h', 103 'net/rtp/cast_message_builder.h',
104 'net/rtp/frame_buffer.cc', 104 'net/rtp/frame_buffer.cc',
105 'net/rtp/frame_buffer.h', 105 'net/rtp/frame_buffer.h',
106 'net/rtp/framer.cc', 106 'net/rtp/framer.cc',
107 'net/rtp/framer.h', 107 'net/rtp/framer.h',
108 'net/rtp/receiver_stats.cc', 108 'net/rtp/receiver_stats.cc',
109 'net/rtp/receiver_stats.h', 109 'net/rtp/receiver_stats.h',
110 'net/rtp/rtp_receiver_defines.cc', 110 'net/rtp/rtp_defines.h',
miu 2015/10/01 00:36:22 Should rtp_defines.* be in the cast_net target ins
Irfan 2015/10/01 19:26:52 Done.
111 'net/rtp/rtp_receiver_defines.h', 111 'net/rtp/rtp_defines.cc',
112 'receiver/audio_decoder.cc', 112 'receiver/audio_decoder.cc',
113 'receiver/audio_decoder.h', 113 'receiver/audio_decoder.h',
114 'receiver/cast_receiver_impl.cc', 114 'receiver/cast_receiver_impl.cc',
115 'receiver/cast_receiver_impl.h', 115 'receiver/cast_receiver_impl.h',
116 'receiver/frame_receiver.cc', 116 'receiver/frame_receiver.cc',
117 'receiver/frame_receiver.h', 117 'receiver/frame_receiver.h',
118 'receiver/video_decoder.cc', 118 'receiver/video_decoder.cc',
119 'receiver/video_decoder.h', 119 'receiver/video_decoder.h',
120 ], # source 120 ], # source
121 'conditions': [ 121 'conditions': [
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 'net/rtp/rtp_parser.cc', 249 'net/rtp/rtp_parser.cc',
250 'net/rtp/rtp_parser.h', 250 'net/rtp/rtp_parser.h',
251 'net/rtp/rtp_sender.cc', 251 'net/rtp/rtp_sender.cc',
252 'net/rtp/rtp_sender.h', 252 'net/rtp/rtp_sender.h',
253 'net/udp_transport.cc', 253 'net/udp_transport.cc',
254 'net/udp_transport.h', 254 'net/udp_transport.h',
255 ], # source 255 ], # source
256 }, 256 },
257 ], 257 ],
258 } 258 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698