| 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 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 761 "video/mock_video_decode_accelerator.h", | 761 "video/mock_video_decode_accelerator.h", |
| 762 "video/mock_video_encode_accelerator.cc", | 762 "video/mock_video_encode_accelerator.cc", |
| 763 "video/mock_video_encode_accelerator.h", | 763 "video/mock_video_encode_accelerator.h", |
| 764 ] | 764 ] |
| 765 public_deps = [ | 765 public_deps = [ |
| 766 ":media", | 766 ":media", |
| 767 ":shared_memory_support", | 767 ":shared_memory_support", |
| 768 ] | 768 ] |
| 769 deps = [ | 769 deps = [ |
| 770 "//base", | 770 "//base", |
| 771 "//gpu/command_buffer/common", |
| 771 "//skia", | 772 "//skia", |
| 772 "//testing/gmock", | 773 "//testing/gmock", |
| 773 "//testing/gtest", | 774 "//testing/gtest", |
| 774 "//ui/gfx", | 775 "//ui/gfx", |
| 775 ] | 776 ] |
| 776 } | 777 } |
| 777 | 778 |
| 778 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. | 779 # TODO(jrummell): This should be renamed and moved to media/base/BUILD.gn. |
| 779 component("shared_memory_support") { | 780 component("shared_memory_support") { |
| 780 sources = [ | 781 sources = [ |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 877 sources = [ | 878 sources = [ |
| 878 "filters/vpx_video_decoder_fuzzertest.cc", | 879 "filters/vpx_video_decoder_fuzzertest.cc", |
| 879 ] | 880 ] |
| 880 deps = [ | 881 deps = [ |
| 881 ":media", | 882 ":media", |
| 882 "//base", | 883 "//base", |
| 883 ] | 884 ] |
| 884 libfuzzer_options = [ "max_len = 400000" ] | 885 libfuzzer_options = [ "max_len = 400000" ] |
| 885 seed_corpus = "//media/test/data" | 886 seed_corpus = "//media/test/data" |
| 886 } | 887 } |
| OLD | NEW |