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

Side by Side Diff: gyp/tools.gyp

Issue 16638014: Expose debugger backend classes externally. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Relocated to src/utils/debugger/ 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 | « gyp/gm.gyp ('k') | src/utils/debugger/SkDebugCanvas.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 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'target_name': 'filter', 280 'target_name': 'filter',
281 'type': 'executable', 281 'type': 'executable',
282 'include_dirs' : [ 282 'include_dirs' : [
283 '../src/core', 283 '../src/core',
284 '../debugger', 284 '../debugger',
285 ], 285 ],
286 'sources': [ 286 'sources': [
287 '../tools/filtermain.cpp', 287 '../tools/filtermain.cpp',
288 '../tools/path_utils.h', 288 '../tools/path_utils.h',
289 '../tools/path_utils.cpp', 289 '../tools/path_utils.cpp',
290 '../debugger/SkDrawCommand.h', 290 '../src/utils/debugger/SkDrawCommand.h',
291 '../debugger/SkDrawCommand.cpp', 291 '../src/utils/debugger/SkDrawCommand.cpp',
292 '../debugger/SkDebugCanvas.h', 292 '../src/utils/debugger/SkDebugCanvas.h',
293 '../debugger/SkDebugCanvas.cpp', 293 '../src/utils/debugger/SkDebugCanvas.cpp',
294 '../debugger/SkObjectParser.h', 294 '../src/utils/debugger/SkObjectParser.h',
295 '../debugger/SkObjectParser.cpp', 295 '../src/utils/debugger/SkObjectParser.cpp',
296 ], 296 ],
297 'dependencies': [ 297 'dependencies': [
298 'skia_lib.gyp:skia_lib', 298 'skia_lib.gyp:skia_lib',
299 'tools.gyp:picture_utils', 299 'tools.gyp:picture_utils',
300 ], 300 ],
301 }, 301 },
302 ], 302 ],
303 'conditions': [ 303 'conditions': [
304 ['skia_win_debuggers_path and skia_os == "win"', 304 ['skia_win_debuggers_path and skia_os == "win"',
305 { 305 {
(...skipping 26 matching lines...) Expand all
332 }, 332 },
333 ], 333 ],
334 ], 334 ],
335 } 335 }
336 336
337 # Local Variables: 337 # Local Variables:
338 # tab-width:2 338 # tab-width:2
339 # indent-tabs-mode:nil 339 # indent-tabs-mode:nil
340 # End: 340 # End:
341 # vim: set expandtab tabstop=2 shiftwidth=2: 341 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/gm.gyp ('k') | src/utils/debugger/SkDebugCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698