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

Unified Diff: testing/libfuzzer/fuzzers.gyp

Issue 1703623002: Fix GYP for nonxfa builds from last commit. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: comment Created 4 years, 10 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: testing/libfuzzer/fuzzers.gyp
diff --git a/testing/libfuzzer/fuzzers.gyp b/testing/libfuzzer/fuzzers.gyp
index a3c0d452b55ba5c722ddb6ac2c140e1de32c7906..a65fe1b993827af2ec8033c8a9552ff052e8aa0c 100644
--- a/testing/libfuzzer/fuzzers.gyp
+++ b/testing/libfuzzer/fuzzers.gyp
@@ -35,7 +35,8 @@
],
},
'conditions': [
- ['pdf_enable_xfa==1 and OS!="win"', {
+ # FIXME(ochang): Make this work on Mac/Windows.
+ ['pdf_enable_xfa==1 and OS=="linux"', {
'targets': [
{
'target_name': 'pdf_fm2js_fuzzer',
@@ -61,5 +62,12 @@
},
],
}],
- ]
+ ],
+ # Empty target so that nonxfa builds work.
+ 'targets': [
+ {
+ 'target_name': 'empty_target',
+ 'type': 'none',
+ }
+ ],
}
« 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