OLD | NEW |
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 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 "//testing/gmock", | 786 "//testing/gmock", |
787 "//testing/gtest", | 787 "//testing/gtest", |
788 ] | 788 ] |
789 } | 789 } |
790 | 790 |
791 # TODO(dalecurtis): How to split this across audio/base directories?? | 791 # TODO(dalecurtis): How to split this across audio/base directories?? |
792 component("shared_memory_support") { | 792 component("shared_memory_support") { |
793 sources = [ | 793 sources = [ |
794 "audio/audio_parameters.cc", | 794 "audio/audio_parameters.cc", |
795 "audio/audio_parameters.h", | 795 "audio/audio_parameters.h", |
| 796 "audio/point.cc", |
| 797 "audio/point.h", |
796 "base/audio_bus.cc", | 798 "base/audio_bus.cc", |
797 "base/audio_bus.h", | 799 "base/audio_bus.h", |
798 "base/channel_layout.cc", | 800 "base/channel_layout.cc", |
799 "base/channel_layout.h", | 801 "base/channel_layout.h", |
800 "base/limits.h", | 802 "base/limits.h", |
801 "base/media_export.h", | 803 "base/media_export.h", |
802 "base/vector_math.cc", | 804 "base/vector_math.cc", |
803 "base/vector_math.h", | 805 "base/vector_math.h", |
804 ] | 806 ] |
805 configs += [ | 807 configs += [ |
806 ":media_config", | 808 ":media_config", |
807 ":media_implementation", | 809 ":media_implementation", |
808 ] | 810 ] |
809 deps = [ | 811 deps = [ |
810 "//base", | 812 "//base", |
| 813 "//ui/gfx/geometry", |
811 ] | 814 ] |
812 } | 815 } |
813 | 816 |
814 if (media_use_ffmpeg) { | 817 if (media_use_ffmpeg) { |
815 test("ffmpeg_regression_tests") { | 818 test("ffmpeg_regression_tests") { |
816 sources = [ | 819 sources = [ |
817 "base/run_all_unittests.cc", | 820 "base/run_all_unittests.cc", |
818 "ffmpeg/ffmpeg_regression_tests.cc", | 821 "ffmpeg/ffmpeg_regression_tests.cc", |
819 ] | 822 ] |
820 | 823 |
821 configs += [ "//media:media_config" ] | 824 configs += [ "//media:media_config" ] |
822 | 825 |
823 deps = [ | 826 deps = [ |
824 "//base/test:test_support", | 827 "//base/test:test_support", |
825 "//media", | 828 "//media", |
826 "//media:test_support", | 829 "//media:test_support", |
827 "//media/audio:test_support", | 830 "//media/audio:test_support", |
828 "//media/base:test_support", | 831 "//media/base:test_support", |
829 "//media/test:pipeline_integration_tests", | 832 "//media/test:pipeline_integration_tests", |
830 "//testing/gmock", | 833 "//testing/gmock", |
831 "//testing/gtest", | 834 "//testing/gtest", |
832 "//third_party/ffmpeg", | 835 "//third_party/ffmpeg", |
833 "//ui/gfx/geometry", | 836 "//ui/gfx/geometry", |
834 "//ui/gfx:test_support", | 837 "//ui/gfx:test_support", |
835 ] | 838 ] |
836 } | 839 } |
837 } | 840 } |
OLD | NEW |