| 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 765 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 776 ":test_support", | 776 ":test_support", |
| 777 "//base/test:test_support", | 777 "//base/test:test_support", |
| 778 "//media/audio:unittests", | 778 "//media/audio:unittests", |
| 779 "//ui/gfx:test_support", | 779 "//ui/gfx:test_support", |
| 780 ] | 780 ] |
| 781 } | 781 } |
| 782 | 782 |
| 783 source_set("test_support") { | 783 source_set("test_support") { |
| 784 testonly = true | 784 testonly = true |
| 785 sources = [ | 785 sources = [ |
| 786 "renderers/mock_gpu_memory_buffer_video_frame_pool.cc", |
| 787 "renderers/mock_gpu_memory_buffer_video_frame_pool.h", |
| 786 "renderers/mock_gpu_video_accelerator_factories.cc", | 788 "renderers/mock_gpu_video_accelerator_factories.cc", |
| 787 "renderers/mock_gpu_video_accelerator_factories.h", | 789 "renderers/mock_gpu_video_accelerator_factories.h", |
| 788 "video/mock_video_decode_accelerator.cc", | 790 "video/mock_video_decode_accelerator.cc", |
| 789 "video/mock_video_decode_accelerator.h", | 791 "video/mock_video_decode_accelerator.h", |
| 790 ] | 792 ] |
| 791 deps = [ | 793 deps = [ |
| 792 ":media", | 794 ":media", |
| 793 ":shared_memory_support", | 795 ":shared_memory_support", |
| 794 "//base", | 796 "//base", |
| 795 "//skia", | 797 "//skia", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 841 "//media/base:test_support", | 843 "//media/base:test_support", |
| 842 "//media/test:pipeline_integration_tests", | 844 "//media/test:pipeline_integration_tests", |
| 843 "//testing/gmock", | 845 "//testing/gmock", |
| 844 "//testing/gtest", | 846 "//testing/gtest", |
| 845 "//third_party/ffmpeg", | 847 "//third_party/ffmpeg", |
| 846 "//ui/gfx/geometry", | 848 "//ui/gfx/geometry", |
| 847 "//ui/gfx:test_support", | 849 "//ui/gfx:test_support", |
| 848 ] | 850 ] |
| 849 } | 851 } |
| 850 } | 852 } |
| OLD | NEW |