summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn13
1 files changed, 13 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 2076afb87a..a442e79394 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -791,3 +791,16 @@ static_library("formfiller") {
configs -= [ "//build/config/compiler:chromium_code" ]
configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
}
+
+executable("pdfium_unittests") {
+ testonly = true
+ sources = [
+ "core/src/fxcrt/fx_basic_bstring_unittest.cpp",
+ ]
+ deps = [
+ ":pdfium",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//testing/gtest",
+ ]
+}