| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 ], | 182 ], |
| 183 }, | 183 }, |
| 184 | 184 |
| 185 { | 185 { |
| 186 'target_name': 'lua_app', | 186 'target_name': 'lua_app', |
| 187 'type': 'executable', | 187 'type': 'executable', |
| 188 'sources': [ | 188 'sources': [ |
| 189 '../tools/lua/lua_app.cpp', | 189 '../tools/lua/lua_app.cpp', |
| 190 '../src/utils/SkLua.cpp', | 190 '../src/utils/SkLua.cpp', |
| 191 ], | 191 ], |
| 192 'include_dirs': [ |
| 193 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList |
| 194 '../src/gpu/', |
| 195 '../src/core/', |
| 196 ], |
| 192 'dependencies': [ | 197 'dependencies': [ |
| 193 'effects.gyp:effects', | 198 'effects.gyp:effects', |
| 194 'images.gyp:images', | 199 'images.gyp:images', |
| 195 'lua.gyp:lua', | 200 'lua.gyp:lua', |
| 196 'pdf.gyp:pdf', | 201 'pdf.gyp:pdf', |
| 197 'ports.gyp:ports', | 202 'ports.gyp:ports', |
| 198 'skia_lib.gyp:skia_lib', | 203 'skia_lib.gyp:skia_lib', |
| 199 'utils.gyp:utils', | 204 'utils.gyp:utils', |
| 200 ], | 205 ], |
| 201 }, | 206 }, |
| 202 { | 207 { |
| 203 'target_name': 'lua_pictures', | 208 'target_name': 'lua_pictures', |
| 204 'type': 'executable', | 209 'type': 'executable', |
| 205 'sources': [ | 210 'sources': [ |
| 206 '../tools/lua/lua_pictures.cpp', | 211 '../tools/lua/lua_pictures.cpp', |
| 207 '../src/utils/SkLuaCanvas.cpp', | 212 '../src/utils/SkLuaCanvas.cpp', |
| 208 '../src/utils/SkLua.cpp', | 213 '../src/utils/SkLua.cpp', |
| 209 ], | 214 ], |
| 215 'include_dirs': [ |
| 216 # Lua exposes GrReduceClip which in turn requires src/core for SkTLList |
| 217 '../src/gpu/', |
| 218 '../src/core/', |
| 219 ], |
| 210 'dependencies': [ | 220 'dependencies': [ |
| 211 'effects.gyp:effects', | 221 'effects.gyp:effects', |
| 212 'flags.gyp:flags', | 222 'flags.gyp:flags', |
| 213 'images.gyp:images', | 223 'images.gyp:images', |
| 214 'lua.gyp:lua', | 224 'lua.gyp:lua', |
| 215 'tools.gyp:picture_renderer', | 225 'tools.gyp:picture_renderer', |
| 216 'tools.gyp:picture_utils', | 226 'tools.gyp:picture_utils', |
| 217 'pdf.gyp:pdf', | 227 'pdf.gyp:pdf', |
| 218 'ports.gyp:ports', | 228 'ports.gyp:ports', |
| 219 'skia_lib.gyp:skia_lib', | 229 'skia_lib.gyp:skia_lib', |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 517 'type': 'executable', | 527 'type': 'executable', |
| 518 'sources': [ | 528 'sources': [ |
| 519 '../tools/win_lcid.cpp', | 529 '../tools/win_lcid.cpp', |
| 520 ], | 530 ], |
| 521 }, | 531 }, |
| 522 ], | 532 ], |
| 523 }, | 533 }, |
| 524 ], | 534 ], |
| 525 ], | 535 ], |
| 526 } | 536 } |
| OLD | NEW |