diff options
author | dsinclair <dsinclair@chromium.org> | 2016-04-12 11:21:22 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-04-12 11:21:23 -0700 |
commit | d55e11eeb8ebf1e226a1166f395ba77248ce84c3 (patch) | |
tree | c28b1c1d6ac1597e569618cdeb02e3e0009bf8ed /pdfium.gyp | |
parent | ea98238666e33cd16b69cb23dcaca047c21c9998 (diff) | |
download | pdfium-d55e11eeb8ebf1e226a1166f395ba77248ce84c3.tar.xz |
Remove ICodec_* Interfaces.
All of the ICodec_* interfaces had a single implementation. This CL removes
the interfaces and uses the concrete classes in their place.
BUG=pdfium:468
Review URL: https://codereview.chromium.org/1876023003
Diffstat (limited to 'pdfium.gyp')
-rw-r--r-- | pdfium.gyp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/pdfium.gyp b/pdfium.gyp index 6fe4adf1f9..32e2d029a0 100644 --- a/pdfium.gyp +++ b/pdfium.gyp @@ -525,6 +525,14 @@ 'core/fxcodec/include/fx_codec.h', 'core/fxcodec/include/fx_codec_def.h', 'core/fxcodec/include/fx_codec_flate.h', + 'core/fxcodec/codec/ccodec_basicmodule.h', + 'core/fxcodec/codec/ccodec_faxmodule.h', + 'core/fxcodec/codec/ccodec_flatemodule.h', + 'core/fxcodec/codec/ccodec_iccmodule.h', + 'core/fxcodec/codec/ccodec_jbig2module.h', + 'core/fxcodec/codec/ccodec_jpegmodule.h', + 'core/fxcodec/codec/ccodec_jpxmodule.h', + 'core/fxcodec/codec/ccodec_scanlinedecoder.h', 'core/fxcodec/codec/codec_int.h', 'core/fxcodec/codec/fx_codec.cpp', 'core/fxcodec/codec/fx_codec_fax.cpp', @@ -587,12 +595,16 @@ 'third_party/third_party.gyp:fx_tiff', ], 'sources': [ + 'core/fxcodec/codec/ccodec_bmpmodule.h', + 'core/fxcodec/codec/ccodec_gifmodule.h', + 'core/fxcodec/codec/ccodec_pngmodule.h', + 'core/fxcodec/codec/ccodec_tiffmodule.h', 'core/fxcodec/codec/fx_codec_bmp.cpp', 'core/fxcodec/codec/fx_codec_gif.cpp', 'core/fxcodec/codec/fx_codec_png.cpp', 'core/fxcodec/codec/fx_codec_progress.cpp', - 'core/fxcodec/codec/fx_codec_progress.h', 'core/fxcodec/codec/fx_codec_tiff.cpp', + 'core/fxcodec/codec/include/ccodec_progressivedecoder.h', 'core/fxcodec/lbmp/fx_bmp.cpp', 'core/fxcodec/lbmp/fx_bmp.h', 'core/fxcodec/lgif/fx_gif.cpp', |