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

Side by Side Diff: pdfium.gyp

Issue 2178613002: Remove CFX_Deletable (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@fix3
Patch Set: address comments Created 4 years, 5 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 | « core/fxcrt/include/fx_memory.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 PDFium Authors. All rights reserved. 1 # Copyright 2015 PDFium 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'pdf_use_skia%': 0, 8 'pdf_use_skia%': 0,
9 'pdf_enable_v8%': 1, 9 'pdf_enable_v8%': 1,
10 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in a standalone build. 10 'pdf_enable_xfa%': 0, # Set to 1 by standalone.gypi in a standalone build.
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 { 473 {
474 'target_name': 'fxcodec', 474 'target_name': 'fxcodec',
475 'type': 'static_library', 475 'type': 'static_library',
476 'dependencies': [ 476 'dependencies': [
477 '<(libjpeg_gyp_path):libjpeg', 477 '<(libjpeg_gyp_path):libjpeg',
478 'third_party/third_party.gyp:fx_lcms2', 478 'third_party/third_party.gyp:fx_lcms2',
479 'third_party/third_party.gyp:fx_libopenjpeg', 479 'third_party/third_party.gyp:fx_libopenjpeg',
480 'third_party/third_party.gyp:fx_zlib', 480 'third_party/third_party.gyp:fx_zlib',
481 ], 481 ],
482 'sources': [ 482 'sources': [
483 'core/fxcodec/include/fx_codec.h',
484 'core/fxcodec/include/fx_codec_def.h',
485 'core/fxcodec/codec/ccodec_basicmodule.h', 483 'core/fxcodec/codec/ccodec_basicmodule.h',
486 'core/fxcodec/codec/ccodec_faxmodule.h', 484 'core/fxcodec/codec/ccodec_faxmodule.h',
487 'core/fxcodec/codec/ccodec_flatemodule.h', 485 'core/fxcodec/codec/ccodec_flatemodule.h',
488 'core/fxcodec/codec/ccodec_iccmodule.h', 486 'core/fxcodec/codec/ccodec_iccmodule.h',
489 'core/fxcodec/codec/ccodec_jbig2module.h', 487 'core/fxcodec/codec/ccodec_jbig2module.h',
490 'core/fxcodec/codec/ccodec_jpegmodule.h', 488 'core/fxcodec/codec/ccodec_jpegmodule.h',
491 'core/fxcodec/codec/ccodec_jpxmodule.h', 489 'core/fxcodec/codec/ccodec_jpxmodule.h',
492 'core/fxcodec/codec/ccodec_scanlinedecoder.h', 490 'core/fxcodec/codec/ccodec_scanlinedecoder.h',
493 'core/fxcodec/codec/codec_int.h', 491 'core/fxcodec/codec/codec_int.h',
494 'core/fxcodec/codec/fx_codec.cpp', 492 'core/fxcodec/codec/fx_codec.cpp',
495 'core/fxcodec/codec/fx_codec_fax.cpp', 493 'core/fxcodec/codec/fx_codec_fax.cpp',
496 'core/fxcodec/codec/fx_codec_flate.cpp', 494 'core/fxcodec/codec/fx_codec_flate.cpp',
497 'core/fxcodec/codec/fx_codec_icc.cpp', 495 'core/fxcodec/codec/fx_codec_icc.cpp',
498 'core/fxcodec/codec/fx_codec_jbig.cpp', 496 'core/fxcodec/codec/fx_codec_jbig.cpp',
499 'core/fxcodec/codec/fx_codec_jpeg.cpp', 497 'core/fxcodec/codec/fx_codec_jpeg.cpp',
500 'core/fxcodec/codec/fx_codec_jpx_opj.cpp', 498 'core/fxcodec/codec/fx_codec_jpx_opj.cpp',
499 'core/fxcodec/include/JBig2_DocumentContext.h',
500 'core/fxcodec/include/fx_codec.h',
501 'core/fxcodec/include/fx_codec_def.h',
501 'core/fxcodec/jbig2/JBig2_ArithDecoder.cpp', 502 'core/fxcodec/jbig2/JBig2_ArithDecoder.cpp',
502 'core/fxcodec/jbig2/JBig2_ArithDecoder.h', 503 'core/fxcodec/jbig2/JBig2_ArithDecoder.h',
503 'core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp', 504 'core/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp',
504 'core/fxcodec/jbig2/JBig2_ArithIntDecoder.h', 505 'core/fxcodec/jbig2/JBig2_ArithIntDecoder.h',
505 'core/fxcodec/jbig2/JBig2_BitStream.cpp', 506 'core/fxcodec/jbig2/JBig2_BitStream.cpp',
506 'core/fxcodec/jbig2/JBig2_BitStream.h', 507 'core/fxcodec/jbig2/JBig2_BitStream.h',
507 'core/fxcodec/jbig2/JBig2_Context.cpp', 508 'core/fxcodec/jbig2/JBig2_Context.cpp',
508 'core/fxcodec/jbig2/JBig2_Context.h', 509 'core/fxcodec/jbig2/JBig2_Context.h',
509 'core/fxcodec/jbig2/JBig2_Define.h', 510 'core/fxcodec/jbig2/JBig2_Define.h',
510 'core/fxcodec/jbig2/JBig2_GrdProc.cpp', 511 'core/fxcodec/jbig2/JBig2_GrdProc.cpp',
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
1072 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h', 1073 'fpdfsdk/fpdfxfa/include/fpdfxfa_app.h',
1073 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h', 1074 'fpdfsdk/fpdfxfa/include/fpdfxfa_doc.h',
1074 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h', 1075 'fpdfsdk/fpdfxfa/include/fpdfxfa_page.h',
1075 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h', 1076 'fpdfsdk/fpdfxfa/include/fpdfxfa_util.h',
1076 ], 1077 ],
1077 }, 1078 },
1078 ] 1079 ]
1079 }], 1080 }],
1080 ] 1081 ]
1081 } 1082 }
OLDNEW
« no previous file with comments | « core/fxcrt/include/fx_memory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698