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

Side by Side Diff: gyp/dm.gyp

Issue 108963002: DM: Add support for reading a directory of images with --expectations (-r). (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: comments etc Created 7 years 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 | « dm/DMWriteTask.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). 1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
2 # vim: set expandtab tabstop=4 shiftwidth=4 2 # vim: set expandtab tabstop=4 shiftwidth=4
3 { 3 {
4 'includes': [ 'apptype_console.gypi' ], 4 'includes': [ 'apptype_console.gypi' ],
5 5
6 'targets': [{ 6 'targets': [{
7 'target_name': 'dm', 7 'target_name': 'dm',
8 'type': 'executable', 8 'type': 'executable',
9 'include_dirs': [ 9 'include_dirs': [
10 '../dm', 10 '../dm',
11 '../gm', 11 '../gm',
12 '../src/images', 12 '../src/images',
13 '../src/lazy', 13 '../src/lazy',
14 '../src/core', 14 '../src/core',
15 '../src/effects', 15 '../src/effects',
16 '../src/pipe/utils/', 16 '../src/pipe/utils/',
17 '../src/utils', 17 '../src/utils',
18 '../src/utils/debugger', 18 '../src/utils/debugger',
19 ], 19 ],
20 'includes': [ 'gmslides.gypi' ], 20 'includes': [ 'gmslides.gypi' ],
21 'sources': [ 21 'sources': [
22 '../dm/DM.cpp', 22 '../dm/DM.cpp',
23 '../dm/DMChecksumTask.cpp',
24 '../dm/DMCpuTask.cpp', 23 '../dm/DMCpuTask.cpp',
24 '../dm/DMExpectationsTask.cpp',
25 '../dm/DMGpuTask.cpp', 25 '../dm/DMGpuTask.cpp',
26 '../dm/DMPipeTask.cpp', 26 '../dm/DMPipeTask.cpp',
27 '../dm/DMReplayTask.cpp', 27 '../dm/DMReplayTask.cpp',
28 '../dm/DMReporter.cpp', 28 '../dm/DMReporter.cpp',
29 '../dm/DMSerializeTask.cpp', 29 '../dm/DMSerializeTask.cpp',
30 '../dm/DMTask.cpp', 30 '../dm/DMTask.cpp',
31 '../dm/DMTaskRunner.cpp', 31 '../dm/DMTaskRunner.cpp',
32 '../dm/DMTileGridTask.cpp', 32 '../dm/DMTileGridTask.cpp',
33 '../dm/DMUtil.cpp', 33 '../dm/DMUtil.cpp',
34 '../dm/DMWriteTask.cpp', 34 '../dm/DMWriteTask.cpp',
35 '../gm/gm.cpp', 35 '../gm/gm.cpp',
36 '../gm/gm_expectations.cpp', 36 '../gm/gm_expectations.cpp',
37 37
38 '../src/pipe/utils/SamplePipeControllers.cpp', 38 '../src/pipe/utils/SamplePipeControllers.cpp',
39 '../src/utils/debugger/SkDebugCanvas.cpp', 39 '../src/utils/debugger/SkDebugCanvas.cpp',
40 '../src/utils/debugger/SkDrawCommand.cpp', 40 '../src/utils/debugger/SkDrawCommand.cpp',
41 '../src/utils/debugger/SkObjectParser.cpp', 41 '../src/utils/debugger/SkObjectParser.cpp',
42 ], 42 ],
43 'dependencies': [ 43 'dependencies': [
44 'skia_lib.gyp:skia_lib', 44 'skia_lib.gyp:skia_lib',
45 'flags.gyp:flags', 45 'flags.gyp:flags',
46 'jsoncpp.gyp:jsoncpp', 46 'jsoncpp.gyp:jsoncpp',
47 'gputest.gyp:skgputest', 47 'gputest.gyp:skgputest',
48 ], 48 ],
49 }] 49 }]
50 } 50 }
OLDNEW
« no previous file with comments | « dm/DMWriteTask.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698