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

Side by Side Diff: media/BUILD.gn

Issue 2908073002: Make OS audio buffer size limits visible. (Closed)
Patch Set: Updates based on reviewer feedback. 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) {
DaleCurtis 2017/06/27 17:25:07 We have a base/mac/BUILD.gn this should go in.
Andrew MacPherson 2017/06/27 17:46:49 I had tried this first but it didn't seem to work
DaleCurtis 2017/06/27 17:54:24 Ah I didn't notice this was in shmem support. This
764 sources += [
765 "base/mac/audio_util_mac.cc",
766 "base/mac/audio_util_mac.h",
767 ]
768 }
763 configs += [ 769 configs += [
764 ":media_config", 770 ":media_config",
765 ":media_implementation", 771 ":media_implementation",
766 ] 772 ]
767 deps = [ 773 deps = [
768 "//base", 774 "//base",
769 "//ui/gfx/geometry", 775 "//ui/gfx/geometry",
770 ] 776 ]
771 } 777 }
772 778
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
865 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 871 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
866 sources = [ 872 sources = [
867 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 873 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
868 ] 874 ]
869 deps = [ 875 deps = [
870 ":media", 876 ":media",
871 "//base", 877 "//base",
872 ] 878 ]
873 } 879 }
874 } 880 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698