diff options
author | npm <npm@chromium.org> | 2016-08-18 10:55:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-08-18 10:55:29 -0700 |
commit | 1a8946b09884393d7dc4941e59b3172a7e473b01 (patch) | |
tree | 12bfdaad2b15bd515f8d8fff27c7fe0db63cce2b /BUILD.gn | |
parent | 2eb7c7dd6392488d858989da8d57d618f58f04ca (diff) | |
download | pdfium-1a8946b09884393d7dc4941e59b3172a7e473b01.tar.xz |
Move CFX_UnicodeEncoding and CFX_UnicodeEncodingEx to their own files.
Review-Url: https://codereview.chromium.org/2260533002
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -762,6 +762,7 @@ static_library("fxge") { "core/fxge/ge/cfx_graphstatedata.cpp", "core/fxge/ge/cfx_pathdata.cpp", "core/fxge/ge/cfx_renderdevice.cpp", + "core/fxge/ge/cfx_unicodeencoding.cpp", "core/fxge/ge/fx_ge_font.cpp", "core/fxge/ge/fx_ge_fontmap.cpp", "core/fxge/ge/fx_ge_linux.cpp", @@ -778,6 +779,7 @@ static_library("fxge") { "core/fxge/include/cfx_graphstatedata.h", "core/fxge/include/cfx_pathdata.h", "core/fxge/include/cfx_renderdevice.h", + "core/fxge/include/cfx_unicodeencoding.h", "core/fxge/include/cfx_windowsdevice.h", "core/fxge/include/fx_dib.h", "core/fxge/include/fx_font.h", @@ -791,6 +793,13 @@ static_library("fxge") { ":pdfium_core_config", ] + if (pdf_enable_xfa) { + sources += [ + "core/fxge/ge/cfx_unicodeencodingex.cpp", + "core/fxge/include/cfx_unicodeencodingex.h", + ] + } + if (pdf_use_skia) { sources += [ "core/fxge/skia/fx_skia_device.cpp" ] deps = [ |