diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-05-09 21:06:22 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-05-09 21:06:22 +0000 |
commit | 607f3cd63a314cd3a6c219b19cce31805b66cd6d (patch) | |
tree | 74c9bff427b4c8f4697ee28b17bbebe2be411cb2 /core/fxcodec/fx_codec_def.h | |
parent | d5d48457dabbe71e7f6b0baf2eaea6aa0dc86736 (diff) | |
download | pdfium-607f3cd63a314cd3a6c219b19cce31805b66cd6d.tar.xz |
Do not build GIF when codec is disabled
Currently all of the GIF related code is being built when support for
the codec is disabled, it just isn't being utilized. Depending on the
settings being used, this unneeded code may or may not get stripped
during linking.
This CL explicitly turns off building the GIF codec code if support
for GIF is turned off.
This also catches a few missed cases from previous CLs.
BUG=pdfium:1080
Change-Id: Ie7fe2d894d2ae2f8f36ae05e0ff256f2ce6ef8d4
Reviewed-on: https://pdfium-review.googlesource.com/32330
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'core/fxcodec/fx_codec_def.h')
-rw-r--r-- | core/fxcodec/fx_codec_def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/fxcodec/fx_codec_def.h b/core/fxcodec/fx_codec_def.h index b7944ee1c1..f7d6916aa5 100644 --- a/core/fxcodec/fx_codec_def.h +++ b/core/fxcodec/fx_codec_def.h @@ -31,7 +31,9 @@ enum FXCODEC_IMAGE_TYPE { #ifdef PDF_ENABLE_XFA_PNG FXCODEC_IMAGE_PNG, #endif // PDF_ENABLE_XFA_PNG +#ifdef PDF_ENABLE_XFA_GIF FXCODEC_IMAGE_GIF, +#endif // PDF_ENABLE_XFA_GIF #ifdef PDF_ENABLE_XFA_TIFF FXCODEC_IMAGE_TIFF, #endif // PDF_ENABLE_XFA_TIFF |