ac2e663762
http://codereview.appspot.com/4528112/ git-svn-id: http://skia.googlecode.com/svn/trunk@1461 2bbb7eff-a529-9590-31e7-b0007b416f81
55 lines
1.3 KiB
Python
55 lines
1.3 KiB
Python
{
|
|
'includes': [
|
|
'target_defaults.gypi',
|
|
],
|
|
'targets': [
|
|
{
|
|
'target_name': 'bench',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'../bench/benchmain.cpp',
|
|
|
|
'../bench/SkBenchmark.h',
|
|
'../bench/SkBenchmark.cpp',
|
|
|
|
'../bench/BitmapBench.cpp',
|
|
'../bench/DecodeBench.cpp',
|
|
'../bench/FPSBench.cpp',
|
|
'../bench/GradientBench.cpp',
|
|
'../bench/PathBench.cpp',
|
|
'../bench/RectBench.cpp',
|
|
'../bench/RepeatTileBench.cpp',
|
|
'../bench/TextBench.cpp',
|
|
],
|
|
'dependencies': [
|
|
'core.gyp:core',
|
|
'effects.gyp:effects',
|
|
'gpu.gyp:gr',
|
|
'gpu.gyp:skgr',
|
|
'images.gyp:images',
|
|
'utils.gyp:utils',
|
|
],
|
|
'msvs_settings': {
|
|
'VCLinkerTool': {
|
|
#Allows for creation / output to console.
|
|
#Console (/SUBSYSTEM:CONSOLE)
|
|
'SubSystem': '1',
|
|
|
|
#Console app, use main/wmain
|
|
'EntryPointSymbol': 'mainCRTStartup',
|
|
|
|
'AdditionalDependencies': [
|
|
'OpenGL32.lib',
|
|
'usp10.lib',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
],
|
|
}
|
|
|
|
# Local Variables:
|
|
# tab-width:2
|
|
# indent-tabs-mode:nil
|
|
# End:
|
|
# vim: set expandtab tabstop=2 shiftwidth=2: |