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

Unified Diff: testing/libfuzzer/BUILD.gn

Issue 2370943004: Add fuzzer for jbig2 parsing (Closed)
Patch Set: address thestig's comments Created 4 years, 3 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 | testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/libfuzzer/BUILD.gn
diff --git a/testing/libfuzzer/BUILD.gn b/testing/libfuzzer/BUILD.gn
index 7049add6c578595f737d91387f5e88dd2f8f6eb8..e89918b05f8c0a097b583fe7f6e04a4e28722a4f 100644
--- a/testing/libfuzzer/BUILD.gn
+++ b/testing/libfuzzer/BUILD.gn
@@ -199,6 +199,21 @@ source_set("pdf_codec_icc_fuzzer") {
]
}
+source_set("pdf_codec_jbig2_fuzzer") {
+ testonly = true
+ sources = [
+ "pdf_codec_jbig2_fuzzer.cc",
+ ]
+ deps = [
+ "//third_party/pdfium:pdfium",
+ ]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [
+ "//build/config/compiler:no_chromium_code",
+ ":libfuzzer_config",
+ ]
+}
+
source_set("pdf_jpx_fuzzer") {
testonly = true
sources = [
« no previous file with comments | « no previous file | testing/libfuzzer/pdf_codec_jbig2_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698