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 754 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 += [ |
(...skipping 22 matching lines...) Expand all Loading... |
807 "//media/base:test_support", | 809 "//media/base:test_support", |
808 "//media/test:pipeline_integration_tests", | 810 "//media/test:pipeline_integration_tests", |
809 "//testing/gmock", | 811 "//testing/gmock", |
810 "//testing/gtest", | 812 "//testing/gtest", |
811 "//third_party/ffmpeg", | 813 "//third_party/ffmpeg", |
812 "//ui/gfx/geometry", | 814 "//ui/gfx/geometry", |
813 "//ui/gfx:test_support", | 815 "//ui/gfx:test_support", |
814 ] | 816 ] |
815 } | 817 } |
816 } | 818 } |
OLD | NEW |