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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'target_name': 'skimage', | 76 'target_name': 'skimage', |
77 'type': 'executable', | 77 'type': 'executable', |
78 'sources': [ | 78 'sources': [ |
79 '../tools/skimage_main.cpp', | 79 '../tools/skimage_main.cpp', |
80 ], | 80 ], |
81 'dependencies': [ | 81 'dependencies': [ |
82 'skia_base_libs.gyp:skia_base_libs', | 82 'skia_base_libs.gyp:skia_base_libs', |
83 'effects.gyp:effects', | 83 'effects.gyp:effects', |
84 'images.gyp:images', | 84 'images.gyp:images', |
85 'flags.gyp:flags', | 85 'flags.gyp:flags', |
| 86 'tools.gyp:picture_utils', |
86 ], | 87 ], |
87 }, | 88 }, |
88 { | 89 { |
89 'target_name': 'render_pictures', | 90 'target_name': 'render_pictures', |
90 'type': 'executable', | 91 'type': 'executable', |
91 'sources': [ | 92 'sources': [ |
92 '../tools/render_pictures_main.cpp', | 93 '../tools/render_pictures_main.cpp', |
93 ], | 94 ], |
94 'include_dirs': [ | 95 'include_dirs': [ |
95 '../src/pipe/utils/', | 96 '../src/pipe/utils/', |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
302 }, | 303 }, |
303 ], | 304 ], |
304 ], | 305 ], |
305 } | 306 } |
306 | 307 |
307 # Local Variables: | 308 # Local Variables: |
308 # tab-width:2 | 309 # tab-width:2 |
309 # indent-tabs-mode:nil | 310 # indent-tabs-mode:nil |
310 # End: | 311 # End: |
311 # vim: set expandtab tabstop=2 shiftwidth=2: | 312 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |