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 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 | 226 |
227 fuzzer_test("unicode_string_codepage_create_fuzzer") { | 227 fuzzer_test("unicode_string_codepage_create_fuzzer") { |
228 sources = [ | 228 sources = [ |
229 "unicode_string_codepage_create_fuzzer.cc", | 229 "unicode_string_codepage_create_fuzzer.cc", |
230 ] | 230 ] |
231 deps = [ | 231 deps = [ |
232 "//third_party/icu", | 232 "//third_party/icu", |
233 ] | 233 ] |
234 } | 234 } |
235 | 235 |
| 236 if (is_linux) { |
| 237 # libexif_fuzzer is linux only atm |
| 238 fuzzer_test("libexif_parser_fuzzer") { |
| 239 sources = [ |
| 240 "libexif_parser_fuzzer.cc", |
| 241 ] |
| 242 deps = [ |
| 243 "//third_party/libexif:libexif_fuzzers", |
| 244 ] |
| 245 } |
| 246 } |
| 247 |
236 fuzzer_test("libpng_read_fuzzer") { | 248 fuzzer_test("libpng_read_fuzzer") { |
237 sources = [ | 249 sources = [ |
238 "libpng_read_fuzzer.cc", | 250 "libpng_read_fuzzer.cc", |
239 ] | 251 ] |
240 deps = [ | 252 deps = [ |
241 "//base", | 253 "//base", |
242 "//third_party/libpng", | 254 "//third_party/libpng", |
243 ] | 255 ] |
244 dict = "dicts/png.dict" | 256 dict = "dicts/png.dict" |
245 } | 257 } |
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 316 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
305 sources = [ | 317 sources = [ |
306 "libxml_xml_regexp_compile_fuzzer.cc", | 318 "libxml_xml_regexp_compile_fuzzer.cc", |
307 ] | 319 ] |
308 deps = [ | 320 deps = [ |
309 "//third_party/libxml", | 321 "//third_party/libxml", |
310 ] | 322 ] |
311 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 323 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
312 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 324 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
313 } | 325 } |
OLD | NEW |