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

Side by Side Diff: pdfium.gyp

Issue 1392373004: Rename lpng and tiff to third_party/ (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: GN Created 5 years, 2 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 'conditions': [ 4 'conditions': [
5 ['OS=="linux"', { 5 ['OS=="linux"', {
6 'bundle_freetype%': 0, 6 'bundle_freetype%': 0,
7 }, { # On Android there's no system FreeType. On Windows and Mac, only a 7 }, { # On Android there's no system FreeType. On Windows and Mac, only a
8 # few methods are used from it. 8 # few methods are used from it.
9 'bundle_freetype%': 1, 9 'bundle_freetype%': 1,
10 }], 10 }],
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 'core/src/fpdftext/unicodenormalizationdata.h', 324 'core/src/fpdftext/unicodenormalizationdata.h',
325 ], 325 ],
326 }, 326 },
327 { 327 {
328 'target_name': 'fxcodec', 328 'target_name': 'fxcodec',
329 'type': 'static_library', 329 'type': 'static_library',
330 'dependencies': [ 330 'dependencies': [
331 'third_party/third_party.gyp:fx_lcms2', 331 'third_party/third_party.gyp:fx_lcms2',
332 'third_party/third_party.gyp:fx_libjpeg', 332 'third_party/third_party.gyp:fx_libjpeg',
333 'third_party/third_party.gyp:fx_libopenjpeg', 333 'third_party/third_party.gyp:fx_libopenjpeg',
334 'third_party/third_party.gyp:fx_lpng',
335 'third_party/third_party.gyp:fx_tiff',
334 'third_party/third_party.gyp:fx_zlib', 336 'third_party/third_party.gyp:fx_zlib',
335 ], 337 ],
336 'ldflags': [ '-L<(PRODUCT_DIR)',], 338 'ldflags': [ '-L<(PRODUCT_DIR)',],
337 'sources': [ 339 'sources': [
338 'core/include/fxcodec/fx_codec.h', 340 'core/include/fxcodec/fx_codec.h',
339 'core/include/fxcodec/fx_codec_def.h', 341 'core/include/fxcodec/fx_codec_def.h',
340 'core/include/fxcodec/fx_codec_flate.h', 342 'core/include/fxcodec/fx_codec_flate.h',
341 'core/include/fxcodec/fx_codec_provider.h', 343 'core/include/fxcodec/fx_codec_provider.h',
342 'core/src/fxcodec/codec/codec_int.h', 344 'core/src/fxcodec/codec/codec_int.h',
343 'core/src/fxcodec/codec/fx_codec.cpp', 345 'core/src/fxcodec/codec/fx_codec.cpp',
344 'core/src/fxcodec/codec/fx_codec_bmp.cpp', 346 'core/src/fxcodec/codec/fx_codec_bmp.cpp',
345 'core/src/fxcodec/codec/fx_codec_fax.cpp', 347 'core/src/fxcodec/codec/fx_codec_fax.cpp',
346 'core/src/fxcodec/codec/fx_codec_flate.cpp', 348 'core/src/fxcodec/codec/fx_codec_flate.cpp',
347 'core/src/fxcodec/codec/fx_codec_gif.cpp', 349 'core/src/fxcodec/codec/fx_codec_gif.cpp',
348 'core/src/fxcodec/codec/fx_codec_icc.cpp', 350 'core/src/fxcodec/codec/fx_codec_icc.cpp',
349 'core/src/fxcodec/codec/fx_codec_jbig.cpp', 351 'core/src/fxcodec/codec/fx_codec_jbig.cpp',
350 'core/src/fxcodec/codec/fx_codec_jbig_enc.cpp', 352 'core/src/fxcodec/codec/fx_codec_jbig_enc.cpp',
351 'core/src/fxcodec/codec/fx_codec_jpeg.cpp', 353 'core/src/fxcodec/codec/fx_codec_jpeg.cpp',
352 'core/src/fxcodec/codec/fx_codec_jpx_opj.cpp', 354 'core/src/fxcodec/codec/fx_codec_jpx_opj.cpp',
353 'core/src/fxcodec/codec/fx_codec_png.cpp', 355 'core/src/fxcodec/codec/fx_codec_png.cpp',
354 'core/src/fxcodec/codec/fx_codec_progress.cpp', 356 'core/src/fxcodec/codec/fx_codec_progress.cpp',
355 'core/src/fxcodec/codec/fx_codec_progress.h', 357 'core/src/fxcodec/codec/fx_codec_progress.h',
356 'core/src/fxcodec/codec/fx_codec_tiff.cpp', 358 'core/src/fxcodec/codec/fx_codec_tiff.cpp',
357 'core/src/fxcodec/fx_lpng/include/fx_png.h',
358 'core/src/fxcodec/fx_lpng/src/fx_png.c',
359 'core/src/fxcodec/fx_lpng/src/fx_pngerror.c',
360 'core/src/fxcodec/fx_lpng/src/fx_pngget.c',
361 'core/src/fxcodec/fx_lpng/src/fx_pngmem.c',
362 'core/src/fxcodec/fx_lpng/src/fx_pngpread.c',
363 'core/src/fxcodec/fx_lpng/src/fx_pngread.c',
364 'core/src/fxcodec/fx_lpng/src/fx_pngrio.c',
365 'core/src/fxcodec/fx_lpng/src/fx_pngrtran.c',
366 'core/src/fxcodec/fx_lpng/src/fx_pngrutil.c',
367 'core/src/fxcodec/fx_lpng/src/fx_pngset.c',
368 'core/src/fxcodec/fx_lpng/src/fx_pngtrans.c',
369 'core/src/fxcodec/fx_lpng/src/fx_pngwio.c',
370 'core/src/fxcodec/fx_lpng/src/fx_pngwrite.c',
371 'core/src/fxcodec/fx_lpng/src/fx_pngwtran.c',
372 'core/src/fxcodec/fx_lpng/src/fx_pngwutil.c',
373 'core/src/fxcodec/fx_tiff/include/fx_tiffiop.h',
374 'core/src/fxcodec/fx_tiff/src/fx_tif_aux.c',
375 'core/src/fxcodec/fx_tiff/src/fx_tif_close.c',
376 'core/src/fxcodec/fx_tiff/src/fx_tif_codec.c',
377 'core/src/fxcodec/fx_tiff/src/fx_tif_color.c',
378 'core/src/fxcodec/fx_tiff/src/fx_tif_compress.c',
379 'core/src/fxcodec/fx_tiff/src/fx_tif_dir.c',
380 'core/src/fxcodec/fx_tiff/src/fx_tif_dirinfo.c',
381 'core/src/fxcodec/fx_tiff/src/fx_tif_dirread.c',
382 'core/src/fxcodec/fx_tiff/src/fx_tif_dirwrite.c',
383 'core/src/fxcodec/fx_tiff/src/fx_tif_dumpmode.c',
384 'core/src/fxcodec/fx_tiff/src/fx_tif_error.c',
385 'core/src/fxcodec/fx_tiff/src/fx_tif_extension.c',
386 'core/src/fxcodec/fx_tiff/src/fx_tif_fax3.c',
387 'core/src/fxcodec/fx_tiff/src/fx_tif_fax3sm.c',
388 'core/src/fxcodec/fx_tiff/src/fx_tif_flush.c',
389 'core/src/fxcodec/fx_tiff/src/fx_tif_getimage.c',
390 'core/src/fxcodec/fx_tiff/src/fx_tif_jpeg.c',
391 'core/src/fxcodec/fx_tiff/src/fx_tif_luv.c',
392 'core/src/fxcodec/fx_tiff/src/fx_tif_lzw.c',
393 'core/src/fxcodec/fx_tiff/src/fx_tif_next.c',
394 'core/src/fxcodec/fx_tiff/src/fx_tif_ojpeg.c',
395 'core/src/fxcodec/fx_tiff/src/fx_tif_open.c',
396 'core/src/fxcodec/fx_tiff/src/fx_tif_packbits.c',
397 'core/src/fxcodec/fx_tiff/src/fx_tif_pixarlog.c',
398 'core/src/fxcodec/fx_tiff/src/fx_tif_predict.c',
399 'core/src/fxcodec/fx_tiff/src/fx_tif_print.c',
400 'core/src/fxcodec/fx_tiff/src/fx_tif_read.c',
401 'core/src/fxcodec/fx_tiff/src/fx_tif_strip.c',
402 'core/src/fxcodec/fx_tiff/src/fx_tif_swab.c',
403 'core/src/fxcodec/fx_tiff/src/fx_tif_thunder.c',
404 'core/src/fxcodec/fx_tiff/src/fx_tif_tile.c',
405 'core/src/fxcodec/fx_tiff/src/fx_tif_version.c',
406 'core/src/fxcodec/fx_tiff/src/fx_tif_warning.c',
407 'core/src/fxcodec/fx_tiff/src/fx_tif_write.c',
408 'core/src/fxcodec/fx_tiff/src/fx_tif_zip.c',
409 'core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp', 359 'core/src/fxcodec/jbig2/JBig2_ArithDecoder.cpp',
410 'core/src/fxcodec/jbig2/JBig2_ArithDecoder.h', 360 'core/src/fxcodec/jbig2/JBig2_ArithDecoder.h',
411 'core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp', 361 'core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.cpp',
412 'core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h', 362 'core/src/fxcodec/jbig2/JBig2_ArithIntDecoder.h',
413 'core/src/fxcodec/jbig2/JBig2_BitStream.cpp', 363 'core/src/fxcodec/jbig2/JBig2_BitStream.cpp',
414 'core/src/fxcodec/jbig2/JBig2_BitStream.h', 364 'core/src/fxcodec/jbig2/JBig2_BitStream.h',
415 'core/src/fxcodec/jbig2/JBig2_Context.cpp', 365 'core/src/fxcodec/jbig2/JBig2_Context.cpp',
416 'core/src/fxcodec/jbig2/JBig2_Context.h', 366 'core/src/fxcodec/jbig2/JBig2_Context.h',
417 'core/src/fxcodec/jbig2/JBig2_Define.h', 367 'core/src/fxcodec/jbig2/JBig2_Define.h',
418 'core/src/fxcodec/jbig2/JBig2_GrdProc.cpp', 368 'core/src/fxcodec/jbig2/JBig2_GrdProc.cpp',
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 'testing/embedder_test.cpp', 800 'testing/embedder_test.cpp',
851 'testing/embedder_test.h', 801 'testing/embedder_test.h',
852 'testing/embedder_test_mock_delegate.h', 802 'testing/embedder_test_mock_delegate.h',
853 'testing/embedder_test_timer_handling_delegate.h', 803 'testing/embedder_test_timer_handling_delegate.h',
854 'testing/fx_string_testhelpers.cpp', 804 'testing/fx_string_testhelpers.cpp',
855 'testing/fx_string_testhelpers.h', 805 'testing/fx_string_testhelpers.h',
856 ], 806 ],
857 }, 807 },
858 ], 808 ],
859 } 809 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698