summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authordsinclair <dsinclair@chromium.org>2016-04-05 12:01:42 -0700
committerCommit bot <commit-bot@chromium.org>2016-04-05 12:01:42 -0700
commitc7a7349cf316af37d4ad4b71c5742159deccbf33 (patch)
tree5006913b93a6d498e3df158bc644400e3a1a0c7c /BUILD.gn
parent179bebb9a14dfd3ba91e9e068d4d436657a7c780 (diff)
downloadpdfium-c7a7349cf316af37d4ad4b71c5742159deccbf33.tar.xz
Remove core/include/fpdfdoc/fpdf_vt.h
This CL removes the core/include/fpdfdoc/fpdf_vt.h file. The IPDF_VariableText class was removed in favour of the only concrete class of CPD_VariableText. CPVT_Provider was moved to CPDF_VariableText::Provider and CPDF_VariableText_Iterator was moved to CPDF_VariableText::Iterator. The IFX_Edit_FontMap interface was merged into the IPVT_FontMap interface so there is only one. Other classes were split out as needed in order to keep things compiling. BUG=pdfium:468 Review URL: https://codereview.chromium.org/1860063002
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn19
1 files changed, 15 insertions, 4 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 6e11f18ca6..8e9cc0cb1b 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -192,17 +192,22 @@ static_library("fdrm") {
static_library("fpdfdoc") {
sources = [
+ "core/fpdfdoc/cpdf_variabletext.cpp",
"core/fpdfdoc/cpvt_color.cpp",
"core/fpdfdoc/cpvt_color.h",
"core/fpdfdoc/cpvt_dash.h",
+ "core/fpdfdoc/cpvt_floatrect.h",
"core/fpdfdoc/cpvt_fontmap.cpp",
"core/fpdfdoc/cpvt_fontmap.h",
"core/fpdfdoc/cpvt_generateap.cpp",
"core/fpdfdoc/cpvt_generateap.h",
- "core/fpdfdoc/cpvt_provider.h",
+ "core/fpdfdoc/cpvt_lineinfo.h",
+ "core/fpdfdoc/cpvt_sectioninfo.h",
+ "core/fpdfdoc/cpvt_wordinfo.h",
+ "core/fpdfdoc/csection.h",
+ "core/fpdfdoc/ctypeset.h",
"core/fpdfdoc/doc_action.cpp",
"core/fpdfdoc/doc_annot.cpp",
- "core/fpdfdoc/doc_ap.cpp",
"core/fpdfdoc/doc_basic.cpp",
"core/fpdfdoc/doc_bookmark.cpp",
"core/fpdfdoc/doc_form.cpp",
@@ -216,13 +221,19 @@ static_library("fpdfdoc") {
"core/fpdfdoc/doc_utils.h",
"core/fpdfdoc/doc_viewerPreferences.cpp",
"core/fpdfdoc/doc_vt.cpp",
- "core/fpdfdoc/doc_vtmodule.cpp",
+ "core/fpdfdoc/include/cpdf_variabletext.h",
+ "core/fpdfdoc/include/cpvt_line.h",
+ "core/fpdfdoc/include/cpvt_secprops.h",
+ "core/fpdfdoc/include/cpvt_section.h",
+ "core/fpdfdoc/include/cpvt_word.h",
+ "core/fpdfdoc/include/cpvt_wordplace.h",
+ "core/fpdfdoc/include/cpvt_wordprops.h",
+ "core/fpdfdoc/include/cpvt_wordrange.h",
"core/fpdfdoc/ipvt_fontmap.h",
"core/fpdfdoc/pdf_vt.h",
"core/fpdfdoc/tagged_int.h",
"core/include/fpdfdoc/fpdf_doc.h",
"core/include/fpdfdoc/fpdf_tagged.h",
- "core/include/fpdfdoc/fpdf_vt.h",
]
configs += [ ":pdfium_config" ]
}