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