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

Side by Side Diff: media/BUILD.gn

Issue 1275783003: Add a virtual beamforming audio device on ChromeOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ...and gfx. Created 5 years, 3 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/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/linux/pkg_config.gni") 8 import("//build/config/linux/pkg_config.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 754 matching lines...) Expand 10 before | Expand all | Expand 10 after
765 "//testing/gmock", 765 "//testing/gmock",
766 "//testing/gtest", 766 "//testing/gtest",
767 ] 767 ]
768 } 768 }
769 769
770 # TODO(dalecurtis): How to split this across audio/base directories?? 770 # TODO(dalecurtis): How to split this across audio/base directories??
771 component("shared_memory_support") { 771 component("shared_memory_support") {
772 sources = [ 772 sources = [
773 "audio/audio_parameters.cc", 773 "audio/audio_parameters.cc",
774 "audio/audio_parameters.h", 774 "audio/audio_parameters.h",
775 "audio/point.cc",
776 "audio/point.h",
775 "base/audio_bus.cc", 777 "base/audio_bus.cc",
776 "base/audio_bus.h", 778 "base/audio_bus.h",
777 "base/channel_layout.cc", 779 "base/channel_layout.cc",
778 "base/channel_layout.h", 780 "base/channel_layout.h",
779 "base/limits.h", 781 "base/limits.h",
780 "base/media_export.h", 782 "base/media_export.h",
781 "base/vector_math.cc", 783 "base/vector_math.cc",
782 "base/vector_math.h", 784 "base/vector_math.h",
783 ] 785 ]
784 configs += [ 786 configs += [
785 ":media_config", 787 ":media_config",
786 ":media_implementation", 788 ":media_implementation",
787 ] 789 ]
788 deps = [ 790 deps = [
789 "//base", 791 "//base",
792 "//ui/gfx/geometry",
DaleCurtis 2015/09/09 22:51:52 Hmm, this might break NaCl, but if it passes the b
ajm 2015/09/10 01:20:30 Acknowledged.
790 ] 793 ]
791 } 794 }
792 795
793 if (media_use_ffmpeg) { 796 if (media_use_ffmpeg) {
794 test("ffmpeg_regression_tests") { 797 test("ffmpeg_regression_tests") {
795 sources = [ 798 sources = [
796 "base/run_all_unittests.cc", 799 "base/run_all_unittests.cc",
797 "ffmpeg/ffmpeg_regression_tests.cc", 800 "ffmpeg/ffmpeg_regression_tests.cc",
798 ] 801 ]
799 802
800 configs += [ "//media:media_config" ] 803 configs += [ "//media:media_config" ]
801 804
802 deps = [ 805 deps = [
803 "//base/test:test_support", 806 "//base/test:test_support",
804 "//media", 807 "//media",
805 "//media:test_support", 808 "//media:test_support",
806 "//media/audio:test_support", 809 "//media/audio:test_support",
807 "//media/base:test_support", 810 "//media/base:test_support",
808 "//media/test:pipeline_integration_tests", 811 "//media/test:pipeline_integration_tests",
809 "//testing/gmock", 812 "//testing/gmock",
810 "//testing/gtest", 813 "//testing/gtest",
811 "//third_party/ffmpeg", 814 "//third_party/ffmpeg",
812 "//ui/gfx/geometry", 815 "//ui/gfx/geometry",
813 "//ui/gfx:test_support", 816 "//ui/gfx:test_support",
814 ] 817 ]
815 } 818 }
816 } 819 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698