| 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 800 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 811 } | 811 } |
| 812 | 812 |
| 813 fuzzer_test("media_vp8_parser_fuzzer") { | 813 fuzzer_test("media_vp8_parser_fuzzer") { |
| 814 sources = [ | 814 sources = [ |
| 815 "filters/vp8_parser_fuzzertest.cc", | 815 "filters/vp8_parser_fuzzertest.cc", |
| 816 ] | 816 ] |
| 817 deps = [ | 817 deps = [ |
| 818 ":media", | 818 ":media", |
| 819 "//base", | 819 "//base", |
| 820 ] | 820 ] |
| 821 libfuzzer_options = "filters/vp8_parser_fuzzertest.options" | 821 libfuzzer_options = [ "max_len = 400000" ] |
| 822 dict = "test/vp8.dict" | 822 dict = "test/vp8.dict" |
| 823 } | 823 } |
| 824 | 824 |
| 825 fuzzer_test("media_vp9_parser_fuzzer") { | 825 fuzzer_test("media_vp9_parser_fuzzer") { |
| 826 sources = [ | 826 sources = [ |
| 827 "filters/vp9_parser_fuzzertest.cc", | 827 "filters/vp9_parser_fuzzertest.cc", |
| 828 ] | 828 ] |
| 829 deps = [ | 829 deps = [ |
| 830 ":media", | 830 ":media", |
| 831 "//base", | 831 "//base", |
| 832 ] | 832 ] |
| 833 libfuzzer_options = "filters/vp9_parser_fuzzertest.options" | 833 libfuzzer_options = [ "max_len = 400000" ] |
| 834 } | 834 } |
| OLD | NEW |