| OLD | NEW |
| 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/utils', | 14 '../src/utils', |
| 15 '../src/utils/debugger', | 15 '../src/utils/debugger', |
| 16 ], | 16 ], |
| 17 'includes': [ 'gmslides.gypi' ], | 17 'includes': [ 'gmslides.gypi' ], |
| 18 'sources': [ | 18 'sources': [ |
| 19 '../dm/DM.cpp', | 19 '../dm/DM.cpp', |
| 20 '../dm/DMComparisonTask.cpp', | 20 '../dm/DMComparisonTask.cpp', |
| 21 '../dm/DMCpuTask.cpp', | 21 '../dm/DMCpuTask.cpp', |
| 22 '../dm/DMGpuTask.cpp', | 22 '../dm/DMGpuTask.cpp', |
| 23 '../dm/DMReplayTask.cpp', | 23 '../dm/DMReplayTask.cpp', |
| 24 '../dm/DMReporter.cpp', | 24 '../dm/DMReporter.cpp', |
| 25 '../dm/DMTask.cpp', | 25 '../dm/DMTask.cpp', |
| 26 '../dm/DMTaskRunner.cpp', | 26 '../dm/DMTaskRunner.cpp', |
| 27 '../dm/DMUtil.cpp', | 27 '../dm/DMUtil.cpp', |
| 28 '../dm/DMWriteTask.cpp', |
| 28 '../gm/gm.cpp', | 29 '../gm/gm.cpp', |
| 29 '../gm/gm_expectations.cpp', | 30 '../gm/gm_expectations.cpp', |
| 30 | 31 |
| 31 # TODO: split these out as a library in src/utils/debugger. | 32 # TODO: split these out as a library in src/utils/debugger. |
| 32 '../src/utils/debugger/SkDebugCanvas.cpp', | 33 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 33 '../src/utils/debugger/SkDrawCommand.cpp', | 34 '../src/utils/debugger/SkDrawCommand.cpp', |
| 34 '../src/utils/debugger/SkObjectParser.cpp', | 35 '../src/utils/debugger/SkObjectParser.cpp', |
| 35 ], | 36 ], |
| 36 'dependencies': [ | 37 'dependencies': [ |
| 37 'skia_lib.gyp:skia_lib', | 38 'skia_lib.gyp:skia_lib', |
| 38 'flags.gyp:flags', | 39 'flags.gyp:flags', |
| 39 'jsoncpp.gyp:jsoncpp', | 40 'jsoncpp.gyp:jsoncpp', |
| 40 'gputest.gyp:skgputest', | 41 'gputest.gyp:skgputest', |
| 41 ], | 42 ], |
| 42 }] | 43 }] |
| 43 } | 44 } |
| OLD | NEW |