| 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 'flags.gyp:flags', |
| 281 'gm_expectations', | 282 'gm_expectations', |
| 282 'flags.gyp:flags', | |
| 283 'jsoncpp.gyp:jsoncpp', | 283 'jsoncpp.gyp:jsoncpp', |
| 284 'picture_utils', |
| 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': [ |
| 291 '../tools/skpinfo.cpp', | 292 '../tools/skpinfo.cpp', |
| 292 ], | 293 ], |
| 293 'include_dirs': [ | 294 'include_dirs': [ |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 707 'flags.gyp:flags', | 708 'flags.gyp:flags', |
| 708 'skia_lib.gyp:skia_lib', | 709 'skia_lib.gyp:skia_lib', |
| 709 'resources', | 710 'resources', |
| 710 ], | 711 ], |
| 711 }, | 712 }, |
| 712 ], | 713 ], |
| 713 }, | 714 }, |
| 714 ], | 715 ], |
| 715 ], | 716 ], |
| 716 } | 717 } |
| OLD | NEW |