summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2016-11-08 12:59:30 -0800
committerCommit bot <commit-bot@chromium.org>2016-11-08 12:59:30 -0800
commit62114cf3d85ee9149b270e02935c98395567f45e (patch)
treebd5a8e1dcaeb47e53c033c30c44f9f2e33bb3dbc /BUILD.gn
parentc59fa8895fa6fa8428b9b278eee6f05478ab8f56 (diff)
downloadpdfium-62114cf3d85ee9149b270e02935c98395567f45e.tar.xz
Compile fuzzer sources in standalone builds. (try 2)
- Add a template for fuzzers to remove redundancy. - Sort fuzzers in alphabetical order. Previous attempt: https://codereview.chromium.org/2480043002/ Review-Url: https://codereview.chromium.org/2481933003
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn6
1 files changed, 6 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index ca9cb7b67a..33d64d7c00 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1769,4 +1769,10 @@ if (pdf_is_standalone) {
"//samples",
]
}
+ group("fuzzers") {
+ testonly = true
+ deps = [
+ "//testing/libfuzzer",
+ ]
+ }
}