| 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 | # |
| 6 | # Building on other platforms not tested yet. |
| 7 | # |
| 8 | { |
| 9 | 'includes': [ |
| 10 | 'apptype_console.gypi', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 11 | ], |
| 12 | 'targets': [ |
| 13 | { |
| 14 | # Build all executable targets defined below. |
| 15 | 'target_name': 'tools', |
| 16 | 'type': 'none', |
| 17 | 'dependencies': [ |
| edisonn@google.com | 8ba9a83 | 2013-01-18 18:06:22 +0000 | [diff] [blame] | 18 | 'bench_pictures', |
| 19 | 'filter', |
| 20 | 'pinspect', |
| 21 | 'render_pdfs', |
| 22 | 'render_pictures', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 23 | 'skdiff', |
| 24 | 'skhello', |
| 25 | 'skimage', |
| 26 | ], |
| 27 | }, |
| 28 | { |
| 29 | 'target_name': 'skdiff', |
| 30 | 'type': 'executable', |
| 31 | 'sources': [ |
| bungeman@google.com | e3c8ddf | 2012-12-05 20:13:12 +0000 | [diff] [blame] | 32 | '../tools/skdiff.cpp', |
| 33 | '../tools/skdiff.h', |
| 34 | '../tools/skdiff_html.cpp', |
| 35 | '../tools/skdiff_html.h', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 36 | '../tools/skdiff_main.cpp', |
| bungeman@google.com | e3c8ddf | 2012-12-05 20:13:12 +0000 | [diff] [blame] | 37 | '../tools/skdiff_utils.cpp', |
| 38 | '../tools/skdiff_utils.h', |
| 39 | ], |
| 40 | 'dependencies': [ |
| 41 | 'skia_base_libs.gyp:skia_base_libs', |
| 42 | 'effects.gyp:effects', |
| 43 | 'images.gyp:images', |
| 44 | ], |
| 45 | }, |
| 46 | { |
| 47 | 'target_name': 'skimagediff', |
| 48 | 'type': 'executable', |
| 49 | 'sources': [ |
| 50 | '../tools/skdiff.cpp', |
| 51 | '../tools/skdiff.h', |
| 52 | '../tools/skdiff_html.cpp', |
| 53 | '../tools/skdiff_html.h', |
| 54 | '../tools/skdiff_image.cpp', |
| 55 | '../tools/skdiff_utils.cpp', |
| 56 | '../tools/skdiff_utils.h', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 57 | ], |
| 58 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 59 | 'skia_base_libs.gyp:skia_base_libs', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 60 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 61 | 'images.gyp:images', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 62 | ], |
| 63 | }, |
| 64 | { |
| 65 | 'target_name': 'skhello', |
| 66 | 'type': 'executable', |
| 67 | 'sources': [ |
| 68 | '../tools/skhello.cpp', |
| commit-bot@chromium.org | 31ea339 | 2013-03-04 20:58:01 +0000 | [diff] [blame] | 69 | '../tools/SkFlags.h', |
| 70 | '../tools/SkFlags.cpp', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 71 | ], |
| 72 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 73 | 'skia_base_libs.gyp:skia_base_libs', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 74 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 75 | 'images.gyp:images', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 76 | ], |
| 77 | }, |
| 78 | { |
| 79 | 'target_name': 'skimage', |
| 80 | 'type': 'executable', |
| 81 | 'sources': [ |
| 82 | '../tools/skimage_main.cpp', |
| 83 | ], |
| 84 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 85 | 'skia_base_libs.gyp:skia_base_libs', |
| djsollen@google.com | 41b46be | 2012-03-23 19:36:53 +0000 | [diff] [blame] | 86 | 'effects.gyp:effects', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 87 | 'images.gyp:images', |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 88 | ], |
| 89 | }, |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 90 | { |
| 91 | 'target_name': 'render_pictures', |
| 92 | 'type': 'executable', |
| 93 | 'sources': [ |
| 94 | '../tools/render_pictures_main.cpp', |
| keyar@chromium.org | a2333d9 | 2012-07-16 17:29:16 +0000 | [diff] [blame] | 95 | ], |
| 96 | 'include_dirs': [ |
| 97 | '../src/pipe/utils/', |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 98 | ], |
| 99 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 100 | 'skia_base_libs.gyp:skia_base_libs', |
| keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 101 | 'tools.gyp:picture_renderer', |
| twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 102 | 'tools.gyp:picture_utils', |
| 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 | 9a41252 | 2012-09-07 15:21:18 +0000 | [diff] [blame] | 126 | ], |
| keyar@chromium.org | 163b567 | 2012-08-01 17:53:29 +0000 | [diff] [blame] | 127 | }, |
| 128 | { |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 129 | 'target_name': 'picture_renderer', |
| 130 | 'type': 'static_library', |
| 131 | 'sources': [ |
| scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 132 | '../tools/PictureRenderer.h', |
| keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 133 | '../tools/PictureRenderer.cpp', |
| scroggo@google.com | 161e1ba | 2013-03-04 16:41:06 +0000 | [diff] [blame] | 134 | '../tools/PictureRenderingFlags.h', |
| 135 | '../tools/PictureRenderingFlags.cpp', |
| scroggo@google.com | 4a26d9d | 2012-11-07 18:01:46 +0000 | [diff] [blame] | 136 | '../tools/CopyTilesRenderer.h', |
| 137 | '../tools/CopyTilesRenderer.cpp', |
| scroggo@google.com | 161e1ba | 2013-03-04 16:41:06 +0000 | [diff] [blame] | 138 | '../tools/SkFlags.h', |
| 139 | '../tools/SkFlags.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', |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 153 | ], |
| robertphillips@google.com | fe1b536 | 2013-02-07 19:45:46 +0000 | [diff] [blame] | 154 | 'conditions': [ |
| 155 | ['skia_gpu == 1', |
| 156 | { |
| 157 | 'include_dirs' : [ |
| 158 | '../src/gpu', |
| 159 | ], |
| 160 | }, |
| 161 | ], |
| 162 | ], |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 163 | 'export_dependent_settings': [ |
| 164 | 'images.gyp:images', |
| 165 | ], |
| keyar@chromium.org | 451bb9f | 2012-07-26 17:27:57 +0000 | [diff] [blame] | 166 | }, |
| 167 | { |
| edisonn@google.com | c319abe | 2012-11-01 19:52:38 +0000 | [diff] [blame] | 168 | 'target_name': 'render_pdfs', |
| 169 | 'type': 'executable', |
| 170 | 'sources': [ |
| 171 | '../tools/render_pdfs_main.cpp', |
| 172 | '../tools/PdfRenderer.cpp', |
| 173 | '../tools/PdfRenderer.h', |
| 174 | ], |
| 175 | 'include_dirs': [ |
| 176 | '../src/pipe/utils/', |
| 177 | '../src/utils/', |
| 178 | ], |
| 179 | 'dependencies': [ |
| 180 | 'core.gyp:core', |
| 181 | 'effects.gyp:effects', |
| 182 | 'images.gyp:images', |
| 183 | 'pdf.gyp:pdf', |
| 184 | 'ports.gyp:ports', |
| 185 | 'tools.gyp:picture_utils', |
| 186 | ], |
| 187 | }, |
| 188 | { |
| twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 189 | 'target_name': 'picture_utils', |
| 190 | 'type': 'static_library', |
| 191 | 'sources': [ |
| 192 | '../tools/picture_utils.cpp', |
| borenet@google.com | e21795e | 2012-09-14 14:34:28 +0000 | [diff] [blame] | 193 | '../tools/picture_utils.h', |
| twiz@google.com | a31b8bb | 2012-06-22 18:24:56 +0000 | [diff] [blame] | 194 | ], |
| 195 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 196 | 'skia_base_libs.gyp:skia_base_libs', |
| junov@chromium.org | 777442d | 2012-06-12 14:56:36 +0000 | [diff] [blame] | 197 | ], |
| 198 | }, |
| reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 199 | { |
| 200 | 'target_name': 'pinspect', |
| 201 | 'type': 'executable', |
| 202 | 'sources': [ |
| 203 | '../tools/pinspect.cpp', |
| 204 | ], |
| 205 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 206 | 'skia_base_libs.gyp:skia_base_libs', |
| reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 207 | 'effects.gyp:effects', |
| 208 | 'images.gyp:images', |
| reed@google.com | 1bdf7fe | 2012-06-14 18:58:40 +0000 | [diff] [blame] | 209 | ], |
| 210 | }, |
| robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 211 | { |
| 212 | 'target_name': 'filter', |
| 213 | 'type': 'executable', |
| 214 | 'include_dirs' : [ |
| 215 | '../src/core', |
| robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 216 | '../debugger', |
| robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 217 | ], |
| 218 | 'sources': [ |
| 219 | '../tools/filtermain.cpp', |
| robertphillips@google.com | d3d377f | 2012-12-07 20:56:13 +0000 | [diff] [blame] | 220 | '../tools/path_utils.h', |
| robertphillips@google.com | 3b0a9fe | 2013-01-31 15:56:22 +0000 | [diff] [blame] | 221 | '../tools/path_utils.cpp', |
| 222 | '../debugger/SkDrawCommand.h', |
| 223 | '../debugger/SkDrawCommand.cpp', |
| 224 | '../debugger/SkDebugCanvas.h', |
| 225 | '../debugger/SkDebugCanvas.cpp', |
| 226 | '../debugger/SkObjectParser.h', |
| 227 | '../debugger/SkObjectParser.cpp', |
| robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 228 | ], |
| 229 | 'dependencies': [ |
| borenet@google.com | efb1d77 | 2012-10-10 19:45:51 +0000 | [diff] [blame] | 230 | 'skia_base_libs.gyp:skia_base_libs', |
| robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 231 | 'effects.gyp:effects', |
| 232 | 'images.gyp:images', |
| djsollen@google.com | a09e883 | 2012-11-13 18:50:33 +0000 | [diff] [blame] | 233 | 'tools.gyp:picture_utils', |
| robertphillips@google.com | c7e4a5a | 2012-10-04 13:00:33 +0000 | [diff] [blame] | 234 | ], |
| 235 | }, |
| epoger@google.com | ccdbd2c | 2011-06-02 14:38:23 +0000 | [diff] [blame] | 236 | ], |
| 237 | } |
| 238 | |
| 239 | # Local Variables: |
| 240 | # tab-width:2 |
| 241 | # indent-tabs-mode:nil |
| 242 | # End: |
| 243 | # vim: set expandtab tabstop=2 shiftwidth=2: |