| 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': [ |
| 11 { | 11 { |
| 12 # Build all executable targets defined below. | 12 # Build all executable targets defined below. |
| 13 'target_name': 'tools', | 13 'target_name': 'tools', |
| 14 'type': 'none', | 14 'type': 'none', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 'bbh_shootout', | 16 'bbh_shootout', |
| 17 'bench_pictures', | 17 'bench_pictures', |
| 18 'bench_record', | 18 'bench_record', |
| 19 'bench_playback', | 19 'bench_playback', |
| 20 'filter', | 20 'filter', |
| 21 'gpuveto', |
| 21 'lua_app', | 22 'lua_app', |
| 22 'lua_pictures', | 23 'lua_pictures', |
| 23 'pinspect', | 24 'pinspect', |
| 24 'render_pdfs', | 25 'render_pdfs', |
| 25 'render_pictures', | 26 'render_pictures', |
| 26 'skdiff', | 27 'skdiff', |
| 27 'skhello', | 28 'skhello', |
| 28 'skpdiff', | 29 'skpdiff', |
| 29 'skpinfo', | 30 'skpinfo', |
| 30 'skpmaker', | 31 'skpmaker', |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 ], | 192 ], |
| 192 'include_dirs': [ | 193 'include_dirs': [ |
| 193 '../tools/flags', | 194 '../tools/flags', |
| 194 '../src/core/', | 195 '../src/core/', |
| 195 ], | 196 ], |
| 196 'dependencies': [ | 197 'dependencies': [ |
| 197 'flags.gyp:flags', | 198 'flags.gyp:flags', |
| 198 'skia_lib.gyp:skia_lib', | 199 'skia_lib.gyp:skia_lib', |
| 199 ], | 200 ], |
| 200 }, | 201 }, |
| 201 | 202 { |
| 203 'target_name': 'gpuveto', |
| 204 'type': 'executable', |
| 205 'sources': [ |
| 206 '../tools/gpuveto.cpp', |
| 207 '../tools/LazyDecodeBitmap.cpp', |
| 208 ], |
| 209 'include_dirs': [ |
| 210 '../src/core/', |
| 211 '../src/images', |
| 212 '../src/lazy', |
| 213 '../tools/flags', |
| 214 ], |
| 215 'dependencies': [ |
| 216 'flags.gyp:flags', |
| 217 'skia_lib.gyp:skia_lib', |
| 218 ], |
| 219 }, |
| 202 { | 220 { |
| 203 'target_name': 'lua_app', | 221 'target_name': 'lua_app', |
| 204 'type': 'executable', | 222 'type': 'executable', |
| 205 'sources': [ | 223 'sources': [ |
| 206 '../tools/lua/lua_app.cpp', | 224 '../tools/lua/lua_app.cpp', |
| 207 '../src/utils/SkLua.cpp', | 225 '../src/utils/SkLua.cpp', |
| 208 ], | 226 ], |
| 209 'include_dirs': [ | 227 'include_dirs': [ |
| 210 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList | 228 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList |
| 211 '../src/gpu/', | 229 '../src/gpu/', |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 'type': 'executable', | 590 'type': 'executable', |
| 573 'sources': [ | 591 'sources': [ |
| 574 '../tools/win_lcid.cpp', | 592 '../tools/win_lcid.cpp', |
| 575 ], | 593 ], |
| 576 }, | 594 }, |
| 577 ], | 595 ], |
| 578 }, | 596 }, |
| 579 ], | 597 ], |
| 580 ], | 598 ], |
| 581 } | 599 } |
| OLD | NEW |