diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2016-03-09 13:49:00 -0500 |
---|---|---|
committer | Dan Sinclair <dsinclair@chromium.org> | 2016-03-09 13:49:00 -0500 |
commit | 9332e0c2fced598a632e3bbe905b6f63b1f5b06b (patch) | |
tree | a8957a09cb34ecd28afcd6ebbed309d9c60e4644 /BUILD.gn | |
parent | 8388037a5c58d60043b11c03a8efe78c54c65a4b (diff) | |
download | pdfium-9332e0c2fced598a632e3bbe905b6f63b1f5b06b.tar.xz |
Cleanup the xfa/src/fgas directory.
This CL moves the code from xfa/src/fgas/src up one level. It then takes the
headers in xfa/src/fgas/include and moves them to their correct folder. The
src/ and include/ directories are then removed.
In some cases, when moving from include/ there was another header with the
same name. Those headers were either folded together, or the content of the
conflicting folder moved to an anonymous namespace in the cpp file as they were
not used anywhere else.
Files with duplicate names as core/src/crt were renamed to be fgas_ instead of
fx_. (e.g. fgas_system.h, fgas_memory.h, fgas_stream.h)
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1776303002 .
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 84 |
1 files changed, 39 insertions, 45 deletions
@@ -894,51 +894,45 @@ if (pdf_enable_xfa) { "xfa/src/fee/ifde_txtedtbuf.h", "xfa/src/fee/ifde_txtedtengine.h", "xfa/src/fee/ifde_txtedtpage.h", - "xfa/src/fgas/include/fx_alg.h", - "xfa/src/fgas/include/fx_cpg.h", - "xfa/src/fgas/include/fx_datetime.h", - "xfa/src/fgas/include/fx_fnt.h", - "xfa/src/fgas/include/fx_lbk.h", - "xfa/src/fgas/include/fx_lgg.h", - "xfa/src/fgas/include/fx_locale.h", - "xfa/src/fgas/include/fx_mem.h", - "xfa/src/fgas/include/fx_rbk.h", - "xfa/src/fgas/include/fx_sax.h", - "xfa/src/fgas/include/fx_stm.h", - "xfa/src/fgas/include/fx_sys.h", - "xfa/src/fgas/include/fx_tbk.h", - "xfa/src/fgas/include/fx_ucd.h", - "xfa/src/fgas/include/fx_utl.h", - "xfa/src/fgas/src/crt/fx_algorithm.cpp", - "xfa/src/fgas/src/crt/fx_codepage.cpp", - "xfa/src/fgas/src/crt/fx_encode.cpp", - "xfa/src/fgas/src/crt/fx_memory.cpp", - "xfa/src/fgas/src/crt/fx_memory.h", - "xfa/src/fgas/src/crt/fx_stream.cpp", - "xfa/src/fgas/src/crt/fx_stream.h", - "xfa/src/fgas/src/crt/fx_system.cpp", - "xfa/src/fgas/src/crt/fx_utils.cpp", - "xfa/src/fgas/src/crt/fx_utils.h", - "xfa/src/fgas/src/font/fx_fontutils.cpp", - "xfa/src/fgas/src/font/fx_fontutils.h", - "xfa/src/fgas/src/font/fx_gefont.cpp", - "xfa/src/fgas/src/font/fx_gefont.h", - "xfa/src/fgas/src/font/fx_stdfontmgr.cpp", - "xfa/src/fgas/src/font/fx_stdfontmgr.h", - "xfa/src/fgas/src/layout/fx_linebreak.cpp", - "xfa/src/fgas/src/layout/fx_rtfbreak.cpp", - "xfa/src/fgas/src/layout/fx_rtfbreak.h", - "xfa/src/fgas/src/layout/fx_textbreak.cpp", - "xfa/src/fgas/src/layout/fx_textbreak.h", - "xfa/src/fgas/src/layout/fx_unicode.cpp", - "xfa/src/fgas/src/layout/fx_unicode.h", - "xfa/src/fgas/src/localization/fx_datetime.cpp", - "xfa/src/fgas/src/localization/fx_locale.cpp", - "xfa/src/fgas/src/localization/fx_localeimp.h", - "xfa/src/fgas/src/localization/fx_localemgr.cpp", - "xfa/src/fgas/src/localization/fx_localemgr.h", - "xfa/src/fgas/src/xml/fx_sax_imp.cpp", - "xfa/src/fgas/src/xml/fx_sax_imp.h", + "xfa/src/fgas/crt/fgas_algorithm.cpp", + "xfa/src/fgas/crt/fgas_algorithm.h", + "xfa/src/fgas/crt/fgas_codepage.cpp", + "xfa/src/fgas/crt/fgas_codepage.h", + "xfa/src/fgas/crt/fgas_encode.cpp", + "xfa/src/fgas/crt/fgas_language.h", + "xfa/src/fgas/crt/fgas_memory.cpp", + "xfa/src/fgas/crt/fgas_memory.h", + "xfa/src/fgas/crt/fgas_stream.cpp", + "xfa/src/fgas/crt/fgas_stream.h", + "xfa/src/fgas/crt/fgas_system.cpp", + "xfa/src/fgas/crt/fgas_system.h", + "xfa/src/fgas/crt/fgas_utils.cpp", + "xfa/src/fgas/crt/fgas_utils.h", + "xfa/src/fgas/font/fgas_font.h", + "xfa/src/fgas/font/fgas_fontutils.cpp", + "xfa/src/fgas/font/fgas_fontutils.h", + "xfa/src/fgas/font/fgas_gefont.cpp", + "xfa/src/fgas/font/fgas_gefont.h", + "xfa/src/fgas/font/fgas_stdfontmgr.cpp", + "xfa/src/fgas/font/fgas_stdfontmgr.h", + "xfa/src/fgas/layout/fgas_linebreak.cpp", + "xfa/src/fgas/layout/fgas_linebreak.h", + "xfa/src/fgas/layout/fgas_rtfbreak.cpp", + "xfa/src/fgas/layout/fgas_rtfbreak.h", + "xfa/src/fgas/layout/fgas_textbreak.cpp", + "xfa/src/fgas/layout/fgas_textbreak.h", + "xfa/src/fgas/layout/fgas_unicode.cpp", + "xfa/src/fgas/layout/fgas_unicode.h", + "xfa/src/fgas/localization/fgas_datetime.cpp", + "xfa/src/fgas/localization/fgas_datetime.h", + "xfa/src/fgas/localization/fgas_locale.cpp", + "xfa/src/fgas/localization/fgas_locale.h", + "xfa/src/fgas/localization/fgas_localeimp.h", + "xfa/src/fgas/localization/fgas_localemgr.cpp", + "xfa/src/fgas/localization/fgas_localemgr.h", + "xfa/src/fgas/xml/fgas_sax.h", + "xfa/src/fgas/xml/fgas_sax_imp.cpp", + "xfa/src/fgas/xml/fgas_sax_imp.h", "xfa/src/fwl/basewidget/fwl_barcodeimp.cpp", "xfa/src/fwl/basewidget/fwl_barcodeimp.h", "xfa/src/fwl/basewidget/fwl_caretimp.cpp", |