diff options
Diffstat (limited to 'testing/libfuzzer/fuzzers.gyp')
-rw-r--r-- | testing/libfuzzer/fuzzers.gyp | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/testing/libfuzzer/fuzzers.gyp b/testing/libfuzzer/fuzzers.gyp index 2339b5812e..3f1d8123b6 100644 --- a/testing/libfuzzer/fuzzers.gyp +++ b/testing/libfuzzer/fuzzers.gyp @@ -68,6 +68,55 @@ 'sources': [ 'pdf_codec_png_fuzzer.cc', 'unittest_main.cc', + 'xfa_codec_fuzzer.h', + ], + }, + { + 'target_name': 'pdf_codec_jpeg_fuzzer', + 'type': 'executable', + 'dependencies': [ + '../../pdfium.gyp:pdfium', + ], + 'sources': [ + 'pdf_codec_jpeg_fuzzer.cc', + 'unittest_main.cc', + 'xfa_codec_fuzzer.h', + ], + }, + { + 'target_name': 'pdf_codec_gif_fuzzer', + 'type': 'executable', + 'dependencies': [ + '../../pdfium.gyp:pdfium', + ], + 'sources': [ + 'pdf_codec_gif_fuzzer.cc', + 'unittest_main.cc', + 'xfa_codec_fuzzer.h', + ], + }, + { + 'target_name': 'pdf_codec_bmp_fuzzer', + 'type': 'executable', + 'dependencies': [ + '../../pdfium.gyp:pdfium', + ], + 'sources': [ + 'pdf_codec_bmp_fuzzer.cc', + 'unittest_main.cc', + 'xfa_codec_fuzzer.h', + ], + }, + { + 'target_name': 'pdf_codec_tiff_fuzzer', + 'type': 'executable', + 'dependencies': [ + '../../pdfium.gyp:pdfium', + ], + 'sources': [ + 'pdf_codec_tiff_fuzzer.cc', + 'unittest_main.cc', + 'xfa_codec_fuzzer.h', ], }, ], |