summaryrefslogtreecommitdiff
path: root/xfa/fde/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fde/BUILD.gn')
-rw-r--r--xfa/fde/BUILD.gn28
1 files changed, 28 insertions, 0 deletions
diff --git a/xfa/fde/BUILD.gn b/xfa/fde/BUILD.gn
new file mode 100644
index 0000000000..ecfbbb2c6f
--- /dev/null
+++ b/xfa/fde/BUILD.gn
@@ -0,0 +1,28 @@
+# 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")
+
+assert(pdf_enable_xfa)
+
+jumbo_source_set("fde") {
+ sources = [
+ "cfde_data.h",
+ "cfde_texteditengine.cpp",
+ "cfde_texteditengine.h",
+ "cfde_textout.cpp",
+ "cfde_textout.h",
+ "cfde_wordbreak_data.cpp",
+ "cfde_wordbreak_data.h",
+ ]
+ deps = [
+ "../../:fxcrt",
+ ]
+ configs += [
+ "../../:pdfium_core_config",
+ "../:xfa_warnings",
+ ]
+ visibility = [ "../../*" ]
+}