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