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

Side by Side Diff: media/BUILD.gn

Issue 581803003: Define a new media_cast component for iOS cast builds (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cast_receiver and cast_sender dependency list; change how media_for_cast_ios builds media:share… 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/base/BUILD.gn » ('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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//media/media_options.gni") 9 import("//media/media_options.gni")
10 10
(...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after
434 "//skia", 434 "//skia",
435 "//third_party/libyuv", 435 "//third_party/libyuv",
436 "//third_party/opus", 436 "//third_party/opus",
437 "//ui/events:events_base", 437 "//ui/events:events_base",
438 "//ui/gfx", 438 "//ui/gfx",
439 "//ui/gfx/geometry", 439 "//ui/gfx/geometry",
440 "//url", 440 "//url",
441 ] 441 ]
442 } 442 }
443 443
444 # Minimal media component for media/cast on iOS.
445 if (is_ios) {
446 component("media_for_cast_ios") {
447 configs += [ ":media_config" ]
448 all_dependent_configs = [ ":media_dependent_config" ]
449 include_dirs = [ "." ]
450 libs = [ "CoreVideo.framework" ]
451
452 deps = [
453 ":shared_memory_support",
454 "//base",
455 "//media/base:base_for_cast_ios",
456 "//media/base/mac",
457 "//ui/gfx/geometry",
458 ]
459 }
460 }
461
444 test("media_unittests") { 462 test("media_unittests") {
445 sources = [ 463 sources = [
446 "cdm/aes_decryptor_unittest.cc", 464 "cdm/aes_decryptor_unittest.cc",
447 "cdm/json_web_key_unittest.cc", 465 "cdm/json_web_key_unittest.cc",
448 "filters/audio_clock_unittest.cc", 466 "filters/audio_clock_unittest.cc",
449 "filters/audio_decoder_selector_unittest.cc", 467 "filters/audio_decoder_selector_unittest.cc",
450 "filters/audio_renderer_algorithm_unittest.cc", 468 "filters/audio_renderer_algorithm_unittest.cc",
451 "filters/audio_renderer_impl_unittest.cc", 469 "filters/audio_renderer_impl_unittest.cc",
452 "filters/chunk_demuxer_unittest.cc", 470 "filters/chunk_demuxer_unittest.cc",
453 "filters/decrypting_audio_decoder_unittest.cc", 471 "filters/decrypting_audio_decoder_unittest.cc",
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
732 deps = [ 750 deps = [
733 ":media", 751 ":media",
734 ":shared_memory_support", 752 ":shared_memory_support",
735 "//base", 753 "//base",
736 "//ui/gl", 754 "//ui/gl",
737 "//ui/gfx", 755 "//ui/gfx",
738 "//ui/gfx/geometry", 756 "//ui/gfx/geometry",
739 ] 757 ]
740 } 758 }
741 } 759 }
OLDNEW
« no previous file with comments | « no previous file | media/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698