blob: 35f32661ac1466cac1daa1ae3f199f69c873a686 [file] [log] [blame]
bungeman@google.com206c98a2011-05-31 21:21:54 +00001{
2 'includes': [
3 'target_defaults.gypi',
4 ],
5 'targets': [
6 {
7 'target_name': 'bench',
8 'type': 'executable',
9 'mac_bundle' : 1,
10 'include_dirs': [
11 '../include/effects',
12 '../include/utils',
13 '../include/images',
14 ],
15 'sources': [
16 '../bench/benchmain.cpp',
17
18 '../bench/SkBenchmark.h',
19 '../bench/SkBenchmark.cpp',
20
21 '../bench/BitmapBench.cpp',
22 '../bench/DecodeBench.cpp',
23 '../bench/FPSBench.cpp',
24 '../bench/GradientBench.cpp',
25 '../bench/PathBench.cpp',
26 '../bench/RectBench.cpp',
27 '../bench/RepeatTileBench.cpp',
28 '../bench/TextBench.cpp',
29 ],
30 'dependencies': [
31 'core.gyp:core',
32 'effects.gyp:effects',
33 'images.gyp:images',
34 'utils.gyp:utils',
35 'gpu.gyp:gr',
36 'gpu.gyp:skgr',
37 ],
38 'msvs_settings': {
39 'VCLinkerTool': {
40 'SubSystem': '1',
41 'EntryPointSymbol': 'mainCRTStartup',
42 'AdditionalDependencies': [
43 'OpenGL32.lib',
44 'usp10.lib',
45 ],
46 },
47 },
48 },
49 ],
50}
51
52# Local Variables:
53# tab-width:2
54# indent-tabs-mode:nil
55# End:
56# vim: set expandtab tabstop=2 shiftwidth=2: