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

Side by Side Diff: media/BUILD.gn

Issue 2268253002: UMA stats for browser/renderer audio rendering buffer size mismatch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: UMA fixes Created 4 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
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 770 matching lines...) Expand 10 before | Expand all | Expand 10 after
781 "//testing/gtest", 781 "//testing/gtest",
782 "//ui/gfx", 782 "//ui/gfx",
783 ] 783 ]
784 } 784 }
785 785
786 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. 786 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn.
787 component("shared_memory_support") { 787 component("shared_memory_support") {
788 sources = [ 788 sources = [
789 "base/audio_bus.cc", 789 "base/audio_bus.cc",
790 "base/audio_bus.h", 790 "base/audio_bus.h",
791 "base/audio_latency.cc",
792 "base/audio_latency.h",
791 "base/audio_parameters.cc", 793 "base/audio_parameters.cc",
792 "base/audio_parameters.h", 794 "base/audio_parameters.h",
793 "base/audio_point.cc", 795 "base/audio_point.cc",
794 "base/audio_point.h", 796 "base/audio_point.h",
795 "base/audio_sample_types.h", 797 "base/audio_sample_types.h",
796 "base/channel_layout.cc", 798 "base/channel_layout.cc",
797 "base/channel_layout.h", 799 "base/channel_layout.h",
798 "base/limits.h", 800 "base/limits.h",
799 "base/media_export.h", 801 "base/media_export.h",
800 "base/vector_math.cc", 802 "base/vector_math.cc",
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
885 sources = [ 887 sources = [
886 "filters/vpx_video_decoder_fuzzertest.cc", 888 "filters/vpx_video_decoder_fuzzertest.cc",
887 ] 889 ]
888 deps = [ 890 deps = [
889 ":media", 891 ":media",
890 "//base", 892 "//base",
891 ] 893 ]
892 libfuzzer_options = [ "max_len = 400000" ] 894 libfuzzer_options = [ "max_len = 400000" ]
893 seed_corpus = "//media/test/data" 895 seed_corpus = "//media/test/data"
894 } 896 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698