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

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: Added unit tests 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
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 774 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_parameters.cc", 791 "base/audio_parameters.cc",
792 "base/audio_parameters.h", 792 "base/audio_parameters.h",
793 "base/audio_point.cc", 793 "base/audio_point.cc",
794 "base/audio_point.h", 794 "base/audio_point.h",
795 "base/audio_sample_types.h",
795 "base/channel_layout.cc", 796 "base/channel_layout.cc",
796 "base/channel_layout.h", 797 "base/channel_layout.h",
797 "base/limits.h", 798 "base/limits.h",
798 "base/media_export.h", 799 "base/media_export.h",
799 "base/vector_math.cc", 800 "base/vector_math.cc",
800 "base/vector_math.h", 801 "base/vector_math.h",
801 "base/vector_math_testing.h", 802 "base/vector_math_testing.h",
802 ] 803 ]
803 configs += [ 804 configs += [
804 ":media_config", 805 ":media_config",
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 sources = [ 885 sources = [
885 "filters/vpx_video_decoder_fuzzertest.cc", 886 "filters/vpx_video_decoder_fuzzertest.cc",
886 ] 887 ]
887 deps = [ 888 deps = [
888 ":media", 889 ":media",
889 "//base", 890 "//base",
890 ] 891 ]
891 libfuzzer_options = [ "max_len = 400000" ] 892 libfuzzer_options = [ "max_len = 400000" ]
892 seed_corpus = "//media/test/data" 893 seed_corpus = "//media/test/data"
893 } 894 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698