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

Side by Side Diff: BUILD.gn

Issue 1876023003: Remove ICodec_* Interfaces. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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/fpdfapi/fpdf_basic_module.cpp » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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("//build_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("pdfium.gni") 7 import("pdfium.gni")
8 8
9 config("pdfium_config") { 9 config("pdfium_config") {
10 cflags = [] 10 cflags = []
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 static_library("fxcodec") { 495 static_library("fxcodec") {
496 deps = [ 496 deps = [
497 "third_party:fx_lcms2", 497 "third_party:fx_lcms2",
498 "third_party:fx_libopenjpeg", 498 "third_party:fx_libopenjpeg",
499 "third_party:fx_zlib", 499 "third_party:fx_zlib",
500 500
501 # This is a generic JPEG library dependency. 501 # This is a generic JPEG library dependency.
502 "//third_party:jpeg", 502 "//third_party:jpeg",
503 ] 503 ]
504 sources = [ 504 sources = [
505 "core/fxcodec/codec/ccodec_basicmodule.h",
506 "core/fxcodec/codec/ccodec_faxmodule.h",
507 "core/fxcodec/codec/ccodec_flatemodule.h",
508 "core/fxcodec/codec/ccodec_iccmodule.h",
509 "core/fxcodec/codec/ccodec_jbig2module.h",
510 "core/fxcodec/codec/ccodec_jpegmodule.h",
511 "core/fxcodec/codec/ccodec_jpxmodule.h",
512 "core/fxcodec/codec/ccodec_scanlinedecoder.h",
505 "core/fxcodec/codec/codec_int.h", 513 "core/fxcodec/codec/codec_int.h",
506 "core/fxcodec/codec/fx_codec.cpp", 514 "core/fxcodec/codec/fx_codec.cpp",
507 "core/fxcodec/codec/fx_codec_fax.cpp", 515 "core/fxcodec/codec/fx_codec_fax.cpp",
508 "core/fxcodec/codec/fx_codec_flate.cpp", 516 "core/fxcodec/codec/fx_codec_flate.cpp",
509 "core/fxcodec/codec/fx_codec_icc.cpp", 517 "core/fxcodec/codec/fx_codec_icc.cpp",
510 "core/fxcodec/codec/fx_codec_jbig.cpp", 518 "core/fxcodec/codec/fx_codec_jbig.cpp",
511 "core/fxcodec/codec/fx_codec_jpeg.cpp", 519 "core/fxcodec/codec/fx_codec_jpeg.cpp",
512 "core/fxcodec/codec/fx_codec_jpx_opj.cpp", 520 "core/fxcodec/codec/fx_codec_jpx_opj.cpp",
513 "core/fxcodec/include/fx_codec.h", 521 "core/fxcodec/include/fx_codec.h",
514 "core/fxcodec/include/fx_codec_def.h", 522 "core/fxcodec/include/fx_codec_def.h",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 "core/fxcodec/jbig2/JBig2_Segment.cpp", 557 "core/fxcodec/jbig2/JBig2_Segment.cpp",
550 "core/fxcodec/jbig2/JBig2_Segment.h", 558 "core/fxcodec/jbig2/JBig2_Segment.h",
551 "core/fxcodec/jbig2/JBig2_SymbolDict.cpp", 559 "core/fxcodec/jbig2/JBig2_SymbolDict.cpp",
552 "core/fxcodec/jbig2/JBig2_SymbolDict.h", 560 "core/fxcodec/jbig2/JBig2_SymbolDict.h",
553 "core/fxcodec/jbig2/JBig2_TrdProc.cpp", 561 "core/fxcodec/jbig2/JBig2_TrdProc.cpp",
554 "core/fxcodec/jbig2/JBig2_TrdProc.h", 562 "core/fxcodec/jbig2/JBig2_TrdProc.h",
555 ] 563 ]
556 include_dirs = [] 564 include_dirs = []
557 if (pdf_enable_xfa) { 565 if (pdf_enable_xfa) {
558 sources += [ 566 sources += [
567 "core/fxcodec/codec/ccodec_bmpmodule.h",
568 "core/fxcodec/codec/ccodec_gifmodule.h",
569 "core/fxcodec/codec/ccodec_pngmodule.h",
570 "core/fxcodec/codec/ccodec_tiffmodule.h",
559 "core/fxcodec/codec/fx_codec_bmp.cpp", 571 "core/fxcodec/codec/fx_codec_bmp.cpp",
560 "core/fxcodec/codec/fx_codec_gif.cpp", 572 "core/fxcodec/codec/fx_codec_gif.cpp",
561 "core/fxcodec/codec/fx_codec_png.cpp", 573 "core/fxcodec/codec/fx_codec_png.cpp",
562 "core/fxcodec/codec/fx_codec_progress.cpp", 574 "core/fxcodec/codec/fx_codec_progress.cpp",
563 "core/fxcodec/codec/fx_codec_progress.h",
564 "core/fxcodec/codec/fx_codec_tiff.cpp", 575 "core/fxcodec/codec/fx_codec_tiff.cpp",
576 "core/fxcodec/codec/include/ccodec_progressivedecoder.h",
565 "core/fxcodec/lbmp/fx_bmp.cpp", 577 "core/fxcodec/lbmp/fx_bmp.cpp",
566 "core/fxcodec/lbmp/fx_bmp.h", 578 "core/fxcodec/lbmp/fx_bmp.h",
567 "core/fxcodec/lgif/fx_gif.cpp", 579 "core/fxcodec/lgif/fx_gif.cpp",
568 "core/fxcodec/lgif/fx_gif.h", 580 "core/fxcodec/lgif/fx_gif.h",
569 ] 581 ]
570 deps += [ 582 deps += [
571 "third_party:fx_lpng", 583 "third_party:fx_lpng",
572 "third_party:fx_tiff", 584 "third_party:fx_tiff",
573 ] 585 ]
574 } 586 }
(...skipping 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after
1721 "//v8:v8_libplatform", 1733 "//v8:v8_libplatform",
1722 ] 1734 ]
1723 include_dirs += [ 1735 include_dirs += [
1724 "//v8", 1736 "//v8",
1725 "//v8/include", 1737 "//v8/include",
1726 ] 1738 ]
1727 configs += [ "//v8:external_startup_data" ] 1739 configs += [ "//v8:external_startup_data" ]
1728 } 1740 }
1729 configs += [ ":pdfium_config" ] 1741 configs += [ ":pdfium_config" ]
1730 } 1742 }
OLDNEW
« no previous file with comments | « no previous file | core/fpdfapi/fpdf_basic_module.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698