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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'skia_base_libs.gyp:skia_base_libs', | 58 'skia_base_libs.gyp:skia_base_libs', |
59 'effects.gyp:effects', | 59 'effects.gyp:effects', |
60 'images.gyp:images', | 60 'images.gyp:images', |
61 ], | 61 ], |
62 }, | 62 }, |
63 { | 63 { |
64 'target_name': 'skhello', | 64 'target_name': 'skhello', |
65 'type': 'executable', | 65 'type': 'executable', |
66 'sources': [ | 66 'sources': [ |
67 '../tools/skhello.cpp', | 67 '../tools/skhello.cpp', |
| 68 '../src/image/SkImage_Codec.cpp', |
68 ], | 69 ], |
69 'dependencies': [ | 70 'dependencies': [ |
70 'skia_base_libs.gyp:skia_base_libs', | 71 'skia_base_libs.gyp:skia_base_libs', |
71 'effects.gyp:effects', | 72 'effects.gyp:effects', |
72 'flags.gyp:flags', | 73 'flags.gyp:flags', |
73 'images.gyp:images', | 74 'images.gyp:images', |
74 ], | 75 ], |
75 }, | 76 }, |
76 { | 77 { |
77 'target_name': 'skimage', | 78 'target_name': 'skimage', |
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
334 }, | 335 }, |
335 ], | 336 ], |
336 ], | 337 ], |
337 } | 338 } |
338 | 339 |
339 # Local Variables: | 340 # Local Variables: |
340 # tab-width:2 | 341 # tab-width:2 |
341 # indent-tabs-mode:nil | 342 # indent-tabs-mode:nil |
342 # End: | 343 # End: |
343 # vim: set expandtab tabstop=2 shiftwidth=2: | 344 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |