| 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 # Building on other platforms not tested yet. | 6 # Building on other platforms not tested yet. |
| 7 # | 7 # |
| 8 { | 8 { |
| 9 'includes': [ | 9 'includes': [ |
| 10 'apptype_console.gypi', | 10 'apptype_console.gypi', |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 'skia_base_libs.gyp:skia_base_libs', | 59 'skia_base_libs.gyp:skia_base_libs', |
| 60 'effects.gyp:effects', | 60 'effects.gyp:effects', |
| 61 'images.gyp:images', | 61 'images.gyp:images', |
| 62 ], | 62 ], |
| 63 }, | 63 }, |
| 64 { | 64 { |
| 65 'target_name': 'skhello', | 65 'target_name': 'skhello', |
| 66 'type': 'executable', | 66 'type': 'executable', |
| 67 'sources': [ | 67 'sources': [ |
| 68 '../tools/skhello.cpp', | 68 '../tools/skhello.cpp', |
| 69 '../tools/SkFlags.h', |
| 70 '../tools/SkFlags.cpp', |
| 69 ], | 71 ], |
| 70 'dependencies': [ | 72 'dependencies': [ |
| 71 'skia_base_libs.gyp:skia_base_libs', | 73 'skia_base_libs.gyp:skia_base_libs', |
| 72 'effects.gyp:effects', | 74 'effects.gyp:effects', |
| 73 'images.gyp:images', | 75 'images.gyp:images', |
| 74 ], | 76 ], |
| 75 }, | 77 }, |
| 76 { | 78 { |
| 77 'target_name': 'skimage', | 79 'target_name': 'skimage', |
| 78 'type': 'executable', | 80 'type': 'executable', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 ], | 233 ], |
| 232 }, | 234 }, |
| 233 ], | 235 ], |
| 234 } | 236 } |
| 235 | 237 |
| 236 # Local Variables: | 238 # Local Variables: |
| 237 # tab-width:2 | 239 # tab-width:2 |
| 238 # indent-tabs-mode:nil | 240 # indent-tabs-mode:nil |
| 239 # End: | 241 # End: |
| 240 # vim: set expandtab tabstop=2 shiftwidth=2: | 242 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |