Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(623)

Side by Side Diff: BUILD.gn

Issue 1359233002: Split up JBig2_GeneralDecoder.cpp. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_ArithDecoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 pdf_use_skia = false 7 pdf_use_skia = false
8 8
9 declare_args() { 9 declare_args() {
10 # On Android there's no system FreeType. On Windows and Mac, only a few 10 # On Android there's no system FreeType. On Windows and Mac, only a few
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 "core/include/fxcodec/fx_codec_provider.h", 344 "core/include/fxcodec/fx_codec_provider.h",
345 "core/src/fxcodec/codec/codec_int.h", 345 "core/src/fxcodec/codec/codec_int.h",
346 "core/src/fxcodec/codec/fx_codec.cpp", 346 "core/src/fxcodec/codec/fx_codec.cpp",
347 "core/src/fxcodec/codec/fx_codec_fax.cpp", 347 "core/src/fxcodec/codec/fx_codec_fax.cpp",
348 "core/src/fxcodec/codec/fx_codec_flate.cpp", 348 "core/src/fxcodec/codec/fx_codec_flate.cpp",
349 "core/src/fxcodec/codec/fx_codec_icc.cpp", 349 "core/src/fxcodec/codec/fx_codec_icc.cpp",
350 "core/src/fxcodec/codec/fx_codec_jbig.cpp", 350 "core/src/fxcodec/codec/fx_codec_jbig.cpp",
351 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp", 351 "core/src/fxcodec/codec/fx_codec_jbig_enc.cpp",
352 "core/src/fxcodec/codec/fx_codec_jpeg.cpp", 352 "core/src/fxcodec/codec/fx_codec_jpeg.cpp",
353 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp", 353 "core/src/fxcodec/codec/fx_codec_jpx_opj.cpp",
354 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp",
354 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h", 355 "core/src/fxcodec/jbig2/JBig2_ArithDecoder.h",
355 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp", 356 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp",
356 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h", 357 "core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h",
357 "core/src/fxcodec/jbig2/JBig2_ArithQe.h",
358 "core/src/fxcodec/jbig2/JBig2_BitStream.h", 358 "core/src/fxcodec/jbig2/JBig2_BitStream.h",
359 "core/src/fxcodec/jbig2/JBig2_Context.cpp", 359 "core/src/fxcodec/jbig2/JBig2_Context.cpp",
360 "core/src/fxcodec/jbig2/JBig2_Context.h", 360 "core/src/fxcodec/jbig2/JBig2_Context.h",
361 "core/src/fxcodec/jbig2/JBig2_Define.h", 361 "core/src/fxcodec/jbig2/JBig2_Define.h",
362 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.cpp", 362 "core/src/fxcodec/jbig2/JBig2_GrdProc.cpp",
363 "core/src/fxcodec/jbig2/JBig2_GeneralDecoder.h", 363 "core/src/fxcodec/jbig2/JBig2_GrdProc.h",
364 "core/src/fxcodec/jbig2/JBig2_GrrdProc.cpp",
365 "core/src/fxcodec/jbig2/JBig2_GrrdProc.h",
366 "core/src/fxcodec/jbig2/JBig2_GsidProc.cpp",
367 "core/src/fxcodec/jbig2/JBig2_GsidProc.h",
368 "core/src/fxcodec/jbig2/JBig2_HtrdProc.cpp",
369 "core/src/fxcodec/jbig2/JBig2_HtrdProc.h",
364 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp", 370 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.cpp",
365 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h", 371 "core/src/fxcodec/jbig2/JBig2_HuffmanDecoder.h",
366 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp", 372 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.cpp",
367 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h", 373 "core/src/fxcodec/jbig2/JBig2_HuffmanTable.h",
368 "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h", 374 "core/src/fxcodec/jbig2/JBig2_HuffmanTable_Standard.h",
369 "core/src/fxcodec/jbig2/JBig2_Image.cpp", 375 "core/src/fxcodec/jbig2/JBig2_Image.cpp",
370 "core/src/fxcodec/jbig2/JBig2_Image.h", 376 "core/src/fxcodec/jbig2/JBig2_Image.h",
371 "core/src/fxcodec/jbig2/JBig2_List.h", 377 "core/src/fxcodec/jbig2/JBig2_List.h",
372 "core/src/fxcodec/jbig2/JBig2_Page.h", 378 "core/src/fxcodec/jbig2/JBig2_Page.h",
373 "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp", 379 "core/src/fxcodec/jbig2/JBig2_PatternDict.cpp",
374 "core/src/fxcodec/jbig2/JBig2_PatternDict.h", 380 "core/src/fxcodec/jbig2/JBig2_PatternDict.h",
381 "core/src/fxcodec/jbig2/JBig2_PddProc.cpp",
382 "core/src/fxcodec/jbig2/JBig2_PddProc.h",
383 "core/src/fxcodec/jbig2/JBig2_SddProc.cpp",
384 "core/src/fxcodec/jbig2/JBig2_SddProc.h",
375 "core/src/fxcodec/jbig2/JBig2_Segment.cpp", 385 "core/src/fxcodec/jbig2/JBig2_Segment.cpp",
376 "core/src/fxcodec/jbig2/JBig2_Segment.h", 386 "core/src/fxcodec/jbig2/JBig2_Segment.h",
377 "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp", 387 "core/src/fxcodec/jbig2/JBig2_SymbolDict.cpp",
378 "core/src/fxcodec/jbig2/JBig2_SymbolDict.h", 388 "core/src/fxcodec/jbig2/JBig2_SymbolDict.h",
389 "core/src/fxcodec/jbig2/JBig2_TrdProc.cpp",
390 "core/src/fxcodec/jbig2/JBig2_TrdProc.h",
379 ] 391 ]
380 configs -= [ "//build/config/compiler:chromium_code" ] 392 configs -= [ "//build/config/compiler:chromium_code" ]
381 393
382 if (is_posix) { 394 if (is_posix) {
383 # core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int 395 # core/src/fxcodec/fx_libopenjpeg/src/fx_mct.c does an pointer-to-int
384 # conversion to check that an address is 16-bit aligned (benign). 396 # conversion to check that an address is 16-bit aligned (benign).
385 cflags_c = [ "-Wno-pointer-to-int-cast" ] 397 cflags_c = [ "-Wno-pointer-to-int-cast" ]
386 } 398 }
387 configs += [ 399 configs += [
388 ":pdfium_config", 400 ":pdfium_config",
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 "//v8", 797 "//v8",
786 "//v8/include", 798 "//v8/include",
787 "." 799 "."
788 ] 800 ]
789 configs -= [ "//build/config/compiler:chromium_code" ] 801 configs -= [ "//build/config/compiler:chromium_code" ]
790 configs += [ 802 configs += [
791 ":pdfium_config", 803 ":pdfium_config",
792 "//build/config/compiler:no_chromium_code", 804 "//build/config/compiler:no_chromium_code",
793 ] 805 ]
794 } 806 }
OLDNEW
« no previous file with comments | « no previous file | core/src/fxcodec/jbig2/JBig2_ArithDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698