| 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', |
| 11 '../dm', | 11 '../dm', |
| 12 '../gm', | 12 '../gm', |
| 13 '../tests', | 13 '../tests', |
| 14 '../src/images', | 14 '../src/images', |
| 15 '../src/lazy', | 15 '../src/lazy', |
| 16 '../src/core', | 16 '../src/core', |
| 17 '../src/effects', | 17 '../src/effects', |
| 18 '../src/pipe/utils/', | 18 '../src/pipe/utils/', |
| 19 '../src/record', |
| 19 '../src/utils', | 20 '../src/utils', |
| 20 '../src/utils/debugger', | 21 '../src/utils/debugger', |
| 21 '../tools', | 22 '../tools', |
| 22 ], | 23 ], |
| 23 'includes': [ | 24 'includes': [ |
| 24 'bench.gypi', | 25 'bench.gypi', |
| 25 'gmslides.gypi', | 26 'gmslides.gypi', |
| 26 'pathops_unittest.gypi', | 27 'pathops_unittest.gypi', |
| 27 'tests.gypi', | 28 'tests.gypi', |
| 28 ], | 29 ], |
| 29 'sources': [ | 30 'sources': [ |
| 30 '../dm/DM.cpp', | 31 '../dm/DM.cpp', |
| 31 '../dm/DMBenchTask.cpp', | 32 '../dm/DMBenchTask.cpp', |
| 32 '../dm/DMCpuGMTask.cpp', | 33 '../dm/DMCpuGMTask.cpp', |
| 33 '../dm/DMExpectationsTask.cpp', | 34 '../dm/DMExpectationsTask.cpp', |
| 34 '../dm/DMGpuGMTask.cpp', | 35 '../dm/DMGpuGMTask.cpp', |
| 35 '../dm/DMPipeTask.cpp', | 36 '../dm/DMPipeTask.cpp', |
| 37 '../dm/DMRecordTask.cpp', |
| 36 '../dm/DMReplayTask.cpp', | 38 '../dm/DMReplayTask.cpp', |
| 37 '../dm/DMReporter.cpp', | 39 '../dm/DMReporter.cpp', |
| 38 '../dm/DMSerializeTask.cpp', | 40 '../dm/DMSerializeTask.cpp', |
| 39 '../dm/DMTask.cpp', | 41 '../dm/DMTask.cpp', |
| 40 '../dm/DMTaskRunner.cpp', | 42 '../dm/DMTaskRunner.cpp', |
| 41 '../dm/DMTestTask.cpp', | 43 '../dm/DMTestTask.cpp', |
| 42 '../dm/DMTileGridTask.cpp', | 44 '../dm/DMTileGridTask.cpp', |
| 43 '../dm/DMUtil.cpp', | 45 '../dm/DMUtil.cpp', |
| 44 '../dm/DMWriteTask.cpp', | 46 '../dm/DMWriteTask.cpp', |
| 45 '../gm/gm.cpp', | 47 '../gm/gm.cpp', |
| 46 '../gm/gm_expectations.cpp', | 48 '../gm/gm_expectations.cpp', |
| 47 | 49 |
| 48 '../src/pipe/utils/SamplePipeControllers.cpp', | 50 '../src/pipe/utils/SamplePipeControllers.cpp', |
| 49 '../src/utils/debugger/SkDebugCanvas.cpp', | 51 '../src/utils/debugger/SkDebugCanvas.cpp', |
| 50 '../src/utils/debugger/SkDrawCommand.cpp', | 52 '../src/utils/debugger/SkDrawCommand.cpp', |
| 51 '../src/utils/debugger/SkObjectParser.cpp', | 53 '../src/utils/debugger/SkObjectParser.cpp', |
| 52 ], | 54 ], |
| 53 'dependencies': [ | 55 'dependencies': [ |
| 54 'skia_lib.gyp:skia_lib', | 56 'skia_lib.gyp:skia_lib', |
| 55 'flags.gyp:flags', | 57 'flags.gyp:flags', |
| 56 'jsoncpp.gyp:jsoncpp', | 58 'jsoncpp.gyp:jsoncpp', |
| 57 'gputest.gyp:skgputest', | 59 'gputest.gyp:skgputest', |
| 60 'record.gyp:*', |
| 58 ], | 61 ], |
| 59 }] | 62 }] |
| 60 } | 63 } |
| OLD | NEW |