diff options
author | Lei Zhang <thestig@chromium.org> | 2015-09-24 01:09:57 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-09-24 01:09:57 -0700 |
commit | 630a28442364f03c1d3d9b48873da42755e1fddf (patch) | |
tree | 1ac3a05e53f5bc9c43e1f4b022f664dcb4d57e88 /BUILD.gn | |
parent | b6b336a0a1849526f66c49588daa2ccdd09d42cd (diff) | |
download | pdfium-630a28442364f03c1d3d9b48873da42755e1fddf.tar.xz |
Split up JBig2_GeneralDecoder.cpp.
R=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1359233002 .
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 18 |
1 files changed, 15 insertions, 3 deletions
@@ -351,16 +351,22 @@ static_library("fxcodec") { "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", "core/src/fxcodec/codec/fx_codec_jpeg.cpp", "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", + "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp", "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", - "core/src/fxcodec/jbig2/JBig2_ArithQe.h", "core/src/fxcodec/jbig2/JBig2_BitStream.h", "core/src/fxcodec/jbig2/JBig2_Context.cpp", "core/src/fxcodec/jbig2/JBig2_Context.h", "core/src/fxcodec/jbig2/JBig2_Define.h", - "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", - "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", + "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp", + "core/src/fxcodec/jbig2/JBig2_GrdProc.h", + "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp", + "core/src/fxcodec/jbig2/JBig2_GrrdProc.h", + "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp", + "core/src/fxcodec/jbig2/JBig2_GsidProc.h", + "core/src/fxcodec/jbig2/JBig2_HtrdProc.cpp", + "core/src/fxcodec/jbig2/JBig2_HtrdProc.h", "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", @@ -372,10 +378,16 @@ static_library("fxcodec") { "core/src/fxcodec/jbig2/JBig2_Page.h", "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", "core/src/fxcodec/jbig2/JBig2_PatternDict.h", + "core/src/fxcodec/jbig2/JBig2_PddProc.cpp", + "core/src/fxcodec/jbig2/JBig2_PddProc.h", + "core/src/fxcodec/jbig2/JBig2_SddProc.cpp", + "core/src/fxcodec/jbig2/JBig2_SddProc.h", "core/src/fxcodec/jbig2/JBig2_Segment.cpp", "core/src/fxcodec/jbig2/JBig2_Segment.h", "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", + "core/src/fxcodec/jbig2/JBig2_TrdProc.cpp", + "core/src/fxcodec/jbig2/JBig2_TrdProc.h", ] configs -= [ "//build/config/compiler:chromium_code" ] |