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

Side by Side Diff: gyp/tools.gyp

Issue 902583006: Add SkSVGCanvas (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: fix win warning 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 | « gyp/svg.gyp ('k') | include/svg/SkSVGCanvas.h » ('j') | 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': [
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 ], 258 ],
259 'include_dirs': [ 259 'include_dirs': [
260 '../src/core/', 260 '../src/core/',
261 ], 261 ],
262 'dependencies': [ 262 'dependencies': [
263 'flags.gyp:flags', 263 'flags.gyp:flags',
264 'skia_lib.gyp:skia_lib', 264 'skia_lib.gyp:skia_lib',
265 ], 265 ],
266 }, 266 },
267 { 267 {
268 # Superseded by dm, should be removed.
268 'target_name': 'skp2svg', 269 'target_name': 'skp2svg',
269 'type': 'executable', 270 'type': 'executable',
270 'sources': [ 271 'sources': [
271 '../experimental/svg/skp2svg.cpp', 272 '../src/svg/skp2svg.cpp',
272 '../experimental/svg/SkSVGDevice.cpp',
273 '../experimental/svg/SkSVGDevice.h',
274 '../tools/LazyDecodeBitmap.cpp', 273 '../tools/LazyDecodeBitmap.cpp',
275 ], 274 ],
276 'include_dirs': [ 275 'include_dirs': [
277 '../src/core/', 276 '../src/core/',
278 '../src/lazy/', 277 '../src/lazy/',
279 '../tools/', 278 '../tools/',
280 ], 279 ],
281 'dependencies': [ 280 'dependencies': [
282 'flags.gyp:flags', 281 'flags.gyp:flags',
283 'skia_lib.gyp:skia_lib', 282 'skia_lib.gyp:skia_lib',
283 'svg.gyp:svg',
284 'xml.gyp:xml', 284 'xml.gyp:xml',
285 ], 285 ],
286 }, 286 },
287 { 287 {
288 'target_name': 'gpuveto', 288 'target_name': 'gpuveto',
289 'type': 'executable', 289 'type': 'executable',
290 'sources': [ 290 'sources': [
291 '../tools/gpuveto.cpp', 291 '../tools/gpuveto.cpp',
292 '../tools/LazyDecodeBitmap.cpp', 292 '../tools/LazyDecodeBitmap.cpp',
293 ], 293 ],
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'flags.gyp:flags', 761 'flags.gyp:flags',
762 'skia_lib.gyp:skia_lib', 762 'skia_lib.gyp:skia_lib',
763 'resources', 763 'resources',
764 ], 764 ],
765 }, 765 },
766 ], 766 ],
767 }, 767 },
768 ], 768 ],
769 ], 769 ],
770 } 770 }
OLDNEW
« no previous file with comments | « gyp/svg.gyp ('k') | include/svg/SkSVGCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698