summaryrefslogtreecommitdiff
path: root/core/fpdfdoc
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-10-12 18:58:21 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-10-12 18:58:21 +0000
commit8460088891f98a9138718fc9c89bf309eb88580f (patch)
tree0a9e3023f6262c720326b7f74df7b31f2d6ca5c8 /core/fpdfdoc
parentd145e4b923ae99f67b734924885738437248aa85 (diff)
downloadpdfium-8460088891f98a9138718fc9c89bf309eb88580f.tar.xz
Split most core build rules into various BUILD.gn files in core.
Change-Id: I773eec2bbf104f073eba7a64ed19f6fba0131d21 Reviewed-on: https://pdfium-review.googlesource.com/c/43946 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r--core/fpdfdoc/BUILD.gn90
1 files changed, 90 insertions, 0 deletions
diff --git a/core/fpdfdoc/BUILD.gn b/core/fpdfdoc/BUILD.gn
new file mode 100644
index 0000000000..e76486dee3
--- /dev/null
+++ b/core/fpdfdoc/BUILD.gn
@@ -0,0 +1,90 @@
+# 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("fpdfdoc") {
+ sources = [
+ "cline.cpp",
+ "cline.h",
+ "cpdf_aaction.cpp",
+ "cpdf_aaction.h",
+ "cpdf_action.cpp",
+ "cpdf_action.h",
+ "cpdf_actionfields.cpp",
+ "cpdf_actionfields.h",
+ "cpdf_annot.cpp",
+ "cpdf_annot.h",
+ "cpdf_annotlist.cpp",
+ "cpdf_annotlist.h",
+ "cpdf_apsettings.cpp",
+ "cpdf_apsettings.h",
+ "cpdf_bookmark.cpp",
+ "cpdf_bookmark.h",
+ "cpdf_bookmarktree.cpp",
+ "cpdf_bookmarktree.h",
+ "cpdf_defaultappearance.cpp",
+ "cpdf_defaultappearance.h",
+ "cpdf_dest.cpp",
+ "cpdf_dest.h",
+ "cpdf_docjsactions.cpp",
+ "cpdf_docjsactions.h",
+ "cpdf_filespec.cpp",
+ "cpdf_filespec.h",
+ "cpdf_formcontrol.cpp",
+ "cpdf_formcontrol.h",
+ "cpdf_formfield.cpp",
+ "cpdf_formfield.h",
+ "cpdf_iconfit.cpp",
+ "cpdf_iconfit.h",
+ "cpdf_interactiveform.cpp",
+ "cpdf_interactiveform.h",
+ "cpdf_link.cpp",
+ "cpdf_link.h",
+ "cpdf_linklist.cpp",
+ "cpdf_linklist.h",
+ "cpdf_metadata.cpp",
+ "cpdf_metadata.h",
+ "cpdf_nametree.cpp",
+ "cpdf_nametree.h",
+ "cpdf_numbertree.cpp",
+ "cpdf_numbertree.h",
+ "cpdf_occontext.cpp",
+ "cpdf_occontext.h",
+ "cpdf_pagelabel.cpp",
+ "cpdf_pagelabel.h",
+ "cpdf_structelement.cpp",
+ "cpdf_structelement.h",
+ "cpdf_structtree.cpp",
+ "cpdf_structtree.h",
+ "cpdf_variabletext.cpp",
+ "cpdf_variabletext.h",
+ "cpdf_viewerpreferences.cpp",
+ "cpdf_viewerpreferences.h",
+ "cpvt_floatrect.h",
+ "cpvt_fontmap.cpp",
+ "cpvt_fontmap.h",
+ "cpvt_generateap.cpp",
+ "cpvt_generateap.h",
+ "cpvt_line.h",
+ "cpvt_lineinfo.h",
+ "cpvt_word.h",
+ "cpvt_wordinfo.cpp",
+ "cpvt_wordinfo.h",
+ "cpvt_wordplace.h",
+ "cpvt_wordrange.h",
+ "csection.cpp",
+ "csection.h",
+ "ctypeset.cpp",
+ "ctypeset.h",
+ "ipdf_formnotify.h",
+ "ipvt_fontmap.h",
+ ]
+ configs += [ "../../:pdfium_core_config" ]
+ deps = [
+ "../../:fxcrt",
+ ]
+ visibility = [ "../../*" ]
+}