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

Unified Diff: pdf/pdfium/fuzzers/BUILD.gn

Issue 2043313003: Add more pdf codec fuzzers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: alpha order 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/pdfium/fuzzers/BUILD.gn
diff --git a/pdf/pdfium/fuzzers/BUILD.gn b/pdf/pdfium/fuzzers/BUILD.gn
index 4abe788d516d2e119ec4ebc1987083f6351d71b1..f7a30ded16957eebbc40658132adfb532762a802 100644
--- a/pdf/pdfium/fuzzers/BUILD.gn
+++ b/pdf/pdfium/fuzzers/BUILD.gn
@@ -36,20 +36,25 @@ fuzzer_test("pdf_jpx_fuzzer") {
}
if (pdf_enable_xfa) {
- fuzzer_test("pdf_fm2js_fuzzer") {
+ fuzzer_test("pdf_codec_bmp_fuzzer") {
sources = []
deps = [
- "//third_party/pdfium/testing/libfuzzer:pdf_fm2js_fuzzer",
+ "//third_party/pdfium/testing/libfuzzer:pdf_codec_bmp_fuzzer",
]
- dict = "dicts/pdf_fm2js.dict"
}
- fuzzer_test("pdf_xml_fuzzer") {
+ fuzzer_test("pdf_codec_gif_fuzzer") {
sources = []
deps = [
- "//third_party/pdfium/testing/libfuzzer:pdf_xml_fuzzer",
+ "//third_party/pdfium/testing/libfuzzer:pdf_codec_gif_fuzzer",
+ ]
+ }
+
+ fuzzer_test("pdf_codec_jpeg_fuzzer") {
+ sources = []
+ deps = [
+ "//third_party/pdfium/testing/libfuzzer:pdf_codec_jpeg_fuzzer",
]
- dict = "dicts/pdf_xml.dict"
}
fuzzer_test("pdf_codec_png_fuzzer") {
@@ -58,4 +63,27 @@ if (pdf_enable_xfa) {
"//third_party/pdfium/testing/libfuzzer:pdf_codec_png_fuzzer",
]
}
+
+ fuzzer_test("pdf_codec_tiff_fuzzer") {
+ sources = []
+ deps = [
+ "//third_party/pdfium/testing/libfuzzer:pdf_codec_tiff_fuzzer",
+ ]
+ }
+
+ fuzzer_test("pdf_fm2js_fuzzer") {
+ sources = []
+ deps = [
+ "//third_party/pdfium/testing/libfuzzer:pdf_fm2js_fuzzer",
+ ]
+ dict = "dicts/pdf_fm2js.dict"
+ }
+
+ fuzzer_test("pdf_xml_fuzzer") {
+ sources = []
+ deps = [
+ "//third_party/pdfium/testing/libfuzzer:pdf_xml_fuzzer",
+ ]
+ dict = "dicts/pdf_xml.dict"
+ }
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698