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

Side by Side Diff: media/BUILD.gn

Issue 551963004: media: scaffolding and plumbing for MojoRenderer{Impl, Service} (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: actually fix gn 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/media.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 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 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 "//skia", 429 "//skia",
430 "//third_party/libyuv", 430 "//third_party/libyuv",
431 "//third_party/opus", 431 "//third_party/opus",
432 "//ui/events:events_base", 432 "//ui/events:events_base",
433 "//ui/gfx", 433 "//ui/gfx",
434 "//ui/gfx/geometry", 434 "//ui/gfx/geometry",
435 "//url", 435 "//url",
436 ] 436 ]
437 } 437 }
438 438
439 group("mojo") {
jamesr 2014/09/17 21:55:49 nit: i would probably leave this out, or put it in
440 deps = [
441 "//media/mojo/interfaces",
442 "//media/mojo/services",
443 ]
444 }
445
446 group("mojo_tests") {
jamesr 2014/09/17 21:55:49 similarly this could be //media/mojo:tests
447 testonly = true
448 deps = [
449 "//media/mojo/services:tests"
450 ]
451 }
452
439 test("media_unittests") { 453 test("media_unittests") {
440 sources = [ 454 sources = [
441 "cdm/aes_decryptor_unittest.cc", 455 "cdm/aes_decryptor_unittest.cc",
442 "cdm/json_web_key_unittest.cc", 456 "cdm/json_web_key_unittest.cc",
443 "filters/audio_clock_unittest.cc", 457 "filters/audio_clock_unittest.cc",
444 "filters/audio_decoder_selector_unittest.cc", 458 "filters/audio_decoder_selector_unittest.cc",
445 "filters/audio_renderer_algorithm_unittest.cc", 459 "filters/audio_renderer_algorithm_unittest.cc",
446 "filters/audio_renderer_impl_unittest.cc", 460 "filters/audio_renderer_impl_unittest.cc",
447 "filters/chunk_demuxer_unittest.cc", 461 "filters/chunk_demuxer_unittest.cc",
448 "filters/decrypting_audio_decoder_unittest.cc", 462 "filters/decrypting_audio_decoder_unittest.cc",
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
727 deps = [ 741 deps = [
728 ":media", 742 ":media",
729 ":shared_memory_support", 743 ":shared_memory_support",
730 "//base", 744 "//base",
731 "//ui/gl", 745 "//ui/gl",
732 "//ui/gfx", 746 "//ui/gfx",
733 "//ui/gfx/geometry", 747 "//ui/gfx/geometry",
734 ] 748 ]
735 } 749 }
736 } 750 }
OLDNEW
« no previous file with comments | « no previous file | media/media.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698