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

Side by Side Diff: gyp/dm.gyp

Issue 178273002: Let DM run unit tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 6 years, 10 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 | « dm/DMTestTask.cpp ('k') | gyp/tests.gyp » ('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 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 '../tests',
12 '../src/images', 13 '../src/images',
13 '../src/lazy', 14 '../src/lazy',
14 '../src/core', 15 '../src/core',
15 '../src/effects', 16 '../src/effects',
16 '../src/pipe/utils/', 17 '../src/pipe/utils/',
17 '../src/utils', 18 '../src/utils',
18 '../src/utils/debugger', 19 '../src/utils/debugger',
19 '../tools', 20 '../tools',
20 ], 21 ],
21 'includes': [ 'gmslides.gypi' ], 22 'includes': [
23 'gmslides.gypi',
24 'pathops_unittest.gypi',
25 'tests.gypi',
26 ],
22 'sources': [ 27 'sources': [
23 '../dm/DM.cpp', 28 '../dm/DM.cpp',
24 '../dm/DMCpuTask.cpp', 29 '../dm/DMCpuTask.cpp',
25 '../dm/DMExpectationsTask.cpp', 30 '../dm/DMExpectationsTask.cpp',
26 '../dm/DMGpuTask.cpp', 31 '../dm/DMGpuTask.cpp',
27 '../dm/DMPipeTask.cpp', 32 '../dm/DMPipeTask.cpp',
28 '../dm/DMReplayTask.cpp', 33 '../dm/DMReplayTask.cpp',
29 '../dm/DMReporter.cpp', 34 '../dm/DMReporter.cpp',
30 '../dm/DMSerializeTask.cpp', 35 '../dm/DMSerializeTask.cpp',
31 '../dm/DMTask.cpp', 36 '../dm/DMTask.cpp',
32 '../dm/DMTaskRunner.cpp', 37 '../dm/DMTaskRunner.cpp',
38 '../dm/DMTestTask.cpp',
33 '../dm/DMTileGridTask.cpp', 39 '../dm/DMTileGridTask.cpp',
34 '../dm/DMUtil.cpp', 40 '../dm/DMUtil.cpp',
35 '../dm/DMWriteTask.cpp', 41 '../dm/DMWriteTask.cpp',
36 '../gm/gm.cpp', 42 '../gm/gm.cpp',
37 '../gm/gm_expectations.cpp', 43 '../gm/gm_expectations.cpp',
38 44
39 '../src/pipe/utils/SamplePipeControllers.cpp', 45 '../src/pipe/utils/SamplePipeControllers.cpp',
40 '../src/utils/debugger/SkDebugCanvas.cpp', 46 '../src/utils/debugger/SkDebugCanvas.cpp',
41 '../src/utils/debugger/SkDrawCommand.cpp', 47 '../src/utils/debugger/SkDrawCommand.cpp',
42 '../src/utils/debugger/SkObjectParser.cpp', 48 '../src/utils/debugger/SkObjectParser.cpp',
43 ], 49 ],
44 'dependencies': [ 50 'dependencies': [
45 'skia_lib.gyp:skia_lib', 51 'skia_lib.gyp:skia_lib',
46 'flags.gyp:flags', 52 'flags.gyp:flags',
47 'jsoncpp.gyp:jsoncpp', 53 'jsoncpp.gyp:jsoncpp',
48 'gputest.gyp:skgputest', 54 'gputest.gyp:skgputest',
49 ], 55 ],
50 }] 56 }]
51 } 57 }
OLDNEW
« no previous file with comments | « dm/DMTestTask.cpp ('k') | gyp/tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698