From 3d9490126610b9474af088a1e024cb6deb2d3356 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Thu, 13 Nov 2014 16:59:03 -0800 Subject: Build pdfium_test executable under GN. This is the first side of a two-sided patch; the dependency on //third_party/pdfium/samples will be included from //pdf/BUILD.gn in the chrome repo. BUG=https://code.google.com/p/pdfium/issues/detail?id=77 R=dpranke@chromium.org Review URL: https://codereview.chromium.org/720193004 --- samples/BUILD.gn | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 samples/BUILD.gn (limited to 'samples/BUILD.gn') 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", + ] +} -- cgit v1.2.3