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

Side by Side Diff: gyp/tools.gyp

Issue 16034015: Use image decoding in pinspect (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Use lazy decoder. Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tools/pinspect.cpp » ('j') | tools/pinspect.cpp » ('J')
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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 }, 267 },
268 }, 268 },
269 { 269 {
270 'target_name': 'pinspect', 270 'target_name': 'pinspect',
271 'type': 'executable', 271 'type': 'executable',
272 'sources': [ 272 'sources': [
273 '../tools/pinspect.cpp', 273 '../tools/pinspect.cpp',
274 ], 274 ],
275 'dependencies': [ 275 'dependencies': [
276 'skia_lib.gyp:skia_lib', 276 'skia_lib.gyp:skia_lib',
277 'tools.gyp:picture_renderer',
sglez 2013/06/12 15:37:37 Linking to flags was not enough because it doesn't
scroggo 2013/06/12 16:10:05 No, I was confused. PictureRenderingFlags should n
277 ], 278 ],
278 }, 279 },
279 { 280 {
280 'target_name': 'filter', 281 'target_name': 'filter',
281 'type': 'executable', 282 'type': 'executable',
282 'include_dirs' : [ 283 'include_dirs' : [
283 '../src/core', 284 '../src/core',
284 '../debugger', 285 '../debugger',
285 ], 286 ],
286 'sources': [ 287 'sources': [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 }, 333 },
333 ], 334 ],
334 ], 335 ],
335 } 336 }
336 337
337 # Local Variables: 338 # Local Variables:
338 # tab-width:2 339 # tab-width:2
339 # indent-tabs-mode:nil 340 # indent-tabs-mode:nil
340 # End: 341 # End:
341 # vim: set expandtab tabstop=2 shiftwidth=2: 342 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/pinspect.cpp » ('j') | tools/pinspect.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698