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

Side by Side Diff: media/BUILD.gn

Issue 2024993004: AudioBus: Add a ToInterleavedFloat() method to AudioBus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed a todo Created 4 years, 6 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 | « content/renderer/media/audio_track_recorder.cc ('k') | 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/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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 783
784 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. 784 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn.
785 component("shared_memory_support") { 785 component("shared_memory_support") {
786 sources = [ 786 sources = [
787 "base/audio_bus.cc", 787 "base/audio_bus.cc",
788 "base/audio_bus.h", 788 "base/audio_bus.h",
789 "base/audio_parameters.cc", 789 "base/audio_parameters.cc",
790 "base/audio_parameters.h", 790 "base/audio_parameters.h",
791 "base/audio_point.cc", 791 "base/audio_point.cc",
792 "base/audio_point.h", 792 "base/audio_point.h",
793 "base/audio_sample_types.h",
793 "base/channel_layout.cc", 794 "base/channel_layout.cc",
794 "base/channel_layout.h", 795 "base/channel_layout.h",
795 "base/limits.h", 796 "base/limits.h",
796 "base/media_export.h", 797 "base/media_export.h",
797 "base/vector_math.cc", 798 "base/vector_math.cc",
798 "base/vector_math.h", 799 "base/vector_math.h",
799 "base/vector_math_testing.h", 800 "base/vector_math_testing.h",
800 ] 801 ]
801 configs += [ 802 configs += [
802 ":media_config", 803 ":media_config",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 sources = [ 883 sources = [
883 "filters/vpx_video_decoder_fuzzertest.cc", 884 "filters/vpx_video_decoder_fuzzertest.cc",
884 ] 885 ]
885 deps = [ 886 deps = [
886 ":media", 887 ":media",
887 "//base", 888 "//base",
888 ] 889 ]
889 libfuzzer_options = [ "max_len = 400000" ] 890 libfuzzer_options = [ "max_len = 400000" ]
890 seed_corpus = "//media/test/data" 891 seed_corpus = "//media/test/data"
891 } 892 }
OLDNEW
« no previous file with comments | « content/renderer/media/audio_track_recorder.cc ('k') | media/base/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698