| OLD | NEW |
| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 'type': 'executable', | 271 'type': 'executable', |
| 272 'sources': [ | 272 'sources': [ |
| 273 '../tools/skimage_main.cpp', | 273 '../tools/skimage_main.cpp', |
| 274 ], | 274 ], |
| 275 'include_dirs': [ | 275 'include_dirs': [ |
| 276 # For SkBitmapHasher.h | 276 # For SkBitmapHasher.h |
| 277 '../src/utils/', | 277 '../src/utils/', |
| 278 '../tools/', | 278 '../tools/', |
| 279 ], | 279 ], |
| 280 'dependencies': [ | 280 'dependencies': [ |
| 281 'android_output.gyp:android_output', |
| 281 'gm_expectations', | 282 'gm_expectations', |
| 282 'flags.gyp:flags', | 283 'flags.gyp:flags', |
| 283 'jsoncpp.gyp:jsoncpp', | 284 'jsoncpp.gyp:jsoncpp', |
| 284 'skia_lib.gyp:skia_lib', | 285 'skia_lib.gyp:skia_lib', |
| 285 ], | 286 ], |
| 286 }, | 287 }, |
| 287 { | 288 { |
| 288 'target_name': 'skpinfo', | 289 'target_name': 'skpinfo', |
| 289 'type': 'executable', | 290 'type': 'executable', |
| 290 'sources': [ | 291 'sources': [ |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 'type': 'executable', | 487 'type': 'executable', |
| 487 'sources': [ | 488 'sources': [ |
| 488 '../tools/render_pdfs_main.cpp', | 489 '../tools/render_pdfs_main.cpp', |
| 489 ], | 490 ], |
| 490 'include_dirs': [ | 491 'include_dirs': [ |
| 491 '../src/core', | 492 '../src/core', |
| 492 '../src/pipe/utils/', | 493 '../src/pipe/utils/', |
| 493 '../src/utils/', | 494 '../src/utils/', |
| 494 ], | 495 ], |
| 495 'dependencies': [ | 496 'dependencies': [ |
| 497 'android_output.gyp:android_output', |
| 496 'flags.gyp:flags', | 498 'flags.gyp:flags', |
| 497 'pdf.gyp:pdf', | 499 'pdf.gyp:pdf', |
| 498 'skia_lib.gyp:skia_lib', | 500 'skia_lib.gyp:skia_lib', |
| 499 'tools.gyp:picture_utils', | 501 'tools.gyp:picture_utils', |
| 500 'tools.gyp:proc_stats', | 502 'tools.gyp:proc_stats', |
| 501 ], | 503 ], |
| 502 'conditions': [ | 504 'conditions': [ |
| 503 ['skia_win_debuggers_path and skia_os == "win"', | 505 ['skia_win_debuggers_path and skia_os == "win"', |
| 504 { | 506 { |
| 505 'dependencies': [ | 507 'dependencies': [ |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 779 'flags.gyp:flags', | 781 'flags.gyp:flags', |
| 780 'skia_lib.gyp:skia_lib', | 782 'skia_lib.gyp:skia_lib', |
| 781 'resources', | 783 'resources', |
| 782 ], | 784 ], |
| 783 }, | 785 }, |
| 784 ], | 786 ], |
| 785 }, | 787 }, |
| 786 ], | 788 ], |
| 787 ], | 789 ], |
| 788 } | 790 } |
| OLD | NEW |