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

Side by Side Diff: gyp/tools.gyp

Issue 206313003: SkRecord strawman (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: IsSmall -> IsLarge: pithier Created 6 years, 8 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/record.gyp ('k') | src/record/SkRecord.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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'target_name': 'bench_record', 293 'target_name': 'bench_record',
294 'type': 'executable', 294 'type': 'executable',
295 'sources': [ 295 'sources': [
296 '../tools/bench_record.cpp', 296 '../tools/bench_record.cpp',
297 '../tools/LazyDecodeBitmap.cpp', 297 '../tools/LazyDecodeBitmap.cpp',
298 ], 298 ],
299 'include_dirs': [ 299 'include_dirs': [
300 '../src/core/', 300 '../src/core/',
301 '../src/images', 301 '../src/images',
302 '../src/lazy', 302 '../src/lazy',
303 '../src/record',
303 ], 304 ],
304 'dependencies': [ 305 'dependencies': [
305 'flags.gyp:flags', 306 'flags.gyp:flags',
306 'skia_lib.gyp:skia_lib', 307 'skia_lib.gyp:skia_lib',
308 'record.gyp:*',
307 ], 309 ],
308 }, 310 },
309 { 311 {
310 'target_name': 'picture_renderer', 312 'target_name': 'picture_renderer',
311 'type': 'static_library', 313 'type': 'static_library',
312 'sources': [ 314 'sources': [
313 '../tools/LazyDecodeBitmap.cpp', 315 '../tools/LazyDecodeBitmap.cpp',
314 '../tools/PictureRenderer.h', 316 '../tools/PictureRenderer.h',
315 '../tools/PictureRenderer.cpp', 317 '../tools/PictureRenderer.cpp',
316 '../tools/PictureRenderingFlags.h', 318 '../tools/PictureRenderingFlags.h',
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 'type': 'executable', 555 'type': 'executable',
554 'sources': [ 556 'sources': [
555 '../tools/win_lcid.cpp', 557 '../tools/win_lcid.cpp',
556 ], 558 ],
557 }, 559 },
558 ], 560 ],
559 }, 561 },
560 ], 562 ],
561 ], 563 ],
562 } 564 }
OLDNEW
« no previous file with comments | « gyp/record.gyp ('k') | src/record/SkRecord.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698