| 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 '../bench', | 10 '../bench', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 '../dm/DMBenchTask.cpp', | 31 '../dm/DMBenchTask.cpp', |
| 32 '../dm/DMCpuGMTask.cpp', | 32 '../dm/DMCpuGMTask.cpp', |
| 33 '../dm/DMExpectationsTask.cpp', | 33 '../dm/DMExpectationsTask.cpp', |
| 34 '../dm/DMGpuGMTask.cpp', | 34 '../dm/DMGpuGMTask.cpp', |
| 35 '../dm/DMPipeTask.cpp', | 35 '../dm/DMPipeTask.cpp', |
| 36 '../dm/DMQuiltTask.cpp', | 36 '../dm/DMQuiltTask.cpp', |
| 37 '../dm/DMRecordTask.cpp', | 37 '../dm/DMRecordTask.cpp', |
| 38 '../dm/DMReplayTask.cpp', | 38 '../dm/DMReplayTask.cpp', |
| 39 '../dm/DMReporter.cpp', | 39 '../dm/DMReporter.cpp', |
| 40 '../dm/DMSerializeTask.cpp', | 40 '../dm/DMSerializeTask.cpp', |
| 41 '../dm/DMSKPTask.cpp', |
| 41 '../dm/DMTask.cpp', | 42 '../dm/DMTask.cpp', |
| 42 '../dm/DMTaskRunner.cpp', | 43 '../dm/DMTaskRunner.cpp', |
| 43 '../dm/DMTestTask.cpp', | 44 '../dm/DMTestTask.cpp', |
| 44 '../dm/DMUtil.cpp', | 45 '../dm/DMUtil.cpp', |
| 45 '../dm/DMWriteTask.cpp', | 46 '../dm/DMWriteTask.cpp', |
| 46 '../gm/gm.cpp', | 47 '../gm/gm.cpp', |
| 47 '../gm/gm_expectations.cpp', | 48 '../gm/gm_expectations.cpp', |
| 48 | 49 |
| 49 '../src/pipe/utils/SamplePipeControllers.cpp', | 50 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 50 '../src/utils/debugger/SkDebugCanvas.cpp', | 51 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 51 '../src/utils/debugger/SkDrawCommand.cpp', | 52 '../src/utils/debugger/SkDrawCommand.cpp', |
| 52 '../src/utils/debugger/SkObjectParser.cpp', | 53 '../src/utils/debugger/SkObjectParser.cpp', |
| 53 ], | 54 ], |
| 54 'dependencies': [ | 55 'dependencies': [ |
| 55 'skia_lib.gyp:skia_lib', | 56 'skia_lib.gyp:skia_lib', |
| 56 'flags.gyp:flags', | 57 'flags.gyp:flags', |
| 57 'jsoncpp.gyp:jsoncpp', | 58 'jsoncpp.gyp:jsoncpp', |
| 58 'gputest.gyp:skgputest', | 59 'gputest.gyp:skgputest', |
| 59 'record.gyp:*', | 60 'record.gyp:*', |
| 60 ], | 61 ], |
| 61 }] | 62 }] |
| 62 } | 63 } |
| OLD | NEW |