diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-13 15:32:07 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-14 14:13:24 +0000 |
commit | 893822aa5b6254591f8e80fbffcbb4fa6ad849aa (patch) | |
tree | 74e20ab6378d515c12a1ec9b9fc70d8e309b361b /BUILD.gn | |
parent | 80e370c7d8b6541f59d98b6cbfbaae51f7e139da (diff) | |
download | pdfium-893822aa5b6254591f8e80fbffcbb4fa6ad849aa.tar.xz |
Merge text breaking helper classes.
This Cl merges the CFX_TxtPiece and CFX_RTFPiece classes into
CFX_BreakPiece. CFX_TxtLine and CFX_RTFLine into CFX_BreakLine and
CFX_TxtChar and CFX_RTFChar into CFX_Char.
Change-Id: I95421bdf4cafd5e394db9238dea3603ccb8349c3
Reviewed-on: https://pdfium-review.googlesource.com/2966
Reviewed-by: Nicolás Peña <npm@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -799,6 +799,8 @@ static_library("fxcrt") { if (pdf_enable_xfa) { sources += [ + "core/fxcrt/cfx_char.cpp", + "core/fxcrt/cfx_char.h", "core/fxcrt/fx_arabic.cpp", "core/fxcrt/fx_arabic.h", ] @@ -1234,6 +1236,10 @@ if (pdf_enable_xfa) { "xfa/fgas/font/cfgas_gefont.h", "xfa/fgas/font/fgas_fontutils.cpp", "xfa/fgas/font/fgas_fontutils.h", + "xfa/fgas/layout/cfx_breakline.cpp", + "xfa/fgas/layout/cfx_breakline.h", + "xfa/fgas/layout/cfx_breakpiece.cpp", + "xfa/fgas/layout/cfx_breakpiece.h", "xfa/fgas/layout/fgas_linebreak.cpp", "xfa/fgas/layout/fgas_linebreak.h", "xfa/fgas/layout/fgas_rtfbreak.cpp", |