diff options
author | Lei Zhang <thestig@chromium.org> | 2017-04-01 01:35:01 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-04 13:24:48 +0000 |
commit | f02c8bf51c992057376e0acdd262c18540bd8e13 (patch) | |
tree | a2fdf115cd4a861fb4924998fcfdf838712e2d44 | |
parent | e115b2e6a892e0af3b011475c0deed093284e7b4 (diff) | |
download | pdfium-f02c8bf51c992057376e0acdd262c18540bd8e13.tar.xz |
Add a pdfium_all target.
This can be used to build only the PDFium targets, and skip targets from
projects PDFium depends on, like V8, when one builds "all" targets.
Change-Id: I25b8cd8ac946f6a28adb109d7b175b8a69f9f3d7
Reviewed-on: https://pdfium-review.googlesource.com/3562
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
-rw-r--r-- | BUILD.gn | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -1981,3 +1981,17 @@ if (pdf_is_standalone) { ] } } + +group("pdfium_all") { + testonly = true + deps = [ + ":pdfium_embeddertests", + ":pdfium_unittests", + ] + if (pdf_is_standalone) { + deps += [ + ":fuzzers", + ":samples", + ] + } +} |