summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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",
+ ]
+}