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

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

Issue 450693006: VideoToolbox encoder for cast senders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove useless include and clean up in unit tests. Created 6 years, 1 month 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 | « media/cast/BUILD.gn ('k') | media/cast/cast_sender_impl.cc » ('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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 ], 185 ],
186 'sources!': [ 186 'sources!': [
187 'sender/external_video_encoder.h', 187 'sender/external_video_encoder.h',
188 'sender/external_video_encoder.cc', 188 'sender/external_video_encoder.cc',
189 'sender/video_encoder_impl.h', 189 'sender/video_encoder_impl.h',
190 'sender/video_encoder_impl.cc', 190 'sender/video_encoder_impl.cc',
191 'sender/vp8_encoder.cc', 191 'sender/vp8_encoder.cc',
192 'sender/vp8_encoder.h', 192 'sender/vp8_encoder.h',
193 ], 193 ],
194 }], # OS=="ios" 194 }], # OS=="ios"
195 # iOS and OS X encoders
196 ['OS=="ios" or OS=="mac"', {
197 'sources': [
198 'sender/h264_vt_encoder.cc',
199 'sender/h264_vt_encoder.h',
200 ],
201 }], # OS=="ios" or OS=="mac"
195 ], # conditions 202 ], # conditions
196 }, 203 },
197 { 204 {
198 # GN version: //media/cast:net 205 # GN version: //media/cast:net
199 'target_name': 'cast_net', 206 'target_name': 'cast_net',
200 'type': 'static_library', 207 'type': 'static_library',
201 'include_dirs': [ 208 'include_dirs': [
202 '<(DEPTH)/', 209 '<(DEPTH)/',
203 ], 210 ],
204 'dependencies': [ 211 'dependencies': [
(...skipping 24 matching lines...) Expand all
229 'net/rtp/rtp_packetizer.cc', 236 'net/rtp/rtp_packetizer.cc',
230 'net/rtp/rtp_packetizer.h', 237 'net/rtp/rtp_packetizer.h',
231 'net/rtp/rtp_sender.cc', 238 'net/rtp/rtp_sender.cc',
232 'net/rtp/rtp_sender.h', 239 'net/rtp/rtp_sender.h',
233 'net/udp_transport.cc', 240 'net/udp_transport.cc',
234 'net/udp_transport.h', 241 'net/udp_transport.h',
235 ], # source 242 ], # source
236 }, 243 },
237 ], 244 ],
238 } 245 }
OLDNEW
« no previous file with comments | « media/cast/BUILD.gn ('k') | media/cast/cast_sender_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698