summaryrefslogtreecommitdiff
path: root/samples/BUILD.gn
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2014-11-13 17:04:15 -0800
committerTom Sepez <tsepez@chromium.org>2014-11-13 17:04:15 -0800
commit65edf5944fc0ec40b1721a79acefa0297287665d (patch)
treea6affe2205466de06d1d20be4fe51952a53fa013 /samples/BUILD.gn
parent83dea75eacaaf64349b4aa7eac47f0864bfba491 (diff)
downloadpdfium-65edf5944fc0ec40b1721a79acefa0297287665d.tar.xz
Merge patch from issue 720193004 to XFA.
Adds GN build capability for pdfium_test. TBR=dpranke@chromium.org Review URL: https://codereview.chromium.org/720373002
Diffstat (limited to 'samples/BUILD.gn')
-rw-r--r--samples/BUILD.gn18
1 files changed, 18 insertions, 0 deletions
diff --git a/samples/BUILD.gn b/samples/BUILD.gn
new file mode 100644
index 0000000000..e690c23622
--- /dev/null
+++ b/samples/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2014 PDFium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+group("samples") {
+ deps = [
+ ":pdfium_test",
+ ]
+}
+
+executable("pdfium_test") {
+ sources = [
+ "pdfium_test.cc",
+ ]
+ deps = [
+ "//third_party/pdfium",
+ ]
+}