Add pdfium_unittests to BUILD.gn

Brings GN build up to sync with GYP build for this test binary.

R=thestig@chromium.org

Review URL: https://codereview.chromium.org/840343005
diff --git a/BUILD.gn b/BUILD.gn
index 2076afb..86839fa 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -791,3 +791,19 @@
   configs -= [ "//build/config/compiler:chromium_code" ]
   configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
 }
+
+test("pdfium_unittests") {
+  sources = [
+    "core/src/fxcrt/fx_basic_bstring_unittest.cpp",
+    "testing/fx_string_testhelpers.cpp",
+    "testing/fx_string_testhelpers.h",
+  ]
+  deps = [
+    "//testing/gtest",
+    "//testing/gtest:gtest_main",
+    ":pdfium"
+  ]
+  include_dirs = [ "." ]
+  configs -= [ "//build/config/compiler:chromium_code" ]
+  configs += [ ":pdfium_config", "//build/config/compiler:no_chromium_code" ]
+}