OLD | NEW |
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 Loading... |
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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 '<(DEPTH)' | 902 '<(DEPTH)' |
896 ], | 903 ], |
897 'sources': [ | 904 'sources': [ |
898 'testing/fx_string_testhelpers.h', | 905 'testing/fx_string_testhelpers.h', |
899 'testing/fx_string_testhelpers.cpp', | 906 'testing/fx_string_testhelpers.cpp', |
900 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', | 907 'core/src/fxcrt/fx_basic_bstring_unittest.cpp', |
901 ], | 908 ], |
902 }, | 909 }, |
903 ], | 910 ], |
904 } | 911 } |
OLD | NEW |