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

Side by Side Diff: pdfium.gyp

Issue 834413002: XFA: merge patch from CL 792953005, fix most VC++ warnings (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 5 years, 11 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
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 'pdf_use_skia%': 0, 3 'pdf_use_skia%': 0,
4 }, 4 },
5 'target_defaults': { 5 'target_defaults': {
6 'defines' : [ 6 'defines' : [
7 'FT2_BUILD_LIBRARY', 7 'FT2_BUILD_LIBRARY',
8 '_FPDFSDK_LIB', 8 '_FPDFSDK_LIB',
9 '_NO_GDIPLUS_', # workaround text rendering issues on Windows 9 '_NO_GDIPLUS_', # workaround text rendering issues on Windows
10 'OPJ_STATIC', 10 'OPJ_STATIC',
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 'core/src/fpdftext/unicodenormalization.cpp', 302 'core/src/fpdftext/unicodenormalization.cpp',
303 'core/src/fpdftext/unicodenormalizationdata.cpp', 303 'core/src/fpdftext/unicodenormalizationdata.cpp',
304 ], 304 ],
305 }, 305 },
306 { 306 {
307 'target_name': 'fxcodec', 307 'target_name': 'fxcodec',
308 'type': 'static_library', 308 'type': 'static_library',
309 'include_dirs': [ 309 'include_dirs': [
310 ], 310 ],
311 'ldflags': [ '-L<(PRODUCT_DIR)',], 311 'ldflags': [ '-L<(PRODUCT_DIR)',],
312 'msvs_settings': {
313 'VCCLCompilerTool': {
314 # Unresolved warnings in fx_codec_jpx_opj.cpp
315 # https://code.google.com/p/pdfium/issues/detail?id=100
316 'WarnAsError': 'false',
317 },
318 },
312 'sources': [ 319 'sources': [
313 'core/include/fxcodec/fx_codec.h', 320 'core/include/fxcodec/fx_codec.h',
314 'core/include/fxcodec/fx_codec_def.h', 321 'core/include/fxcodec/fx_codec_def.h',
315 'core/include/fxcodec/fx_codec_provider.h', 322 'core/include/fxcodec/fx_codec_provider.h',
316 'core/src/fxcodec/codec/codec_int.h', 323 'core/src/fxcodec/codec/codec_int.h',
317 'core/src/fxcodec/codec/fx_codec.cpp', 324 'core/src/fxcodec/codec/fx_codec.cpp',
318 'core/src/fxcodec/codec/fx_codec_bmp.cpp', 325 'core/src/fxcodec/codec/fx_codec_bmp.cpp',
319 'core/src/fxcodec/codec/fx_codec_fax.cpp', 326 'core/src/fxcodec/codec/fx_codec_fax.cpp',
320 'core/src/fxcodec/codec/fx_codec_flate.cpp', 327 'core/src/fxcodec/codec/fx_codec_flate.cpp',
321 'core/src/fxcodec/codec/fx_codec_gif.cpp', 328 'core/src/fxcodec/codec/fx_codec_gif.cpp',
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 'fpdfsdk/src/formfiller/FFL_ListBox.cpp', 885 'fpdfsdk/src/formfiller/FFL_ListBox.cpp',
879 'fpdfsdk/src/formfiller/FFL_Notify.cpp', 886 'fpdfsdk/src/formfiller/FFL_Notify.cpp',
880 'fpdfsdk/src/formfiller/FFL_PushButton.cpp', 887 'fpdfsdk/src/formfiller/FFL_PushButton.cpp',
881 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp', 888 'fpdfsdk/src/formfiller/FFL_RadioButton.cpp',
882 'fpdfsdk/src/formfiller/FFL_TextField.cpp', 889 'fpdfsdk/src/formfiller/FFL_TextField.cpp',
883 'fpdfsdk/src/formfiller/FFL_Utils.cpp', 890 'fpdfsdk/src/formfiller/FFL_Utils.cpp',
884 ], 891 ],
885 }, 892 },
886 ], 893 ],
887 } 894 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698