197ceda929
It's getting tricky to coordinate changes to output for bots with -r, and -r is not widely used. The suggested alternative is to run skdiff. BUG=skia: R=jcgregorio@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/553583004
62 lines
1.4 KiB
Python
62 lines
1.4 KiB
Python
# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
|
|
{
|
|
'include_dirs': [
|
|
'../dm',
|
|
'../gm',
|
|
'../tests',
|
|
'../src/images',
|
|
'../src/lazy',
|
|
'../src/core',
|
|
'../src/effects',
|
|
'../src/pipe/utils/',
|
|
'../src/utils',
|
|
'../src/utils/debugger',
|
|
'../tools',
|
|
],
|
|
'dependencies': [
|
|
'etc1.gyp:libetc1',
|
|
'flags.gyp:flags',
|
|
'jsoncpp.gyp:jsoncpp',
|
|
'skia_lib.gyp:skia_lib',
|
|
'tools.gyp:crash_handler',
|
|
'tools.gyp:proc_stats',
|
|
'tools.gyp:sk_tool_utils',
|
|
],
|
|
'includes': [
|
|
'gmslides.gypi',
|
|
'pathops_unittest.gypi',
|
|
'tests.gypi',
|
|
],
|
|
'sources': [
|
|
'../dm/DM.cpp',
|
|
'../dm/DMCpuGMTask.cpp',
|
|
'../dm/DMGpuGMTask.cpp',
|
|
'../dm/DMPDFRasterizeTask.cpp',
|
|
'../dm/DMPDFTask.cpp',
|
|
'../dm/DMPipeTask.cpp',
|
|
'../dm/DMQuiltTask.cpp',
|
|
'../dm/DMReporter.cpp',
|
|
'../dm/DMSKPTask.cpp',
|
|
'../dm/DMSerializeTask.cpp',
|
|
'../dm/DMTask.cpp',
|
|
'../dm/DMTaskRunner.cpp',
|
|
'../dm/DMTestTask.cpp',
|
|
'../dm/DMUtil.cpp',
|
|
'../dm/DMWriteTask.cpp',
|
|
'../gm/gm.cpp',
|
|
|
|
'../src/utils/SkTaskGroup.cpp',
|
|
|
|
'../src/pipe/utils/SamplePipeControllers.cpp',
|
|
'../src/utils/debugger/SkDebugCanvas.cpp',
|
|
'../src/utils/debugger/SkDrawCommand.cpp',
|
|
'../src/utils/debugger/SkObjectParser.cpp',
|
|
'../tools/LazyDecodeBitmap.cpp',
|
|
],
|
|
'conditions': [
|
|
[ 'skia_gpu == 1', {
|
|
'dependencies': [ 'gputest.gyp:skgputest' ],
|
|
}],
|
|
],
|
|
}
|