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: gyp/tools.gyp

Issue 441423002: render_pdfs - don't render all skps (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: SkTSort and othr comments from mtklein Created 6 years, 4 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 | tools/render_pdfs_main.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 # GYP file to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after
514 }, 514 },
515 { 515 {
516 'target_name': 'render_pdfs', 516 'target_name': 'render_pdfs',
517 'type': 'executable', 517 'type': 'executable',
518 'sources': [ 518 'sources': [
519 '../tools/render_pdfs_main.cpp', 519 '../tools/render_pdfs_main.cpp',
520 '../tools/PdfRenderer.cpp', 520 '../tools/PdfRenderer.cpp',
521 '../tools/PdfRenderer.h', 521 '../tools/PdfRenderer.h',
522 ], 522 ],
523 'include_dirs': [ 523 'include_dirs': [
524 '../src/core',
524 '../src/pipe/utils/', 525 '../src/pipe/utils/',
525 '../src/utils/', 526 '../src/utils/',
526 ], 527 ],
527 'dependencies': [ 528 'dependencies': [
529 'flags.gyp:flags',
528 'pdf.gyp:pdf', 530 'pdf.gyp:pdf',
529 'skia_lib.gyp:skia_lib', 531 'skia_lib.gyp:skia_lib',
530 'tools.gyp:picture_utils', 532 'tools.gyp:picture_utils',
531 ], 533 ],
532 'conditions': [ 534 'conditions': [
533 ['skia_win_debuggers_path and skia_os == "win"', 535 ['skia_win_debuggers_path and skia_os == "win"',
534 { 536 {
535 'dependencies': [ 537 'dependencies': [
536 'tools.gyp:win_dbghelp', 538 'tools.gyp:win_dbghelp',
537 ], 539 ],
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
729 'flags.gyp:flags', 731 'flags.gyp:flags',
730 'skia_lib.gyp:skia_lib', 732 'skia_lib.gyp:skia_lib',
731 'resources', 733 'resources',
732 ], 734 ],
733 }, 735 },
734 ], 736 ],
735 }, 737 },
736 ], 738 ],
737 ], 739 ],
738 } 740 }
OLDNEW
« no previous file with comments | « no previous file | tools/render_pdfs_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698