d4af56c5f2
As suggested in email from saintlou@google.com Review URL: http://codereview.appspot.com/4806047 git-svn-id: http://skia.googlecode.com/svn/trunk@1948 2bbb7eff-a529-9590-31e7-b0007b416f81
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
# GYP file to build the "gm" (golden master) executable.
|
|
{
|
|
'includes': [
|
|
'apptype_console.gypi',
|
|
'common.gypi',
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'gm',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'../gm/bitmapfilters.cpp',
|
|
'../gm/bitmapscroll.cpp',
|
|
'../gm/blurs.cpp',
|
|
'../gm/filltypes.cpp',
|
|
'../gm/gradients.cpp',
|
|
'../gm/lcdtext.cpp',
|
|
'../gm/nocolorbleed.cpp',
|
|
'../gm/pathfill.cpp',
|
|
'../gm/points.cpp',
|
|
'../gm/poly2poly.cpp',
|
|
'../gm/shadows.cpp',
|
|
'../gm/shapes.cpp',
|
|
'../gm/strokerects.cpp',
|
|
'../gm/strokes.cpp',
|
|
'../gm/texdata.cpp',
|
|
'../gm/tilemodes.cpp',
|
|
'../gm/tinybitmap.cpp',
|
|
'../gm/xfermodes.cpp',
|
|
'../gm/shadertext.cpp',
|
|
'../gm/complexclip.cpp',
|
|
'../gm/gmmain.cpp',
|
|
],
|
|
'dependencies': [
|
|
'core.gyp:core',
|
|
'effects.gyp:effects',
|
|
'gpu.gyp:gr',
|
|
'gpu.gyp:skgr',
|
|
'images.gyp:images',
|
|
'pdf.gyp:pdf',
|
|
'utils.gyp:utils',
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|