47ef4d5d93
- SkDocument::CreateXPS() function added, returns NULL on non-Windows OS. - DM: (Windows only) an XPSSink is added, fails on non-Windows OS - DM: Common code for PDFSink::draw and XPSSink::draw are factored into draw_skdocument static function. - SkDocument_XPS (Windows only) implementation of SkDocument via SkXPSDevice. - SkDocument_XPS_None (non-Windows) returns NULL for SkDocument::CreateXPS(). - gyp/xps.gyp refactored. - SkXPSDevice::drawTextOnPath removed (see http://crrev.com/925343003 ) - SkXPSDevice::drawPath supports conics via SkAutoConicToQuads. Review URL: https://codereview.chromium.org/963953002
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
# GYP for "dm" (Diamond Master, a.k.a Dungeon master, a.k.a GM 2).
|
|
{
|
|
'include_dirs': [
|
|
'../dm',
|
|
'../gm',
|
|
'../src/core',
|
|
'../src/effects',
|
|
'../src/images',
|
|
'../src/lazy',
|
|
'../src/pipe/utils/',
|
|
'../src/utils',
|
|
'../src/utils/debugger',
|
|
'../tests',
|
|
'../tools',
|
|
],
|
|
'dependencies': [
|
|
'etc1.gyp:libetc1',
|
|
'flags.gyp:flags',
|
|
'jsoncpp.gyp:jsoncpp',
|
|
'skia_lib.gyp:skia_lib',
|
|
'svg.gyp:svg',
|
|
'tools.gyp:crash_handler',
|
|
'tools.gyp:proc_stats',
|
|
'tools.gyp:sk_tool_utils',
|
|
'tools.gyp:timer',
|
|
'xml.gyp:xml',
|
|
'xps.gyp:xps',
|
|
],
|
|
'includes': [
|
|
'gmslides.gypi',
|
|
'pathops_unittest.gypi',
|
|
'tests.gypi',
|
|
],
|
|
'sources': [
|
|
'../dm/DM.cpp',
|
|
'../dm/DMSrcSink.cpp',
|
|
'../dm/DMJsonWriter.cpp',
|
|
'../gm/gm.cpp',
|
|
|
|
'../src/pipe/utils/SamplePipeControllers.cpp',
|
|
'../src/utils/debugger/SkDebugCanvas.cpp',
|
|
'../src/utils/debugger/SkDrawCommand.cpp',
|
|
'../src/utils/debugger/SkObjectParser.cpp',
|
|
],
|
|
'conditions': [
|
|
[ 'skia_gpu == 1', {
|
|
'dependencies': [ 'gputest.gyp:skgputest' ],
|
|
}],
|
|
],
|
|
}
|