Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(98)

Unified Diff: testing/libfuzzer/fuzzers.gyp

Issue 2045613002: Add GIF, BMP, JPEG and TIFF XFA fuzzers (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/libfuzzer/BUILD.gn ('k') | testing/libfuzzer/pdf_codec_bmp_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/fuzzers.gyp
diff --git a/testing/libfuzzer/fuzzers.gyp b/testing/libfuzzer/fuzzers.gyp
index 2339b5812e97bd3b411f9161b5787b5180ea9d41..3f1d8123b6c1628763a2d01941e92748040bc9f3 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',
],
},
],
« no previous file with comments | « testing/libfuzzer/BUILD.gn ('k') | testing/libfuzzer/pdf_codec_bmp_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698