| 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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 } | 848 } |
| 849 } | 849 } |
| 850 | 850 |
| 851 fuzzer_test("media_h264_parser_fuzzer") { | 851 fuzzer_test("media_h264_parser_fuzzer") { |
| 852 sources = [ | 852 sources = [ |
| 853 "filters/h264_parser_fuzzertest.cc", | 853 "filters/h264_parser_fuzzertest.cc", |
| 854 ] | 854 ] |
| 855 deps = [ | 855 deps = [ |
| 856 ":media", | 856 ":media", |
| 857 "//base", | 857 "//base", |
| 858 "//ui/gfx/geometry", |
| 858 ] | 859 ] |
| 859 } | 860 } |
| 860 | 861 |
| 861 fuzzer_test("media_vp8_parser_fuzzer") { | 862 fuzzer_test("media_vp8_parser_fuzzer") { |
| 862 sources = [ | 863 sources = [ |
| 863 "filters/vp8_parser_fuzzertest.cc", | 864 "filters/vp8_parser_fuzzertest.cc", |
| 864 ] | 865 ] |
| 865 deps = [ | 866 deps = [ |
| 866 ":media", | 867 ":media", |
| 867 "//base", | 868 "//base", |
| (...skipping 17 matching lines...) Expand all Loading... |
| 885 sources = [ | 886 sources = [ |
| 886 "filters/vpx_video_decoder_fuzzertest.cc", | 887 "filters/vpx_video_decoder_fuzzertest.cc", |
| 887 ] | 888 ] |
| 888 deps = [ | 889 deps = [ |
| 889 ":media", | 890 ":media", |
| 890 "//base", | 891 "//base", |
| 891 ] | 892 ] |
| 892 libfuzzer_options = [ "max_len = 400000" ] | 893 libfuzzer_options = [ "max_len = 400000" ] |
| 893 seed_corpus = "//media/test/data" | 894 seed_corpus = "//media/test/data" |
| 894 } | 895 } |
| OLD | NEW |