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

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: 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 | « no previous file | media/cast/cast.gyp » ('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 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 ] 149 ]
150 sources -= [ 150 sources -= [
151 "sender/external_video_encoder.h", 151 "sender/external_video_encoder.h",
152 "sender/external_video_encoder.cc", 152 "sender/external_video_encoder.cc",
153 "sender/video_encoder_impl.h", 153 "sender/video_encoder_impl.h",
154 "sender/video_encoder_impl.cc", 154 "sender/video_encoder_impl.cc",
155 "sender/vp8_encoder.cc", 155 "sender/vp8_encoder.cc",
156 "sender/vp8_encoder.h", 156 "sender/vp8_encoder.h",
157 ] 157 ]
158 } 158 }
159
160 # iOS and OS X encoders
161 if (is_ios || is_mac) {
162 sources += [
163 "sender/h264_vt_encoder.cc",
164 "sender/h264_vt_encoder.h",
165 ]
166 }
159 } 167 }
160 168
161 source_set("receiver") { 169 source_set("receiver") {
162 sources = [ 170 sources = [
163 "cast_receiver.h", 171 "cast_receiver.h",
164 "receiver/audio_decoder.cc", 172 "receiver/audio_decoder.cc",
165 "receiver/audio_decoder.h", 173 "receiver/audio_decoder.h",
166 "receiver/cast_receiver_impl.cc", 174 "receiver/cast_receiver_impl.cc",
167 "receiver/cast_receiver_impl.h", 175 "receiver/cast_receiver_impl.h",
168 "receiver/frame_receiver.cc", 176 "receiver/frame_receiver.cc",
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 ":receiver", 305 ":receiver",
298 ":sender", 306 ":sender",
299 ":test_support", 307 ":test_support",
300 "//base/test:run_all_unittests", 308 "//base/test:run_all_unittests",
301 "//base/test:test_support", 309 "//base/test:test_support",
302 "//testing/gmock", 310 "//testing/gmock",
303 "//testing/gtest", 311 "//testing/gtest",
304 ] 312 ]
305 } 313 }
306 314
315 if (is_ios || is_mac) {
316 test("cast_h264_vt_encoder_unittests") {
317 sources = [
318 "sender/h264_vt_encoder_unittest.cc",
319 ]
320 deps = [
321 ":common",
322 ":sender",
323 ":test_support",
324 "//base/test:test_support",
325 "//testing/gmock",
326 "//testing/gtest",
327 "//third_party/ffmpeg",
328 ]
329 }
330 }
331
307 executable("generate_barcode_video") { 332 executable("generate_barcode_video") {
308 testonly = true 333 testonly = true
309 sources = [ 334 sources = [
310 "test/utility/generate_barcode_video.cc", 335 "test/utility/generate_barcode_video.cc",
311 ] 336 ]
312 337
313 deps = [ 338 deps = [
314 ":test_support", 339 ":test_support",
315 "//base", 340 "//base",
316 "//media", 341 "//media",
(...skipping 18 matching lines...) Expand all
335 sources = [ 360 sources = [
336 "test/utility/udp_proxy_main.cc", 361 "test/utility/udp_proxy_main.cc",
337 ] 362 ]
338 363
339 deps = [ 364 deps = [
340 ":test_support", 365 ":test_support",
341 "//base", 366 "//base",
342 "//net", 367 "//net",
343 ] 368 ]
344 } 369 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698