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

Unified Diff: testing/libfuzzer/fuzzers.gyp

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/fuzzers.gyp
diff --git a/testing/libfuzzer/fuzzers.gyp b/testing/libfuzzer/fuzzers.gyp
index bdd90865928dbd792e80a7c938ceb522ca33bb16..1f04baa77f0b9fd2ba7e316d6b54073d92562e62 100644
--- a/testing/libfuzzer/fuzzers.gyp
+++ b/testing/libfuzzer/fuzzers.gyp
@@ -61,6 +61,21 @@
},
],
}],
+ ['OS=="linux"', {
+ 'targets': [
Tom Sepez 2016/03/18 20:33:40 need to test for xfa enabled?
Oliver Chang 2016/03/18 20:50:26 This shouldn't depend on any XFa features.
+ {
+ 'target_name': 'pdf_jpx_fuzzer',
+ 'type': 'executable',
+ 'dependencies': [
+ '../../pdfium.gyp:pdfium',
+ ],
+ 'sources': [
+ 'pdf_jpx_fuzzer.cc',
+ 'unittest_main.cc',
+ ],
+ },
+ ],
+ }],
],
# Empty target so that nonxfa builds work.
'targets': [

Powered by Google App Engine
This is Rietveld 408576698