summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn11
1 files changed, 10 insertions, 1 deletions
diff --git a/BUILD.gn b/BUILD.gn
index c54d57f66a..3ecc9a97e5 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1695,7 +1695,7 @@ test("pdfium_embeddertests") {
"//testing/gmock",
"//testing/gtest",
]
- include_dirs = []
+ include_dirs = [ "testing/gmock/include" ]
if (pdf_enable_v8) {
sources += [
"fpdfsdk/javascript/public_methods_embeddertest.cpp",
@@ -1715,3 +1715,12 @@ test("pdfium_embeddertests") {
}
configs += [ ":pdfium_config" ]
}
+
+if (pdf_is_standalone) {
+ source_set("samples") {
+ testonly = true
+ deps = [
+ "//samples",
+ ]
+ }
+}