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

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

Issue 308043006: [Cast] Clean-up: Merge RtpReceiver+AudioReceiver+VideoReceiver-->FrameReceiver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed hclam's comments. Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « media/cast/audio_sender/audio_sender.cc ('k') | media/cast/cast_receiver.h » ('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 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 'cast_rtcp', 92 'cast_rtcp',
93 'cast_transport', 93 'cast_transport',
94 '<(DEPTH)/base/base.gyp:base', 94 '<(DEPTH)/base/base.gyp:base',
95 '<(DEPTH)/media/media.gyp:media', 95 '<(DEPTH)/media/media.gyp:media',
96 '<(DEPTH)/media/media.gyp:shared_memory_support', 96 '<(DEPTH)/media/media.gyp:shared_memory_support',
97 '<(DEPTH)/third_party/opus/opus.gyp:opus', 97 '<(DEPTH)/third_party/opus/opus.gyp:opus',
98 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx', 98 '<(DEPTH)/third_party/libvpx/libvpx.gyp:libvpx',
99 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 99 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
100 ], 100 ],
101 'sources': [ 101 'sources': [
102 'audio_receiver/audio_decoder.h',
103 'audio_receiver/audio_decoder.cc',
104 'audio_receiver/audio_receiver.h',
105 'audio_receiver/audio_receiver.cc',
106 'cast_receiver.h', 102 'cast_receiver.h',
107 'cast_receiver_impl.cc',
108 'cast_receiver_impl.h',
109 'framer/cast_message_builder.cc', 103 'framer/cast_message_builder.cc',
110 'framer/cast_message_builder.h', 104 'framer/cast_message_builder.h',
111 'framer/frame_buffer.cc', 105 'framer/frame_buffer.cc',
112 'framer/frame_buffer.h', 106 'framer/frame_buffer.h',
113 'framer/frame_id_map.cc', 107 'framer/frame_id_map.cc',
114 'framer/frame_id_map.h', 108 'framer/frame_id_map.h',
115 'framer/framer.cc', 109 'framer/framer.cc',
116 'framer/framer.h', 110 'framer/framer.h',
111 'receiver/audio_decoder.cc',
112 'receiver/audio_decoder.h',
113 'receiver/cast_receiver_impl.cc',
114 'receiver/cast_receiver_impl.h',
115 'receiver/frame_receiver.cc',
116 'receiver/frame_receiver.h',
117 'receiver/video_decoder.cc',
118 'receiver/video_decoder.h',
117 'rtp_receiver/receiver_stats.cc', 119 'rtp_receiver/receiver_stats.cc',
118 'rtp_receiver/receiver_stats.h', 120 'rtp_receiver/receiver_stats.h',
119 'rtp_receiver/rtp_receiver.cc',
120 'rtp_receiver/rtp_receiver.h',
121 'rtp_receiver/rtp_receiver_defines.cc', 121 'rtp_receiver/rtp_receiver_defines.cc',
122 'rtp_receiver/rtp_receiver_defines.h', 122 'rtp_receiver/rtp_receiver_defines.h',
123 'rtp_receiver/rtp_parser/rtp_parser.cc', 123 'rtp_receiver/rtp_parser/rtp_parser.cc',
124 'rtp_receiver/rtp_parser/rtp_parser.h', 124 'rtp_receiver/rtp_parser/rtp_parser.h',
125 'video_receiver/video_decoder.h',
126 'video_receiver/video_decoder.cc',
127 'video_receiver/video_receiver.h',
128 'video_receiver/video_receiver.cc',
129 ], # source 125 ], # source
130 }, 126 },
131 { 127 {
132 'target_name': 'cast_rtcp', 128 'target_name': 'cast_rtcp',
133 'type': 'static_library', 129 'type': 'static_library',
134 'include_dirs': [ 130 'include_dirs': [
135 '<(DEPTH)/', 131 '<(DEPTH)/',
136 ], 132 ],
137 'dependencies': [ 133 'dependencies': [
138 'cast_base', 134 'cast_base',
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 'transport/transport_audio_sender.cc', 220 'transport/transport_audio_sender.cc',
225 'transport/transport_audio_sender.h', 221 'transport/transport_audio_sender.h',
226 'transport/transport_video_sender.cc', 222 'transport/transport_video_sender.cc',
227 'transport/transport_video_sender.h', 223 'transport/transport_video_sender.h',
228 'transport/utility/transport_encryption_handler.cc', 224 'transport/utility/transport_encryption_handler.cc',
229 'transport/utility/transport_encryption_handler.h', 225 'transport/utility/transport_encryption_handler.h',
230 ], # source 226 ], # source
231 }, 227 },
232 ], 228 ],
233 } 229 }
OLDNEW
« no previous file with comments | « media/cast/audio_sender/audio_sender.cc ('k') | media/cast/cast_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698