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

Side by Side Diff: gyp/tools.gyp

Issue 282233003: Factor out DumpRecord method from dump_record tool for later use (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: AnotherPatchSet Created 6 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
« no previous file with comments | « no previous file | tools/DumpRecord.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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 'flags.gyp:flags', 341 'flags.gyp:flags',
342 'skia_lib.gyp:skia_lib', 342 'skia_lib.gyp:skia_lib',
343 'record.gyp:*', 343 'record.gyp:*',
344 ], 344 ],
345 }, 345 },
346 { 346 {
347 'target_name': 'dump_record', 347 'target_name': 'dump_record',
348 'type': 'executable', 348 'type': 'executable',
349 'sources': [ 349 'sources': [
350 '../tools/dump_record.cpp', 350 '../tools/dump_record.cpp',
351 '../tools/DumpRecord.cpp',
351 '../tools/LazyDecodeBitmap.cpp', 352 '../tools/LazyDecodeBitmap.cpp',
352 ], 353 ],
353 'include_dirs': [ 354 'include_dirs': [
354 '../src/core/', 355 '../src/core/',
355 '../src/images', 356 '../src/images',
356 '../src/lazy', 357 '../src/lazy',
357 '../src/record', 358 '../src/record',
358 ], 359 ],
359 'dependencies': [ 360 'dependencies': [
360 'bench.gyp:bench_timer', 361 'bench.gyp:bench_timer',
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 'type': 'executable', 613 'type': 'executable',
613 'sources': [ 614 'sources': [
614 '../tools/win_lcid.cpp', 615 '../tools/win_lcid.cpp',
615 ], 616 ],
616 }, 617 },
617 ], 618 ],
618 }, 619 },
619 ], 620 ],
620 ], 621 ],
621 } 622 }
OLDNEW
« no previous file with comments | « no previous file | tools/DumpRecord.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698