| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Individual libfuzzer tests that didn't find their home yet. | 5 # Individual libfuzzer tests that didn't find their home yet. |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 deps = [ | 111 deps = [ |
| 112 "//base", | 112 "//base", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| 115 | 115 |
| 116 fuzzer_test("template_url_parser_fuzzer") { | 116 fuzzer_test("template_url_parser_fuzzer") { |
| 117 sources = [ | 117 sources = [ |
| 118 "template_url_parser_fuzzer.cc", | 118 "template_url_parser_fuzzer.cc", |
| 119 ] | 119 ] |
| 120 deps = [ | 120 deps = [ |
| 121 "//base", |
| 122 "//base:i18n", |
| 121 "//components/search_engines:search_engines", | 123 "//components/search_engines:search_engines", |
| 122 ] | 124 ] |
| 123 dict = "dicts/xml.dict" | 125 dict = "dicts/xml.dict" |
| 124 libfuzzer_options = [ "max_len=4096" ] | 126 libfuzzer_options = [ "max_len=4096" ] |
| 125 } | 127 } |
| 126 | 128 |
| 127 fuzzer_test("url_parse_fuzzer") { | 129 fuzzer_test("url_parse_fuzzer") { |
| 128 sources = [ | 130 sources = [ |
| 129 "url_parse_fuzzer.cc", | 131 "url_parse_fuzzer.cc", |
| 130 ] | 132 ] |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 } | 453 } |
| 452 | 454 |
| 453 fuzzer_test("hash_fuzzer") { | 455 fuzzer_test("hash_fuzzer") { |
| 454 sources = [ | 456 sources = [ |
| 455 "hash_fuzzer.cc", | 457 "hash_fuzzer.cc", |
| 456 ] | 458 ] |
| 457 deps = [ | 459 deps = [ |
| 458 "//base", | 460 "//base", |
| 459 ] | 461 ] |
| 460 } | 462 } |
| OLD | NEW |