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

Side by Side Diff: gyp/tools.gyp

Issue 343583005: Add basic stacktrace handler using libunwind. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: wimpy linux Created 6 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
« no previous file with comments | « gyp/tests.gyp ('k') | tests/skia_test.cpp » ('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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 '../bench/SkBenchLogger.cpp', 293 '../bench/SkBenchLogger.cpp',
294 '../tools/bench_pictures_main.cpp', 294 '../tools/bench_pictures_main.cpp',
295 ], 295 ],
296 'include_dirs': [ 296 'include_dirs': [
297 '../src/core/', 297 '../src/core/',
298 '../bench', 298 '../bench',
299 '../src/lazy/', 299 '../src/lazy/',
300 ], 300 ],
301 'dependencies': [ 301 'dependencies': [
302 'bench.gyp:bench_timer', 302 'bench.gyp:bench_timer',
303 'crash_handler.gyp:CrashHandler',
303 'flags.gyp:flags', 304 'flags.gyp:flags',
304 'jsoncpp.gyp:jsoncpp', 305 'jsoncpp.gyp:jsoncpp',
305 'skia_lib.gyp:skia_lib', 306 'skia_lib.gyp:skia_lib',
307 'tools.gyp:picture_renderer',
306 'tools.gyp:picture_utils', 308 'tools.gyp:picture_utils',
307 'tools.gyp:picture_renderer',
308 'tools.gyp:timer_data', 309 'tools.gyp:timer_data',
309 ], 310 ],
310 }, 311 },
311 { 312 {
312 'target_name': 'bench_record', 313 'target_name': 'bench_record',
313 'type': 'executable', 314 'type': 'executable',
314 'sources': [ 315 'sources': [
315 '../tools/bench_record.cpp', 316 '../tools/bench_record.cpp',
316 '../tools/LazyDecodeBitmap.cpp', 317 '../tools/LazyDecodeBitmap.cpp',
317 ], 318 ],
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
618 'type': 'executable', 619 'type': 'executable',
619 'sources': [ 620 'sources': [
620 '../tools/win_lcid.cpp', 621 '../tools/win_lcid.cpp',
621 ], 622 ],
622 }, 623 },
623 ], 624 ],
624 }, 625 },
625 ], 626 ],
626 ], 627 ],
627 } 628 }
OLDNEW
« no previous file with comments | « gyp/tests.gyp ('k') | tests/skia_test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698