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

Side by Side Diff: media/BUILD.gn

Issue 1896883002: Mojo interfaces needed for switching audio rendering stream creation and closing from IPC to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: All grunell comments resolved Created 4 years, 8 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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 "filters/source_buffer_platform.h", 442 "filters/source_buffer_platform.h",
443 ] 443 ]
444 } 444 }
445 445
446 public_deps = [ 446 public_deps = [
447 ":media_features", 447 ":media_features",
448 ":shared_memory_support", 448 ":shared_memory_support",
449 "//media/audio", 449 "//media/audio",
450 "//media/base", 450 "//media/base",
451 "//media/capture", 451 "//media/capture",
452 "//mojo/common",
453 "//mojo/public/cpp/bindings",
454 "//mojo/public/cpp/system",
xhwang 2016/04/26 22:54:42 See below, "media" should not depend on mojo.
rchtara 2016/04/29 12:54:46 Done.
452 "//third_party/opus", 455 "//third_party/opus",
453 ] 456 ]
454 457
455 deps += [ 458 deps += [
456 "//base", 459 "//base",
457 "//base:i18n", 460 "//base:i18n",
458 "//base/third_party/dynamic_annotations", 461 "//base/third_party/dynamic_annotations",
459 "//crypto", 462 "//crypto",
460 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp via export_dependent_settings 463 "//crypto:platform", # TODO(ajwong): This used to be provided by crypto.gyp via export_dependent_settings
461 "//gpu/command_buffer/client:gles2_interface", 464 "//gpu/command_buffer/client:gles2_interface",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 fuzzer_test("media_vp9_parser_fuzzer") { 837 fuzzer_test("media_vp9_parser_fuzzer") {
835 sources = [ 838 sources = [
836 "filters/vp9_parser_fuzzertest.cc", 839 "filters/vp9_parser_fuzzertest.cc",
837 ] 840 ]
838 deps = [ 841 deps = [
839 ":media", 842 ":media",
840 "//base", 843 "//base",
841 ] 844 ]
842 libfuzzer_options = [ "max_len = 400000" ] 845 libfuzzer_options = [ "max_len = 400000" ]
843 } 846 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698