192cbf67b2
Plus: - minor ReplayTask refactoring to share code with SerializeTask - move --replay to ReplayTask and --serialize to SerializeTask like WriteTask - when --writePath is given, write failures for Replay and Serialize tasks - function names have fewer blatant Skia style violations BUG= R=bsalomon@google.com Author: mtklein@google.com Review URL: https://codereview.chromium.org/32613003 git-svn-id: http://skia.googlecode.com/svn/trunk@11890 2bbb7eff-a529-9590-31e7-b0007b416f81
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
|
|
# vim: set expandtab tabstop=4 shiftwidth=4
|
|
{
|
|
'includes': [ 'apptype_console.gypi' ],
|
|
|
|
'targets': [{
|
|
'target_name': 'dm',
|
|
'type': 'executable',
|
|
'include_dirs': [
|
|
'../dm',
|
|
'../gm',
|
|
'../src/core',
|
|
'../src/effects',
|
|
'../src/utils',
|
|
'../src/utils/debugger',
|
|
],
|
|
'includes': [ 'gmslides.gypi' ],
|
|
'sources': [
|
|
'../dm/DM.cpp',
|
|
'../dm/DMComparisonTask.cpp',
|
|
'../dm/DMCpuTask.cpp',
|
|
'../dm/DMGpuTask.cpp',
|
|
'../dm/DMReplayTask.cpp',
|
|
'../dm/DMReporter.cpp',
|
|
'../dm/DMSerializeTask.cpp',
|
|
'../dm/DMTask.cpp',
|
|
'../dm/DMTaskRunner.cpp',
|
|
'../dm/DMUtil.cpp',
|
|
'../dm/DMWriteTask.cpp',
|
|
'../gm/gm.cpp',
|
|
'../gm/gm_expectations.cpp',
|
|
|
|
# TODO: split these out as a library in src/utils/debugger.
|
|
'../src/utils/debugger/SkDebugCanvas.cpp',
|
|
'../src/utils/debugger/SkDrawCommand.cpp',
|
|
'../src/utils/debugger/SkObjectParser.cpp',
|
|
],
|
|
'dependencies': [
|
|
'skia_lib.gyp:skia_lib',
|
|
'flags.gyp:flags',
|
|
'jsoncpp.gyp:jsoncpp',
|
|
'gputest.gyp:skgputest',
|
|
],
|
|
}]
|
|
}
|