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

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

Issue 450693006: VideoToolbox encoder for cast senders. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase build files on top of media_for_cast_ios component defined in 581803003. Created 6 years, 3 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') | media/cast/sender/h264_vt_encoder.h » ('J')
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 component("cast") { 5 component("cast") {
6 deps = [ 6 deps = [
7 ":sender", 7 ":sender",
8 ":receiver", 8 ":receiver",
9 ] 9 ]
10 } 10 }
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 ] 148 ]
149 sources -= [ 149 sources -= [
150 "sender/external_video_encoder.h", 150 "sender/external_video_encoder.h",
151 "sender/external_video_encoder.cc", 151 "sender/external_video_encoder.cc",
152 "sender/video_encoder_impl.h", 152 "sender/video_encoder_impl.h",
153 "sender/video_encoder_impl.cc", 153 "sender/video_encoder_impl.cc",
154 "sender/vp8_encoder.cc", 154 "sender/vp8_encoder.cc",
155 "sender/vp8_encoder.h", 155 "sender/vp8_encoder.h",
156 ] 156 ]
157 } 157 }
158
159 # iOS and OS X encoders
160 if (is_ios || is_mac) {
161 sources += [
162 "sender/h264_vt_encoder.cc",
163 "sender/h264_vt_encoder.h",
164 ]
165 }
158 } 166 }
159 167
160 source_set("receiver") { 168 source_set("receiver") {
161 sources = [ 169 sources = [
162 "cast_receiver.h", 170 "cast_receiver.h",
163 "receiver/audio_decoder.cc", 171 "receiver/audio_decoder.cc",
164 "receiver/audio_decoder.h", 172 "receiver/audio_decoder.h",
165 "receiver/cast_receiver_impl.cc", 173 "receiver/cast_receiver_impl.cc",
166 "receiver/cast_receiver_impl.h", 174 "receiver/cast_receiver_impl.h",
167 "receiver/frame_receiver.cc", 175 "receiver/frame_receiver.cc",
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 sources = [ 341 sources = [
334 "test/utility/udp_proxy_main.cc", 342 "test/utility/udp_proxy_main.cc",
335 ] 343 ]
336 344
337 deps = [ 345 deps = [
338 ":test_support", 346 ":test_support",
339 "//base", 347 "//base",
340 "//net", 348 "//net",
341 ] 349 ]
342 } 350 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | media/cast/sender/h264_vt_encoder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698