Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(512)

Side by Side Diff: gyp/tools.gyp

Issue 892533002: Initial SVG backend stubbing (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: optional output file arg Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « experimental/svg/skp2svg.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': [
11 { 11 {
12 # Build all executable targets defined below. 12 # Build all executable targets defined below.
13 'target_name': 'tools', 13 'target_name': 'tools',
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'bench_pictures', 16 'bench_pictures',
17 'dump_record', 17 'dump_record',
18 'filter', 18 'filter',
19 'gpuveto', 19 'gpuveto',
20 'lua_app', 20 'lua_app',
21 'lua_pictures', 21 'lua_pictures',
22 'imgconv', 22 'imgconv',
23 'pinspect', 23 'pinspect',
24 'render_pdfs', 24 'render_pdfs',
25 'render_pictures', 25 'render_pictures',
26 'skdiff', 26 'skdiff',
27 'skhello', 27 'skhello',
28 'skp2svg',
28 'skpdiff', 29 'skpdiff',
29 'skpinfo', 30 'skpinfo',
30 'skpmaker', 31 'skpmaker',
31 'test_image_decoder', 32 'test_image_decoder',
32 'test_public_includes', 33 'test_public_includes',
33 ], 34 ],
34 'conditions': [ 35 'conditions': [
35 ['skia_shared_lib', 36 ['skia_shared_lib',
36 { 37 {
37 'dependencies': [ 38 'dependencies': [
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 ], 258 ],
258 'include_dirs': [ 259 'include_dirs': [
259 '../src/core/', 260 '../src/core/',
260 ], 261 ],
261 'dependencies': [ 262 'dependencies': [
262 'flags.gyp:flags', 263 'flags.gyp:flags',
263 'skia_lib.gyp:skia_lib', 264 'skia_lib.gyp:skia_lib',
264 ], 265 ],
265 }, 266 },
266 { 267 {
268 'target_name': 'skp2svg',
269 'type': 'executable',
270 'sources': [
271 '../experimental/svg/skp2svg.cpp',
272 '../experimental/svg/SkSVGDevice.cpp',
273 '../experimental/svg/SkSVGDevice.h',
274 '../tools/LazyDecodeBitmap.cpp',
275 ],
276 'include_dirs': [
277 '../src/core/',
278 '../src/lazy/',
279 '../tools/',
280 ],
281 'dependencies': [
282 'flags.gyp:flags',
283 'skia_lib.gyp:skia_lib',
284 'xml.gyp:xml',
285 ],
286 },
287 {
267 'target_name': 'gpuveto', 288 'target_name': 'gpuveto',
268 'type': 'executable', 289 'type': 'executable',
269 'sources': [ 290 'sources': [
270 '../tools/gpuveto.cpp', 291 '../tools/gpuveto.cpp',
271 '../tools/LazyDecodeBitmap.cpp', 292 '../tools/LazyDecodeBitmap.cpp',
272 ], 293 ],
273 'include_dirs': [ 294 'include_dirs': [
274 '../src/core/', 295 '../src/core/',
275 '../src/images', 296 '../src/images',
276 '../src/lazy', 297 '../src/lazy',
(...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 'flags.gyp:flags', 763 'flags.gyp:flags',
743 'skia_lib.gyp:skia_lib', 764 'skia_lib.gyp:skia_lib',
744 'resources', 765 'resources',
745 ], 766 ],
746 }, 767 },
747 ], 768 ],
748 }, 769 },
749 ], 770 ],
750 ], 771 ],
751 } 772 }
OLDNEW
« no previous file with comments | « experimental/svg/skp2svg.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698