| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 ], | 57 ], |
| 58 }, | 58 }, |
| 59 { | 59 { |
| 60 'target_name': 'skhello', | 60 'target_name': 'skhello', |
| 61 'type': 'executable', | 61 'type': 'executable', |
| 62 'sources': [ | 62 'sources': [ |
| 63 '../tools/skhello.cpp', | 63 '../tools/skhello.cpp', |
| 64 ], | 64 ], |
| 65 'dependencies': [ | 65 'dependencies': [ |
| 66 'skia_lib.gyp:skia_lib', | 66 'skia_lib.gyp:skia_lib', |
| 67 'pdf.gyp:pdf', |
| 67 'flags.gyp:flags', | 68 'flags.gyp:flags', |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 { | 71 { |
| 71 'target_name': 'skimage', | 72 'target_name': 'skimage', |
| 72 'type': 'executable', | 73 'type': 'executable', |
| 73 'sources': [ | 74 'sources': [ |
| 74 '../tools/skimage_main.cpp', | 75 '../tools/skimage_main.cpp', |
| 75 ], | 76 ], |
| 76 'include_dirs': [ | 77 'include_dirs': [ |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 }, | 313 }, |
| 313 ], | 314 ], |
| 314 ], | 315 ], |
| 315 } | 316 } |
| 316 | 317 |
| 317 # Local Variables: | 318 # Local Variables: |
| 318 # tab-width:2 | 319 # tab-width:2 |
| 319 # indent-tabs-mode:nil | 320 # indent-tabs-mode:nil |
| 320 # End: | 321 # End: |
| 321 # vim: set expandtab tabstop=2 shiftwidth=2: | 322 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |