summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-04-01 01:35:01 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-04-04 13:24:48 +0000
commitf02c8bf51c992057376e0acdd262c18540bd8e13 (patch)
treea2fdf115cd4a861fb4924998fcfdf838712e2d44
parente115b2e6a892e0af3b011475c0deed093284e7b4 (diff)
downloadpdfium-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.gn14
1 files changed, 14 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 542ae1bf71..87770fcc23 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -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",
+ ]
+ }
+}