summaryrefslogtreecommitdiff
path: root/core/fpdftext/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'core/fpdftext/BUILD.gn')
-rw-r--r--core/fpdftext/BUILD.gn24
1 files changed, 24 insertions, 0 deletions
diff --git a/core/fpdftext/BUILD.gn b/core/fpdftext/BUILD.gn
new file mode 100644
index 0000000000..9f3104e50a
--- /dev/null
+++ b/core/fpdftext/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright 2018 The 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.
+
+import("//build/config/jumbo.gni")
+import("../../pdfium.gni")
+
+jumbo_source_set("fpdftext") {
+ sources = [
+ "cpdf_linkextract.cpp",
+ "cpdf_linkextract.h",
+ "cpdf_textpage.cpp",
+ "cpdf_textpage.h",
+ "cpdf_textpagefind.cpp",
+ "cpdf_textpagefind.h",
+ "unicodenormalizationdata.cpp",
+ "unicodenormalizationdata.h",
+ ]
+ configs += [ "../../:pdfium_core_config" ]
+ deps = [
+ "../../:fxcrt",
+ ]
+ visibility = [ "../../*" ]
+}