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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 } | 152 } |
153 | 153 |
154 fuzzer_test("gfx_png_image_fuzzer") { | 154 fuzzer_test("gfx_png_image_fuzzer") { |
155 sources = [ | 155 sources = [ |
156 "gfx_png_image_fuzzer.cc", | 156 "gfx_png_image_fuzzer.cc", |
157 ] | 157 ] |
158 deps = [ | 158 deps = [ |
159 "//base", | 159 "//base", |
160 "//ui/gfx", | 160 "//ui/gfx", |
161 ] | 161 ] |
| 162 dict = "dicts/png.dict" |
162 } | 163 } |
163 | 164 |
164 fuzzer_test("zlib_uncompress_fuzzer") { | 165 fuzzer_test("zlib_uncompress_fuzzer") { |
165 sources = [ | 166 sources = [ |
166 "zlib_uncompress_fuzzer.cc", | 167 "zlib_uncompress_fuzzer.cc", |
167 ] | 168 ] |
168 deps = [ | 169 deps = [ |
169 "//third_party/zlib", | 170 "//third_party/zlib", |
170 ] | 171 ] |
171 } | 172 } |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 276 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
276 sources = [ | 277 sources = [ |
277 "libxml_xml_regexp_compile_fuzzer.cc", | 278 "libxml_xml_regexp_compile_fuzzer.cc", |
278 ] | 279 ] |
279 deps = [ | 280 deps = [ |
280 "//third_party/libxml", | 281 "//third_party/libxml", |
281 ] | 282 ] |
282 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 283 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
283 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 284 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
284 } | 285 } |
OLD | NEW |