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

Side by Side Diff: gyp/tools.gyp

Issue 15737010: add dumpops.lua as a sample scraper that just dumps the arguments (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 7 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 | include/utils/SkLua.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 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 'jsoncpp.gyp:jsoncpp', 93 'jsoncpp.gyp:jsoncpp',
94 'utils.gyp:utils', 94 'utils.gyp:utils',
95 ], 95 ],
96 }, 96 },
97 { 97 {
98 'target_name': 'lua_pictures', 98 'target_name': 'lua_pictures',
99 'type': 'executable', 99 'type': 'executable',
100 'sources': [ 100 'sources': [
101 '../tools/lua/lua_pictures.cpp', 101 '../tools/lua/lua_pictures.cpp',
102 '../src/utils/SkLuaCanvas.cpp', 102 '../src/utils/SkLuaCanvas.cpp',
103 '../src/utils/SkLua.cpp',
103 ], 104 ],
104 'dependencies': [ 105 'dependencies': [
105 'skia_base_libs.gyp:skia_base_libs', 106 'skia_base_libs.gyp:skia_base_libs',
106 'effects.gyp:effects', 107 'effects.gyp:effects',
107 'utils.gyp:utils', 108 'utils.gyp:utils',
108 'images.gyp:images', 109 'images.gyp:images',
109 'tools.gyp:picture_renderer', 110 'tools.gyp:picture_renderer',
110 'tools.gyp:picture_utils', 111 'tools.gyp:picture_utils',
111 'ports.gyp:ports', 112 'ports.gyp:ports',
112 'flags.gyp:flags', 113 'flags.gyp:flags',
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 }, 336 },
336 ], 337 ],
337 ], 338 ],
338 } 339 }
339 340
340 # Local Variables: 341 # Local Variables:
341 # tab-width:2 342 # tab-width:2
342 # indent-tabs-mode:nil 343 # indent-tabs-mode:nil
343 # End: 344 # End:
344 # vim: set expandtab tabstop=2 shiftwidth=2: 345 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | include/utils/SkLua.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698