Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2). | |
| 2 # vim: set expandtab tabstop=4 shiftwidth=4 | |
|
scroggo
2014/07/11 21:12:14
I like the explanatory comment on line 1, but I th
caryclark
2014/07/14 12:24:46
Done.
| |
| 3 { | |
| 4 'include_dirs': [ | |
| 5 '../bench', | |
| 6 '../dm', | |
| 7 '../gm', | |
| 8 '../tests', | |
| 9 '../src/images', | |
| 10 '../src/lazy', | |
| 11 '../src/core', | |
| 12 '../src/effects', | |
| 13 '../src/pipe/utils/', | |
| 14 '../src/utils', | |
| 15 '../src/utils/debugger', | |
| 16 '../tools', | |
| 17 ], | |
| 18 'dependencies': [ | |
| 19 'etc1.gyp:libetc1', | |
| 20 'flags.gyp:flags', | |
| 21 'gputest.gyp:skgputest', | |
| 22 'jsoncpp.gyp:jsoncpp', | |
| 23 'skia_lib.gyp:skia_lib', | |
| 24 'tools.gyp:crash_handler', | |
| 25 'tools.gyp:sk_tool_utils', | |
| 26 ], | |
| 27 'sources': [ | |
| 28 '../dm/DM.cpp', | |
| 29 '../dm/DMBenchTask.cpp', | |
| 30 '../dm/DMCpuGMTask.cpp', | |
| 31 '../dm/DMExpectationsTask.cpp', | |
| 32 '../dm/DMGpuGMTask.cpp', | |
| 33 '../dm/DMPDFRasterizeTask.cpp', | |
| 34 '../dm/DMPDFTask.cpp', | |
| 35 '../dm/DMPipeTask.cpp', | |
| 36 '../dm/DMQuiltTask.cpp', | |
| 37 '../dm/DMReporter.cpp', | |
| 38 '../dm/DMSKPTask.cpp', | |
| 39 '../dm/DMSerializeTask.cpp', | |
| 40 '../dm/DMTask.cpp', | |
| 41 '../dm/DMTaskRunner.cpp', | |
| 42 '../dm/DMTestTask.cpp', | |
| 43 '../dm/DMUtil.cpp', | |
| 44 '../dm/DMWriteTask.cpp', | |
| 45 '../gm/gm.cpp', | |
| 46 '../gm/gm_expectations.cpp', | |
| 47 | |
| 48 '../src/pipe/utils/SamplePipeControllers.cpp', | |
| 49 '../src/utils/debugger/SkDebugCanvas.cpp', | |
| 50 '../src/utils/debugger/SkDrawCommand.cpp', | |
| 51 '../src/utils/debugger/SkObjectParser.cpp', | |
| 52 ], | |
| 53 } | |
| OLD | NEW |