summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-04-03 16:46:21 -0400
committerChromium commit bot <commit-bot@chromium.org>2017-04-03 21:05:39 +0000
commitac35589d5d1a593497cf28d91ab6a236f25833c3 (patch)
treefa68e190e5878156659dd0e3c649d83c912dee97 /BUILD.gn
parent6da8ac5053e9ebf7c4ce0d9d67b0443d3f8f6084 (diff)
downloadpdfium-ac35589d5d1a593497cf28d91ab6a236f25833c3.tar.xz
Split the FDE XML file into indiviual class files.
This Cl splits the fde_xml_int file apart into individual class files. Includes are fixed as needed. fde_xml.h is also removed and the needed defines moved to more appropiate places. Change-Id: I29774dabc4d0fb2d5092fcbbe7853f03401b6ec7 Reviewed-on: https://pdfium-review.googlesource.com/3616 Commit-Queue: dsinclair <dsinclair@chromium.org> Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn26
1 files changed, 20 insertions, 6 deletions
diff --git a/BUILD.gn b/BUILD.gn
index fa879d3e03..542ae1bf71 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -809,6 +809,8 @@ static_library("fxcrt") {
if (pdf_enable_xfa) {
sources += [
+ "core/fxcrt/cfx_blockbuffer.cpp",
+ "core/fxcrt/cfx_blockbuffer.h",
"core/fxcrt/cfx_char.cpp",
"core/fxcrt/cfx_char.h",
"core/fxcrt/cfx_chariter.cpp",
@@ -1402,11 +1404,23 @@ if (pdf_enable_xfa) {
"xfa/fde/ifde_txtedtdorecord.h",
"xfa/fde/ifde_txtedtengine.h",
"xfa/fde/ifde_txtedtpage.h",
- "xfa/fde/xml/cfde_xml_parser.cpp",
- "xfa/fde/xml/cfde_xml_parser.h",
- "xfa/fde/xml/fde_xml.h",
- "xfa/fde/xml/fde_xml_imp.cpp",
- "xfa/fde/xml/fde_xml_imp.h",
+ "xfa/fde/xml/cfde_xmlchardata.cpp",
+ "xfa/fde/xml/cfde_xmlchardata.h",
+ "xfa/fde/xml/cfde_xmldeclaration.h",
+ "xfa/fde/xml/cfde_xmldoc.cpp",
+ "xfa/fde/xml/cfde_xmldoc.h",
+ "xfa/fde/xml/cfde_xmlelement.cpp",
+ "xfa/fde/xml/cfde_xmlelement.h",
+ "xfa/fde/xml/cfde_xmlinstruction.cpp",
+ "xfa/fde/xml/cfde_xmlinstruction.h",
+ "xfa/fde/xml/cfde_xmlnode.cpp",
+ "xfa/fde/xml/cfde_xmlnode.h",
+ "xfa/fde/xml/cfde_xmlparser.cpp",
+ "xfa/fde/xml/cfde_xmlparser.h",
+ "xfa/fde/xml/cfde_xmlsyntaxparser.cpp",
+ "xfa/fde/xml/cfde_xmlsyntaxparser.h",
+ "xfa/fde/xml/cfde_xmltext.cpp",
+ "xfa/fde/xml/cfde_xmltext.h",
"xfa/fgas/crt/cfgas_formatstring.cpp",
"xfa/fgas/crt/cfgas_formatstring.h",
"xfa/fgas/crt/fgas_codepage.cpp",
@@ -1873,7 +1887,7 @@ test("pdfium_unittests") {
"xfa/fde/css/cfde_cssdeclaration_unittest.cpp",
"xfa/fde/css/cfde_cssstylesheet_unittest.cpp",
"xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp",
- "xfa/fde/xml/fde_xml_imp_unittest.cpp",
+ "xfa/fde/xml/cfde_xmlsyntaxparser_unittest.cpp",
"xfa/fgas/layout/fgas_rtfbreak_unittest.cpp",
"xfa/fxfa/app/cxfa_textparser_unittest.cpp",
"xfa/fxfa/cxfa_ffapp_unitest.cpp",