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

Side by Side Diff: gyp/dm.gyp

Issue 47773002: DM: add --pipe (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: epoger Created 7 years, 1 month 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/README ('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/core', 12 '../src/core',
13 '../src/effects', 13 '../src/effects',
14 '../src/pipe/utils/',
14 '../src/utils', 15 '../src/utils',
15 '../src/utils/debugger', 16 '../src/utils/debugger',
16 ], 17 ],
17 'includes': [ 'gmslides.gypi' ], 18 'includes': [ 'gmslides.gypi' ],
18 'sources': [ 19 'sources': [
19 '../dm/DM.cpp', 20 '../dm/DM.cpp',
20 '../dm/DMComparisonTask.cpp', 21 '../dm/DMComparisonTask.cpp',
21 '../dm/DMCpuTask.cpp', 22 '../dm/DMCpuTask.cpp',
22 '../dm/DMGpuTask.cpp', 23 '../dm/DMGpuTask.cpp',
24 '../dm/DMPipeTask.cpp',
23 '../dm/DMReplayTask.cpp', 25 '../dm/DMReplayTask.cpp',
24 '../dm/DMReporter.cpp', 26 '../dm/DMReporter.cpp',
25 '../dm/DMSerializeTask.cpp', 27 '../dm/DMSerializeTask.cpp',
26 '../dm/DMTask.cpp', 28 '../dm/DMTask.cpp',
27 '../dm/DMTaskRunner.cpp', 29 '../dm/DMTaskRunner.cpp',
28 '../dm/DMUtil.cpp', 30 '../dm/DMUtil.cpp',
29 '../dm/DMWriteTask.cpp', 31 '../dm/DMWriteTask.cpp',
30 '../gm/gm.cpp', 32 '../gm/gm.cpp',
31 '../gm/gm_expectations.cpp', 33 '../gm/gm_expectations.cpp',
32 34
33 # TODO: split these out as a library in src/utils/debugger. 35 '../src/pipe/utils/SamplePipeControllers.cpp',
34 '../src/utils/debugger/SkDebugCanvas.cpp', 36 '../src/utils/debugger/SkDebugCanvas.cpp',
35 '../src/utils/debugger/SkDrawCommand.cpp', 37 '../src/utils/debugger/SkDrawCommand.cpp',
36 '../src/utils/debugger/SkObjectParser.cpp', 38 '../src/utils/debugger/SkObjectParser.cpp',
37 ], 39 ],
38 'dependencies': [ 40 'dependencies': [
39 'skia_lib.gyp:skia_lib', 41 'skia_lib.gyp:skia_lib',
40 'flags.gyp:flags', 42 'flags.gyp:flags',
41 'jsoncpp.gyp:jsoncpp', 43 'jsoncpp.gyp:jsoncpp',
42 'gputest.gyp:skgputest', 44 'gputest.gyp:skgputest',
43 ], 45 ],
44 }] 46 }]
45 } 47 }
OLDNEW
« no previous file with comments | « dm/README ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698