summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2018-08-13 20:36:16 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-13 20:36:16 +0000
commitd801c9c9caddf3941f6844fab58b19261d7d3cad (patch)
tree745db126f620e06dadab32fd71ead7bc8ca2dede /BUILD.gn
parent30029419ad4b9e5cd382767a8645677afbeff7fd (diff)
downloadpdfium-d801c9c9caddf3941f6844fab58b19261d7d3cad.tar.xz
Implement CFX_CodecMemory.
This class is much simpler than CFX_MemoryStream and does only what CFX_BmpDecompressor and CFX_GifContext needs. Swap out CFX_MemoryStream and remove CFX_MemoryStream::Seek(). BUG=pdfium:263 Change-Id: Ifd8ce4d2b6c9fedd6ec842d46f54fc8e654fbca7 Reviewed-on: https://pdfium-review.googlesource.com/39880 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn6
1 files changed, 6 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index c3576b49b4..4fbb2932ad 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -824,6 +824,12 @@ jumbo_static_library("fxcodec") {
]
deps += [ "third_party:fx_tiff" ]
}
+ if (pdf_enable_xfa_bmp || pdf_enable_xfa_gif) {
+ sources += [
+ "core/fxcodec/codec/cfx_codec_memory.cpp",
+ "core/fxcodec/codec/cfx_codec_memory.h",
+ ]
+ }
}
}