diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-19 09:19:57 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-19 13:33:07 +0000 |
commit | 0d86ecb08e1b2c204333b1f1f6b0b014e5b2971c (patch) | |
tree | f816429f8581c16a60773eb23385dc8e55729bac /BUILD.gn | |
parent | 3b71d26f092ebc86ca9177fbbe89d83caa67ae1b (diff) | |
download | pdfium-0d86ecb08e1b2c204333b1f1f6b0b014e5b2971c.tar.xz |
Move fde XML parser to core
This CL moves the XML parser from FDE into FXCRT and renames to CFX_
from CFDE_.
Change-Id: I21a9590bf74daf5517df630d7e7a5de89da99ea4
Reviewed-on: https://pdfium-review.googlesource.com/4312
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Nicolás Peña <npm@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 38 |
1 files changed, 19 insertions, 19 deletions
@@ -838,6 +838,24 @@ static_library("fxcrt") { "core/fxcrt/xml/cfx_saxreader.h", "core/fxcrt/xml/cfx_saxreaderhandler.cpp", "core/fxcrt/xml/cfx_saxreaderhandler.h", + "core/fxcrt/xml/cfx_xmlattributenode.cpp", + "core/fxcrt/xml/cfx_xmlattributenode.h", + "core/fxcrt/xml/cfx_xmlchardata.cpp", + "core/fxcrt/xml/cfx_xmlchardata.h", + "core/fxcrt/xml/cfx_xmldoc.cpp", + "core/fxcrt/xml/cfx_xmldoc.h", + "core/fxcrt/xml/cfx_xmlelement.cpp", + "core/fxcrt/xml/cfx_xmlelement.h", + "core/fxcrt/xml/cfx_xmlinstruction.cpp", + "core/fxcrt/xml/cfx_xmlinstruction.h", + "core/fxcrt/xml/cfx_xmlnode.cpp", + "core/fxcrt/xml/cfx_xmlnode.h", + "core/fxcrt/xml/cfx_xmlparser.cpp", + "core/fxcrt/xml/cfx_xmlparser.h", + "core/fxcrt/xml/cfx_xmlsyntaxparser.cpp", + "core/fxcrt/xml/cfx_xmlsyntaxparser.h", + "core/fxcrt/xml/cfx_xmltext.cpp", + "core/fxcrt/xml/cfx_xmltext.h", ] } } @@ -1410,24 +1428,6 @@ if (pdf_enable_xfa) { "xfa/fde/ifde_txtedtdorecord.h", "xfa/fde/ifde_txtedtengine.h", "xfa/fde/ifde_txtedtpage.h", - "xfa/fde/xml/cfde_xmlattributenode.cpp", - "xfa/fde/xml/cfde_xmlattributenode.h", - "xfa/fde/xml/cfde_xmlchardata.cpp", - "xfa/fde/xml/cfde_xmlchardata.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_language.h", @@ -1887,12 +1887,12 @@ test("pdfium_unittests") { if (pdf_enable_xfa) { sources += [ "core/fxcrt/xml/cfx_saxreader_unittest.cpp", + "core/fxcrt/xml/cfx_xmlsyntaxparser_unittest.cpp", "fxbarcode/pdf417/BC_PDF417HighLevelEncoder_unittest.cpp", "xfa/fde/cfde_txtedtbuf_unittest.cpp", "xfa/fde/css/cfde_cssdeclaration_unittest.cpp", "xfa/fde/css/cfde_cssstylesheet_unittest.cpp", "xfa/fde/css/cfde_cssvaluelistparser_unittest.cpp", - "xfa/fde/xml/cfde_xmlsyntaxparser_unittest.cpp", "xfa/fgas/layout/cfx_rtfbreak_unittest.cpp", "xfa/fxfa/app/cxfa_textparser_unittest.cpp", "xfa/fxfa/cxfa_ffapp_unittest.cpp", |