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

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

Issue 765643006: Cast: Make receiver use cast_transport (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix end2end test Created 6 years 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'receiver/video_decoder.cc', 108 'receiver/video_decoder.cc',
109 'receiver/video_decoder.h', 109 'receiver/video_decoder.h',
110 'net/rtp/cast_message_builder.cc', 110 'net/rtp/cast_message_builder.cc',
111 'net/rtp/cast_message_builder.h', 111 'net/rtp/cast_message_builder.h',
112 'net/rtp/frame_buffer.cc', 112 'net/rtp/frame_buffer.cc',
113 'net/rtp/frame_buffer.h', 113 'net/rtp/frame_buffer.h',
114 'net/rtp/framer.cc', 114 'net/rtp/framer.cc',
115 'net/rtp/framer.h', 115 'net/rtp/framer.h',
116 'net/rtp/receiver_stats.cc', 116 'net/rtp/receiver_stats.cc',
117 'net/rtp/receiver_stats.h', 117 'net/rtp/receiver_stats.h',
118 'net/rtp/rtp_parser.cc',
119 'net/rtp/rtp_parser.h',
120 'net/rtp/rtp_receiver_defines.cc', 118 'net/rtp/rtp_receiver_defines.cc',
121 'net/rtp/rtp_receiver_defines.h', 119 'net/rtp/rtp_receiver_defines.h',
122 ], # source 120 ], # source
123 'conditions': [ 121 'conditions': [
124 # use a restricted subset of media and no software codecs on iOS 122 # use a restricted subset of media and no software codecs on iOS
125 ['OS=="ios"', { 123 ['OS=="ios"', {
126 'dependencies': [ '<(DEPTH)/media/media.gyp:media_for_cast_ios' ], 124 'dependencies': [ '<(DEPTH)/media/media.gyp:media_for_cast_ios' ],
127 'dependencies!': [ 125 'dependencies!': [
128 '<(DEPTH)/media/media.gyp:media', 126 '<(DEPTH)/media/media.gyp:media',
129 '<(DEPTH)/third_party/opus/opus.gyp:opus', 127 '<(DEPTH)/third_party/opus/opus.gyp:opus',
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 'net/rtcp/rtcp_defines.cc', 226 'net/rtcp/rtcp_defines.cc',
229 'net/rtcp/rtcp_defines.h', 227 'net/rtcp/rtcp_defines.h',
230 'net/rtcp/rtcp.h', 228 'net/rtcp/rtcp.h',
231 'net/rtcp/rtcp.cc', 229 'net/rtcp/rtcp.cc',
232 'net/rtcp/rtcp_utility.cc', 230 'net/rtcp/rtcp_utility.cc',
233 'net/rtcp/rtcp_utility.h', 231 'net/rtcp/rtcp_utility.h',
234 'net/rtp/packet_storage.cc', 232 'net/rtp/packet_storage.cc',
235 'net/rtp/packet_storage.h', 233 'net/rtp/packet_storage.h',
236 'net/rtp/rtp_packetizer.cc', 234 'net/rtp/rtp_packetizer.cc',
237 'net/rtp/rtp_packetizer.h', 235 'net/rtp/rtp_packetizer.h',
236 'net/rtp/rtp_parser.cc',
237 'net/rtp/rtp_parser.h',
238 'net/rtp/rtp_sender.cc', 238 'net/rtp/rtp_sender.cc',
239 'net/rtp/rtp_sender.h', 239 'net/rtp/rtp_sender.h',
240 'net/udp_transport.cc', 240 'net/udp_transport.cc',
241 'net/udp_transport.h', 241 'net/udp_transport.h',
242 ], # source 242 ], # source
243 }, 243 },
244 ], 244 ],
245 } 245 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698