epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 1 | # GYP file to build various tools. |
| 2 | # |
| 3 | # To build on Linux: |
| 4 | # ./gyp_skia tools.gyp && make tools |
| 5 | # |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 6 | { |
| 7 | 'includes': [ |
| 8 | 'apptype_console.gypi', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 9 | ], |
| 10 | 'targets': [ |
| 11 | { |
| 12 | # Build all executable targets defined below. |
| 13 | 'target_name': 'tools', |
| 14 | 'type': 'none', |
| 15 | 'dependencies': [ |
edisonn@google.com | 8ba9a83 | 2013-01-18 18:06:22 +0000 | [diff] [blame] | 16 | 'bench_pictures', |
| 17 | 'filter', |
| 18 | 'pinspect', |
| 19 | 'render_pdfs', |
| 20 | 'render_pictures', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 21 | 'skdiff', |
| 22 | 'skhello', |
| 23 | 'skimage', |
| 24 | ], |
| 25 | }, |
| 26 | { |
| 27 | 'target_name': 'skdiff', |
| 28 | 'type': 'executable', |
| 29 | 'sources': [ |
bungeman@google.com | e3c8ddf | 2012-12-05 20:13:12 +0000 | [diff] [blame] | 30 | '../tools/skdiff.cpp', |
| 31 | '../tools/skdiff.h', |
| 32 | '../tools/skdiff_html.cpp', |
| 33 | '../tools/skdiff_html.h', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 34 | '../tools/skdiff_main.cpp', |
bungeman@google.com | e3c8ddf | 2012-12-05 20:13:12 +0000 | [diff] [blame] | 35 | '../tools/skdiff_utils.cpp', |
| 36 | '../tools/skdiff_utils.h', |
| 37 | ], |
| 38 | 'dependencies': [ |
| 39 | 'skia_base_libs.gyp:skia_base_libs', |
| 40 | 'effects.gyp:effects', |
| 41 | 'images.gyp:images', |
| 42 | ], |
| 43 | }, |
| 44 | { |
| 45 | 'target_name': 'skimagediff', |
| 46 | 'type': 'executable', |
| 47 | 'sources': [ |
| 48 | '../tools/skdiff.cpp', |
| 49 | '../tools/skdiff.h', |
| 50 | '../tools/skdiff_html.cpp', |
| 51 | '../tools/skdiff_html.h', |
| 52 | '../tools/skdiff_image.cpp', |
| 53 | '../tools/skdiff_utils.cpp', |
| 54 | '../tools/skdiff_utils.h', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 55 | ], |
| 56 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 57 | 'skia_base_libs.gyp:skia_base_libs', |
djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 58 | 'effects.gyp:effects', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 59 | 'images.gyp:images', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 60 | ], |
| 61 | }, |
| 62 | { |
| 63 | 'target_name': 'skhello', |
| 64 | 'type': 'executable', |
| 65 | 'sources': [ |
| 66 | '../tools/skhello.cpp', |
| 67 | ], |
| 68 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 69 | 'skia_base_libs.gyp:skia_base_libs', |
djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 70 | 'effects.gyp:effects', |
scroggo@google.com | 09fd4d2 | 2013-03-20 14:20:18 +0000 | [diff] [blame] | 71 | 'flags.gyp:flags', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 72 | 'images.gyp:images', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 73 | ], |
| 74 | }, |
| 75 | { |
| 76 | 'target_name': 'skimage', |
| 77 | 'type': 'executable', |
| 78 | 'sources': [ |
| 79 | '../tools/skimage_main.cpp', |
| 80 | ], |
| 81 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 82 | 'skia_base_libs.gyp:skia_base_libs', |
djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 83 | 'effects.gyp:effects', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 84 | 'images.gyp:images', |
scroggo@google.com | b41ff95 | 2013-04-11 15:53:35 +0000 | [diff] [blame] | 85 | 'flags.gyp:flags', |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 86 | ], |
| 87 | }, |
junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 88 | { |
| 89 | 'target_name': 'render_pictures', |
| 90 | 'type': 'executable', |
| 91 | 'sources': [ |
| 92 | '../tools/render_pictures_main.cpp', |
keyar@chromium.org | a2333d9 | 2012-07-16 17:29:16 +0000 | [diff] [blame] | 93 | ], |
| 94 | 'include_dirs': [ |
| 95 | '../src/pipe/utils/', |
junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 96 | ], |
| 97 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 98 | 'skia_base_libs.gyp:skia_base_libs', |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 99 | 'tools.gyp:picture_renderer', |
twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 100 | 'tools.gyp:picture_utils', |
scroggo@google.com | bb281f7 | 2013-03-18 21:37:39 +0000 | [diff] [blame] | 101 | 'ports.gyp:ports', |
scroggo@google.com | d9ba9a0 | 2013-03-21 19:43:15 +0000 | [diff] [blame] | 102 | 'flags.gyp:flags', |
twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 103 | ], |
| 104 | }, |
| 105 | { |
reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 106 | 'target_name': 'bench_pictures', |
| 107 | 'type': 'executable', |
| 108 | 'sources': [ |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 109 | '../bench/SkBenchLogger.h', |
| 110 | '../bench/SkBenchLogger.cpp', |
| 111 | '../bench/TimerData.h', |
| 112 | '../bench/TimerData.cpp', |
keyar@chromium.org | cf6c44c | 2012-07-09 19:37:40 +0000 | [diff] [blame] | 113 | '../tools/bench_pictures_main.cpp', |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 114 | '../tools/PictureBenchmark.cpp', |
reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 115 | ], |
| 116 | 'include_dirs': [ |
| 117 | '../bench', |
scroggo@google.com | cc69020 | 2013-03-04 19:56:21 +0000 | [diff] [blame] | 118 | '../src/lazy/', |
reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 119 | ], |
| 120 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 121 | 'skia_base_libs.gyp:skia_base_libs', |
edisonn@google.com | d966ab9 | 2012-09-05 19:43:46 +0000 | [diff] [blame] | 122 | 'effects.gyp:effects', |
reed@google.com | 006db0f | 2012-06-27 19:33:29 +0000 | [diff] [blame] | 123 | 'tools.gyp:picture_utils', |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 124 | 'tools.gyp:picture_renderer', |
| 125 | 'bench.gyp:bench_timer', |
scroggo@google.com | bb281f7 | 2013-03-18 21:37:39 +0000 | [diff] [blame] | 126 | 'ports.gyp:ports', |
scroggo@google.com | d9ba9a0 | 2013-03-21 19:43:15 +0000 | [diff] [blame] | 127 | 'flags.gyp:flags', |
scroggo@google.com | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 128 | ], |
keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 129 | }, |
| 130 | { |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 131 | 'target_name': 'picture_renderer', |
| 132 | 'type': 'static_library', |
| 133 | 'sources': [ |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 134 | '../tools/PictureRenderer.h', |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 135 | '../tools/PictureRenderer.cpp', |
scroggo@google.com | 161e1ba | 2013-03-04 16:41:06 +0000 | [diff] [blame] | 136 | '../tools/PictureRenderingFlags.h', |
| 137 | '../tools/PictureRenderingFlags.cpp', |
scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 138 | '../tools/CopyTilesRenderer.h', |
| 139 | '../tools/CopyTilesRenderer.cpp', |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 140 | '../src/pipe/utils/SamplePipeControllers.h', |
| 141 | '../src/pipe/utils/SamplePipeControllers.cpp', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 142 | ], |
| 143 | 'include_dirs': [ |
junov@chromium.org | 9313ca4 | 2012-11-02 18:11:49 +0000 | [diff] [blame] | 144 | '../src/core/', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 145 | '../src/pipe/utils/', |
| 146 | '../src/utils/', |
| 147 | ], |
| 148 | 'dependencies': [ |
| 149 | 'skia_base_libs.gyp:skia_base_libs', |
borenet@google.com | bc76611 | 2012-09-10 16:20:47 +0000 | [diff] [blame] | 150 | 'effects.gyp:effects', |
keyar@chromium.org | 9299ede | 2012-08-21 19:05:08 +0000 | [diff] [blame] | 151 | 'images.gyp:images', |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 152 | 'tools.gyp:picture_utils', |
scroggo@google.com | 09fd4d2 | 2013-03-20 14:20:18 +0000 | [diff] [blame] | 153 | 'flags.gyp:flags', |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 154 | ], |
robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 155 | 'conditions': [ |
| 156 | ['skia_gpu == 1', |
| 157 | { |
| 158 | 'include_dirs' : [ |
| 159 | '../src/gpu', |
| 160 | ], |
| 161 | }, |
| 162 | ], |
| 163 | ], |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 164 | 'export_dependent_settings': [ |
| 165 | 'images.gyp:images', |
| 166 | ], |
keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 167 | }, |
| 168 | { |
edisonn@google.com | c319abe | 2012-11-01 19:52:38 +0000 | [diff] [blame] | 169 | 'target_name': 'render_pdfs', |
| 170 | 'type': 'executable', |
| 171 | 'sources': [ |
| 172 | '../tools/render_pdfs_main.cpp', |
| 173 | '../tools/PdfRenderer.cpp', |
| 174 | '../tools/PdfRenderer.h', |
| 175 | ], |
| 176 | 'include_dirs': [ |
| 177 | '../src/pipe/utils/', |
| 178 | '../src/utils/', |
| 179 | ], |
| 180 | 'dependencies': [ |
| 181 | 'core.gyp:core', |
| 182 | 'effects.gyp:effects', |
| 183 | 'images.gyp:images', |
| 184 | 'pdf.gyp:pdf', |
| 185 | 'ports.gyp:ports', |
| 186 | 'tools.gyp:picture_utils', |
| 187 | ], |
edisonn@google.com | 184487c | 2013-03-08 18:00:16 +0000 | [diff] [blame] | 188 | 'conditions': [ |
borenet@google.com | 2d137b6 | 2013-03-08 23:13:33 +0000 | [diff] [blame] | 189 | ['skia_win_debuggers_path and skia_os == "win"', |
edisonn@google.com | 184487c | 2013-03-08 18:00:16 +0000 | [diff] [blame] | 190 | { |
| 191 | 'dependencies': [ |
| 192 | 'tools.gyp:win_dbghelp', |
| 193 | ], |
| 194 | }, |
| 195 | ], |
| 196 | # VS static libraries don't have a linker option. We must set a global |
| 197 | # project linker option, or add it to each executable. |
| 198 | ['skia_win_debuggers_path and skia_os == "win" and ' |
borenet@google.com | 2d137b6 | 2013-03-08 23:13:33 +0000 | [diff] [blame] | 199 | 'skia_arch_width == 64', |
edisonn@google.com | 184487c | 2013-03-08 18:00:16 +0000 | [diff] [blame] | 200 | { |
| 201 | 'msvs_settings': { |
| 202 | 'VCLinkerTool': { |
| 203 | 'AdditionalDependencies': [ |
| 204 | '<(skia_win_debuggers_path)/x64/DbgHelp.lib', |
| 205 | ], |
| 206 | }, |
| 207 | }, |
| 208 | }, |
| 209 | ], |
| 210 | ['skia_win_debuggers_path and skia_os == "win" and ' |
borenet@google.com | 2d137b6 | 2013-03-08 23:13:33 +0000 | [diff] [blame] | 211 | 'skia_arch_width == 32', |
edisonn@google.com | 184487c | 2013-03-08 18:00:16 +0000 | [diff] [blame] | 212 | { |
| 213 | 'msvs_settings': { |
| 214 | 'VCLinkerTool': { |
| 215 | 'AdditionalDependencies': [ |
| 216 | '<(skia_win_debuggers_path)/DbgHelp.lib', |
| 217 | ], |
| 218 | }, |
| 219 | }, |
| 220 | }, |
| 221 | ], |
| 222 | ], |
edisonn@google.com | c319abe | 2012-11-01 19:52:38 +0000 | [diff] [blame] | 223 | }, |
| 224 | { |
twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 225 | 'target_name': 'picture_utils', |
| 226 | 'type': 'static_library', |
| 227 | 'sources': [ |
| 228 | '../tools/picture_utils.cpp', |
borenet@google.com | e21795e | 2012-09-14 14:34:28 +0000 | [diff] [blame] | 229 | '../tools/picture_utils.h', |
twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 230 | ], |
| 231 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 232 | 'skia_base_libs.gyp:skia_base_libs', |
junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 233 | ], |
| 234 | }, |
reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 235 | { |
| 236 | 'target_name': 'pinspect', |
| 237 | 'type': 'executable', |
| 238 | 'sources': [ |
| 239 | '../tools/pinspect.cpp', |
| 240 | ], |
| 241 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 242 | 'skia_base_libs.gyp:skia_base_libs', |
reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 243 | 'effects.gyp:effects', |
| 244 | 'images.gyp:images', |
reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 245 | ], |
| 246 | }, |
robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 247 | { |
| 248 | 'target_name': 'filter', |
| 249 | 'type': 'executable', |
| 250 | 'include_dirs' : [ |
| 251 | '../src/core', |
robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 252 | '../debugger', |
robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 253 | ], |
| 254 | 'sources': [ |
| 255 | '../tools/filtermain.cpp', |
robertphillips@google.com | d3d377f | 2012-12-07 20:56:13 +0000 | [diff] [blame] | 256 | '../tools/path_utils.h', |
robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 257 | '../tools/path_utils.cpp', |
| 258 | '../debugger/SkDrawCommand.h', |
| 259 | '../debugger/SkDrawCommand.cpp', |
| 260 | '../debugger/SkDebugCanvas.h', |
| 261 | '../debugger/SkDebugCanvas.cpp', |
| 262 | '../debugger/SkObjectParser.h', |
| 263 | '../debugger/SkObjectParser.cpp', |
robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 264 | ], |
| 265 | 'dependencies': [ |
borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 266 | 'skia_base_libs.gyp:skia_base_libs', |
robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 267 | 'effects.gyp:effects', |
| 268 | 'images.gyp:images', |
djsollen@google.com | a09e883 | 2012-11-13 18:50:33 +0000 | [diff] [blame] | 269 | 'tools.gyp:picture_utils', |
robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 270 | ], |
| 271 | }, |
edisonn@google.com | 8819d1a | 2013-03-08 18:43:35 +0000 | [diff] [blame] | 272 | ], |
| 273 | 'conditions': [ |
borenet@google.com | 2d137b6 | 2013-03-08 23:13:33 +0000 | [diff] [blame] | 274 | ['skia_win_debuggers_path and skia_os == "win"', |
edisonn@google.com | 8819d1a | 2013-03-08 18:43:35 +0000 | [diff] [blame] | 275 | { |
| 276 | 'targets': [ |
| 277 | { |
| 278 | 'target_name': 'win_dbghelp', |
| 279 | 'type': 'static_library', |
| 280 | 'defines': [ |
| 281 | 'SK_CDB_PATH="<(skia_win_debuggers_path)"', |
| 282 | ], |
| 283 | 'sources': [ |
| 284 | '../tools/win_dbghelp.h', |
| 285 | '../tools/win_dbghelp.cpp', |
| 286 | ], |
| 287 | }, |
| 288 | ], |
| 289 | }, |
| 290 | ], |
bungeman@google.com | 07a69f8 | 2013-04-02 14:12:38 +0000 | [diff] [blame] | 291 | ['skia_os == "win"', |
| 292 | { |
| 293 | 'targets': [ |
| 294 | { |
| 295 | 'target_name': 'win_lcid', |
| 296 | 'type': 'executable', |
| 297 | 'sources': [ |
| 298 | '../tools/win_lcid.cpp', |
| 299 | ], |
| 300 | }, |
| 301 | ], |
| 302 | }, |
| 303 | ], |
epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 304 | ], |
| 305 | } |
| 306 | |
| 307 | # Local Variables: |
| 308 | # tab-width:2 |
| 309 | # indent-tabs-mode:nil |
| 310 | # End: |
| 311 | # vim: set expandtab tabstop=2 shiftwidth=2: |