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

Unified Diff: testing/libfuzzer/BUILD.gn

Issue 1814223003: Add an openjpeg libfuzzer. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: iwyu Created 4 years, 9 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
Index: testing/libfuzzer/BUILD.gn
diff --git a/testing/libfuzzer/BUILD.gn b/testing/libfuzzer/BUILD.gn
index d5ccb7f40fc7d7cb88225c922330d92825cf4543..0fb43f2790991d6dbb2099a0aaa79d581fc43286 100644
--- a/testing/libfuzzer/BUILD.gn
+++ b/testing/libfuzzer/BUILD.gn
@@ -47,4 +47,18 @@ if (pdf_enable_xfa) {
":libfuzzer_config",
]
}
+ source_set("pdf_jpx_fuzzer") {
Tom Sepez 2016/03/18 20:33:40 Need to make this linux only?
Oliver Chang 2016/03/18 20:50:26 Chromium's GN configs should handle this.
+ testonly = true
+ sources = [
+ "pdf_jpx_fuzzer.cc",
+ ]
+ deps = [
+ "//third_party/pdfium:pdfium",
+ ]
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [
+ "//build/config/compiler:no_chromium_code",
+ ":libfuzzer_config",
+ ]
+ }
}
« no previous file with comments | « testing/DEPS ('k') | testing/libfuzzer/fuzzers.gyp » ('j') | testing/libfuzzer/fuzzers.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698