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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
267 }, | 267 }, |
268 }, | 268 }, |
269 { | 269 { |
270 'target_name': 'pinspect', | 270 'target_name': 'pinspect', |
271 'type': 'executable', | 271 'type': 'executable', |
272 'sources': [ | 272 'sources': [ |
273 '../tools/pinspect.cpp', | 273 '../tools/pinspect.cpp', |
274 ], | 274 ], |
275 'dependencies': [ | 275 'dependencies': [ |
276 'skia_lib.gyp:skia_lib', | 276 'skia_lib.gyp:skia_lib', |
277 'tools.gyp:picture_renderer', | |
sglez
2013/06/12 15:37:37
Linking to flags was not enough because it doesn't
scroggo
2013/06/12 16:10:05
No, I was confused. PictureRenderingFlags should n
| |
277 ], | 278 ], |
278 }, | 279 }, |
279 { | 280 { |
280 'target_name': 'filter', | 281 'target_name': 'filter', |
281 'type': 'executable', | 282 'type': 'executable', |
282 'include_dirs' : [ | 283 'include_dirs' : [ |
283 '../src/core', | 284 '../src/core', |
284 '../debugger', | 285 '../debugger', |
285 ], | 286 ], |
286 'sources': [ | 287 'sources': [ |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
332 }, | 333 }, |
333 ], | 334 ], |
334 ], | 335 ], |
335 } | 336 } |
336 | 337 |
337 # Local Variables: | 338 # Local Variables: |
338 # tab-width:2 | 339 # tab-width:2 |
339 # indent-tabs-mode:nil | 340 # indent-tabs-mode:nil |
340 # End: | 341 # End: |
341 # vim: set expandtab tabstop=2 shiftwidth=2: | 342 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |