diff options
author | thestig <thestig@chromium.org> | 2016-11-07 06:24:48 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-11-07 06:24:48 -0800 |
commit | 470b5fa8f8dbfd2aa702d9d8cfdc03a7b486b374 (patch) | |
tree | df09a23c88b0dbace9c2d9fa97570d75151c2cb6 /BUILD.gn | |
parent | 19cd7cc42700b844e6d9fc170a65bf7122d468b8 (diff) | |
download | pdfium-470b5fa8f8dbfd2aa702d9d8cfdc03a7b486b374.tar.xz |
Compile fuzzer sources in standalone builds.
- Add a template for fuzzers to remove redundancy.
- Sort fuzzers in alphabetical order.
Review-Url: https://codereview.chromium.org/2480043002
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1759,4 +1759,10 @@ if (pdf_is_standalone) { "//samples", ] } + group("fuzzers") { + testonly = true + deps = [ + "//testing/libfuzzer", + ] + } } |