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

Side by Side Diff: media/BUILD.gn

Issue 2204673004: WIP - WebMediaPlayer switch media renderer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Get Audio/Video config from PipelineMetadata. And rebase. Created 4 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
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/android/config.gni") 6 import("//build/config/android/config.gni")
7 import("//build/config/arm.gni") 7 import("//build/config/arm.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("//build/config/ui.gni") 10 import("//build/config/ui.gni")
(...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after
595 ":cdm_paths", 595 ":cdm_paths",
596 ":media", 596 ":media",
597 ":test_support", 597 ":test_support",
598 "//base/test:test_support", 598 "//base/test:test_support",
599 "//gpu:test_support", 599 "//gpu:test_support",
600 "//gpu/command_buffer/common", 600 "//gpu/command_buffer/common",
601 "//media/audio:test_support", 601 "//media/audio:test_support",
602 "//media/audio:unittests", 602 "//media/audio:unittests",
603 "//media/base:test_support", 603 "//media/base:test_support",
604 "//media/base:unittests", 604 "//media/base:unittests",
605 "//media/remoting:media_remoting_unittests",
605 "//media/test:pipeline_integration_tests", 606 "//media/test:pipeline_integration_tests",
607 "//mojo/edk/system",
606 "//skia", # Direct dependency required to inherit config. 608 "//skia", # Direct dependency required to inherit config.
607 "//testing/gmock", 609 "//testing/gmock",
608 "//testing/gtest", 610 "//testing/gtest",
609 "//third_party/libwebm", 611 "//third_party/libwebm",
610 "//third_party/libyuv", 612 "//third_party/libyuv",
611 "//third_party/widevine/cdm:version_h", 613 "//third_party/widevine/cdm:version_h",
612 "//ui/gfx:test_support", 614 "//ui/gfx:test_support",
613 "//url", 615 "//url",
614 ] 616 ]
615 617
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
903 fuzzer_test("media_webm_muxer_fuzzer") { 905 fuzzer_test("media_webm_muxer_fuzzer") {
904 sources = [ 906 sources = [
905 "muxers/webm_muxer_fuzzertest.cc", 907 "muxers/webm_muxer_fuzzertest.cc",
906 ] 908 ]
907 deps = [ 909 deps = [
908 ":media", 910 ":media",
909 "//base", 911 "//base",
910 "//third_party/libwebm", 912 "//third_party/libwebm",
911 ] 913 ]
912 } 914 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698