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/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 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 source_set("test_support") { | 715 source_set("test_support") { |
716 testonly = true | 716 testonly = true |
717 sources = [ | 717 sources = [ |
718 "renderers/mock_gpu_memory_buffer_video_frame_pool.cc", | 718 "renderers/mock_gpu_memory_buffer_video_frame_pool.cc", |
719 "renderers/mock_gpu_memory_buffer_video_frame_pool.h", | 719 "renderers/mock_gpu_memory_buffer_video_frame_pool.h", |
720 "renderers/mock_gpu_video_accelerator_factories.cc", | 720 "renderers/mock_gpu_video_accelerator_factories.cc", |
721 "renderers/mock_gpu_video_accelerator_factories.h", | 721 "renderers/mock_gpu_video_accelerator_factories.h", |
722 "video/mock_video_decode_accelerator.cc", | 722 "video/mock_video_decode_accelerator.cc", |
723 "video/mock_video_decode_accelerator.h", | 723 "video/mock_video_decode_accelerator.h", |
724 ] | 724 ] |
725 public_deps = [ | 725 deps = [ |
726 ":media", | 726 ":media", |
727 ":shared_memory_support", | 727 ":shared_memory_support", |
728 ] | |
729 deps = [ | |
730 "//base", | 728 "//base", |
731 "//skia", | 729 "//skia", |
732 "//testing/gmock", | 730 "//testing/gmock", |
733 "//testing/gtest", | 731 "//testing/gtest", |
734 ] | 732 ] |
735 } | 733 } |
736 | 734 |
737 # TODO(dalecurtis): How to split this across audio/base directories?? | 735 # TODO(dalecurtis): How to split this across audio/base directories?? |
738 component("shared_memory_support") { | 736 component("shared_memory_support") { |
739 sources = [ | 737 sources = [ |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
823 fuzzer_test("media_vp9_parser_fuzzer") { | 821 fuzzer_test("media_vp9_parser_fuzzer") { |
824 sources = [ | 822 sources = [ |
825 "filters/vp9_parser_fuzzertest.cc", | 823 "filters/vp9_parser_fuzzertest.cc", |
826 ] | 824 ] |
827 deps = [ | 825 deps = [ |
828 ":media", | 826 ":media", |
829 "//base", | 827 "//base", |
830 ] | 828 ] |
831 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 829 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" |
832 } | 830 } |
OLD | NEW |