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

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: Modernize to C++11 per the rules at http://chromium-cpp.appspot.com/ Created 6 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
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | media/cast/sender/h264_vt_encoder.cc » ('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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 ] 147 ]
148 sources -= [ 148 sources -= [
149 "sender/external_video_encoder.h", 149 "sender/external_video_encoder.h",
150 "sender/external_video_encoder.cc", 150 "sender/external_video_encoder.cc",
151 "sender/video_encoder_impl.h", 151 "sender/video_encoder_impl.h",
152 "sender/video_encoder_impl.cc", 152 "sender/video_encoder_impl.cc",
153 "sender/vp8_encoder.cc", 153 "sender/vp8_encoder.cc",
154 "sender/vp8_encoder.h", 154 "sender/vp8_encoder.h",
155 ] 155 ]
156 } 156 }
157
158 # iOS and OS X encoders
159 if (is_ios || is_mac) {
160 sources += [
161 "sender/h264_vt_encoder.cc",
162 "sender/h264_vt_encoder.h",
163 ]
164 }
157 } 165 }
158 166
159 source_set("receiver") { 167 source_set("receiver") {
160 sources = [ 168 sources = [
161 "cast_receiver.h", 169 "cast_receiver.h",
162 "receiver/audio_decoder.cc", 170 "receiver/audio_decoder.cc",
163 "receiver/audio_decoder.h", 171 "receiver/audio_decoder.h",
164 "receiver/cast_receiver_impl.cc", 172 "receiver/cast_receiver_impl.cc",
165 "receiver/cast_receiver_impl.h", 173 "receiver/cast_receiver_impl.h",
166 "receiver/frame_receiver.cc", 174 "receiver/frame_receiver.cc",
(...skipping 166 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.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698