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

Side by Side Diff: media/BUILD.gn

Issue 1907973003: media: Move audio_parameters and audio_point to media/base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/shell/renderer/layout_test/blink_test_runner.cc ('k') | media/audio/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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 ":shared_memory_support", 742 ":shared_memory_support",
743 ] 743 ]
744 deps = [ 744 deps = [
745 "//base", 745 "//base",
746 "//skia", 746 "//skia",
747 "//testing/gmock", 747 "//testing/gmock",
748 "//testing/gtest", 748 "//testing/gtest",
749 ] 749 ]
750 } 750 }
751 751
752 # TODO(dalecurtis): How to split this across audio/base directories?? 752 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn.
753 component("shared_memory_support") { 753 component("shared_memory_support") {
754 sources = [ 754 sources = [
755 "audio/audio_parameters.cc",
756 "audio/audio_parameters.h",
757 "audio/point.cc",
758 "audio/point.h",
759 "base/audio_bus.cc", 755 "base/audio_bus.cc",
760 "base/audio_bus.h", 756 "base/audio_bus.h",
757 "base/audio_parameters.cc",
758 "base/audio_parameters.h",
759 "base/audio_point.cc",
760 "base/audio_point.h",
761 "base/channel_layout.cc", 761 "base/channel_layout.cc",
762 "base/channel_layout.h", 762 "base/channel_layout.h",
763 "base/limits.h", 763 "base/limits.h",
764 "base/media_export.h", 764 "base/media_export.h",
765 "base/vector_math.cc", 765 "base/vector_math.cc",
766 "base/vector_math.h", 766 "base/vector_math.h",
767 ] 767 ]
768 configs += [ 768 configs += [
769 ":media_config", 769 ":media_config",
770 ":media_implementation", 770 ":media_implementation",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 fuzzer_test("media_vp9_parser_fuzzer") { 838 fuzzer_test("media_vp9_parser_fuzzer") {
839 sources = [ 839 sources = [
840 "filters/vp9_parser_fuzzertest.cc", 840 "filters/vp9_parser_fuzzertest.cc",
841 ] 841 ]
842 deps = [ 842 deps = [
843 ":media", 843 ":media",
844 "//base", 844 "//base",
845 ] 845 ]
846 libfuzzer_options = [ "max_len = 400000" ] 846 libfuzzer_options = [ "max_len = 400000" ]
847 } 847 }
OLDNEW
« no previous file with comments | « content/shell/renderer/layout_test/blink_test_runner.cc ('k') | media/audio/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698