diff options
author | thestig <thestig@chromium.org> | 2016-11-08 12:59:30 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-08 12:59:30 -0800 |
commit | 62114cf3d85ee9149b270e02935c98395567f45e (patch) | |
tree | bd5a8e1dcaeb47e53c033c30c44f9f2e33bb3dbc /BUILD.gn | |
parent | c59fa8895fa6fa8428b9b278eee6f05478ab8f56 (diff) | |
download | pdfium-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.gn | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1769,4 +1769,10 @@ if (pdf_is_standalone) { "//samples", ] } + group("fuzzers") { + testonly = true + deps = [ + "//testing/libfuzzer", + ] + } } |