summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2015-10-19 16:04:22 -0700
committerTom Sepez <tsepez@chromium.org>2015-10-19 16:04:22 -0700
commitd831dc7147e9895185740f551fed7abe246e2adf (patch)
tree07e43e97c1c5534285ec81e670987aa8d3bdbd73 /BUILD.gn
parent81d44cd970875542a0abb29b1838e88994c88299 (diff)
downloadpdfium-d831dc7147e9895185740f551fed7abe246e2adf.tar.xz
Merge to XFA: Consolidate test support code.
Original Review URL: https://codereview.chromium.org/1416713002 . (cherry picked from commit 6d34d056a7188b7ae9800fe3ceb68645e0442879) Conflicts: BUILD.gn samples/BUILD.gn samples/pdfium_test.cc samples/samples.gyp R=thestig@chromium.org Review URL: https://codereview.chromium.org/1413593003 .
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn49
1 files changed, 42 insertions, 7 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 41e7a2cdf8..f921a00501 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -135,8 +135,45 @@ static_library("pdfium") {
}
}
-# Targets below this are only visible within this file.
-visibility = [ ":*" ]
+source_set("test_support") {
+ testonly = true
+ sources = [
+ "testing/fx_string_testhelpers.cpp",
+ "testing/fx_string_testhelpers.h",
+ "testing/test_support.cpp",
+ "testing/test_support.h",
+ ]
+ deps = [
+ "//testing/gmock",
+ "//testing/gtest",
+ ":pdfium",
+ ]
+ include_dirs = [
+ "."
+ ]
+ if (pdf_enable_v8) {
+ deps += [
+ "//v8",
+ "//v8:v8_libplatform",
+ ]
+ include_dirs += [
+ "//v8",
+ "//v8/include",
+ ]
+ }
+ configs -= [ "//build/config/compiler:chromium_code" ]
+ configs += [
+ ":pdfium_config",
+ "//build/config/compiler:no_chromium_code",
+ ]
+}
+
+# Targets below this are only visible within this file (and to the
+# top-level gn_visibility target used to help gn_all build everything).
+visibility = [
+ ":*",
+ "//:gn_visibility",
+]
static_library("fdrm") {
sources = [
@@ -1398,8 +1435,6 @@ test("pdfium_unittests") {
"core/src/fxcrt/fx_basic_memmgr_unittest.cpp",
"core/src/fxcrt/fx_basic_wstring_unittest.cpp",
"core/src/fxcrt/fx_system_unittest.cpp",
- "testing/fx_string_testhelpers.cpp",
- "testing/fx_string_testhelpers.h",
"third_party/base/nonstd_unique_ptr_unittest.cpp",
"xfa/src/fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp",
"xfa/src/fxfa/src/parser/xfa_utils_imp_unittest.cpp",
@@ -1407,7 +1442,8 @@ test("pdfium_unittests") {
deps = [
"//testing/gtest",
"//testing/gtest:gtest_main",
- ":pdfium"
+ ":pdfium",
+ ":test_support",
]
include_dirs = [ "." ]
configs -= [ "//build/config/compiler:chromium_code" ]
@@ -1429,13 +1465,12 @@ test("pdfium_embeddertests") {
"testing/embedder_test.h",
"testing/embedder_test_mock_delegate.h",
"testing/embedder_test_timer_handling_delegate.h",
- "testing/fx_string_testhelpers.cpp",
- "testing/fx_string_testhelpers.h",
]
deps = [
"//testing/gmock",
"//testing/gtest",
":pdfium",
+ ":test_support",
]
include_dirs = [
"."