| 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 | |
| 248 fuzzer_test("libpng_read_fuzzer") { | 236 fuzzer_test("libpng_read_fuzzer") { |
| 249 sources = [ | 237 sources = [ |
| 250 "libpng_read_fuzzer.cc", | 238 "libpng_read_fuzzer.cc", |
| 251 ] | 239 ] |
| 252 deps = [ | 240 deps = [ |
| 253 "//base", | 241 "//base", |
| 254 "//third_party/libpng", | 242 "//third_party/libpng", |
| 255 ] | 243 ] |
| 256 dict = "dicts/png.dict" | 244 dict = "dicts/png.dict" |
| 257 } | 245 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 316 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 304 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
| 317 sources = [ | 305 sources = [ |
| 318 "libxml_xml_regexp_compile_fuzzer.cc", | 306 "libxml_xml_regexp_compile_fuzzer.cc", |
| 319 ] | 307 ] |
| 320 deps = [ | 308 deps = [ |
| 321 "//third_party/libxml", | 309 "//third_party/libxml", |
| 322 ] | 310 ] |
| 323 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 311 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
| 324 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 312 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 325 } | 313 } |
| OLD | NEW |