| 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/pipe/utils/', | 14 '../src/pipe/utils/', |
| 15 '../src/utils', | 15 '../src/utils', |
| 16 '../src/utils/debugger', | 16 '../src/utils/debugger', |
| 17 ], | 17 ], |
| 18 'includes': [ 'gmslides.gypi' ], | 18 'includes': [ 'gmslides.gypi' ], |
| 19 'sources': [ | 19 'sources': [ |
| 20 '../dm/DM.cpp', | 20 '../dm/DM.cpp', |
| 21 '../dm/DMChecksumTask.cpp', | 21 '../dm/DMChecksumTask.cpp', |
| 22 '../dm/DMCpuTask.cpp', | 22 '../dm/DMCpuTask.cpp', |
| 23 '../dm/DMGpuTask.cpp', | 23 '../dm/DMGpuTask.cpp', |
| 24 '../dm/DMPipeTask.cpp', | 24 '../dm/DMPipeTask.cpp', |
| 25 '../dm/DMReplayTask.cpp', | 25 '../dm/DMReplayTask.cpp', |
| 26 '../dm/DMReporter.cpp', | 26 '../dm/DMReporter.cpp', |
| 27 '../dm/DMSerializeTask.cpp', | 27 '../dm/DMSerializeTask.cpp', |
| 28 '../dm/DMTask.cpp', | 28 '../dm/DMTask.cpp', |
| 29 '../dm/DMTaskRunner.cpp', | 29 '../dm/DMTaskRunner.cpp', |
| 30 '../dm/DMTileGridTask.cpp', |
| 30 '../dm/DMUtil.cpp', | 31 '../dm/DMUtil.cpp', |
| 31 '../dm/DMWriteTask.cpp', | 32 '../dm/DMWriteTask.cpp', |
| 32 '../gm/gm.cpp', | 33 '../gm/gm.cpp', |
| 33 '../gm/gm_expectations.cpp', | 34 '../gm/gm_expectations.cpp', |
| 34 | 35 |
| 35 '../src/pipe/utils/SamplePipeControllers.cpp', | 36 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 36 '../src/utils/debugger/SkDebugCanvas.cpp', | 37 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 37 '../src/utils/debugger/SkDrawCommand.cpp', | 38 '../src/utils/debugger/SkDrawCommand.cpp', |
| 38 '../src/utils/debugger/SkObjectParser.cpp', | 39 '../src/utils/debugger/SkObjectParser.cpp', |
| 39 ], | 40 ], |
| 40 'dependencies': [ | 41 'dependencies': [ |
| 41 'skia_lib.gyp:skia_lib', | 42 'skia_lib.gyp:skia_lib', |
| 42 'flags.gyp:flags', | 43 'flags.gyp:flags', |
| 43 'jsoncpp.gyp:jsoncpp', | 44 'jsoncpp.gyp:jsoncpp', |
| 44 'gputest.gyp:skgputest', | 45 'gputest.gyp:skgputest', |
| 45 ], | 46 ], |
| 46 }] | 47 }] |
| 47 } | 48 } |
| OLD | NEW |