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