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

Side by Side Diff: media/BUILD.gn

Issue 2908073002: Make OS audio buffer size limits visible. (Closed)
Patch Set: Remove pulse-related changes. 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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 "base/audio_point.h", 587 "base/audio_point.h",
588 "base/audio_sample_types.h", 588 "base/audio_sample_types.h",
589 "base/channel_layout.cc", 589 "base/channel_layout.cc",
590 "base/channel_layout.h", 590 "base/channel_layout.h",
591 "base/limits.h", 591 "base/limits.h",
592 "base/media_export.h", 592 "base/media_export.h",
593 "base/vector_math.cc", 593 "base/vector_math.cc",
594 "base/vector_math.h", 594 "base/vector_math.h",
595 "base/vector_math_testing.h", 595 "base/vector_math_testing.h",
596 ] 596 ]
597 if (is_mac) {
598 # These need to be included here because audio_latency.cc depends on them.
599 sources += [
600 "base/mac/audio_latency_mac.cc",
601 "base/mac/audio_latency_mac.h",
602 ]
603 }
597 configs += [ 604 configs += [
598 ":media_config", 605 ":media_config",
599 ":media_implementation", 606 ":media_implementation",
600 ] 607 ]
601 deps = [ 608 deps = [
602 "//base", 609 "//base",
603 "//ui/gfx/geometry", 610 "//ui/gfx/geometry",
604 ] 611 ]
605 } 612 }
606 613
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 fuzzer_test("media_mp4_avcc_parser_fuzzer") { 706 fuzzer_test("media_mp4_avcc_parser_fuzzer") {
700 sources = [ 707 sources = [
701 "formats/mp4/mp4_avcc_parser_fuzzer.cc", 708 "formats/mp4/mp4_avcc_parser_fuzzer.cc",
702 ] 709 ]
703 deps = [ 710 deps = [
704 ":media", 711 ":media",
705 "//base", 712 "//base",
706 ] 713 ]
707 } 714 }
708 } 715 }
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/layout_test_content_renderer_client.cc ('k') | media/audio/audio_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698