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

Side by Side Diff: media/BUILD.gn

Issue 2908073002: Make OS audio buffer size limits visible. (Closed)
Patch Set: Fix CRAS calculation and audio_manager_unittest. Created 3 years, 5 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 "base/audio_point.h", 753 "base/audio_point.h",
754 "base/audio_sample_types.h", 754 "base/audio_sample_types.h",
755 "base/channel_layout.cc", 755 "base/channel_layout.cc",
756 "base/channel_layout.h", 756 "base/channel_layout.h",
757 "base/limits.h", 757 "base/limits.h",
758 "base/media_export.h", 758 "base/media_export.h",
759 "base/vector_math.cc", 759 "base/vector_math.cc",
760 "base/vector_math.h", 760 "base/vector_math.h",
761 "base/vector_math_testing.h", 761 "base/vector_math_testing.h",
762 ] 762 ]
763 if (is_mac) {
764 # These need to be included here because audio_latency.cc depends on them.
765 sources += [
766 "base/mac/audio_latency_mac.cc",
767 "base/mac/audio_latency_mac.h",
768 ]
769 }
763 configs += [ 770 configs += [
764 ":media_config", 771 ":media_config",
765 ":media_implementation", 772 ":media_implementation",
766 ] 773 ]
767 deps = [ 774 deps = [
768 "//base", 775 "//base",
769 "//ui/gfx/geometry", 776 "//ui/gfx/geometry",
770 ] 777 ]
771 } 778 }
772 779
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 872 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
866 sources = [ 873 sources = [
867 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 874 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
868 ] 875 ]
869 deps = [ 876 deps = [
870 ":media", 877 ":media",
871 "//base", 878 "//base",
872 ] 879 ]
873 } 880 }
874 } 881 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698