blob: b8f3e589729fcd3e144555b6d67c6d81687c4216 [file] [log] [blame]
seanpaul@google.com1134f982011-09-15 14:24:33 +00001# sources and conditions used in skia's bench.gyp and chromium's skia.gyp
2#
3{
4 'sources': [
5 '../bench/benchmain.cpp',
6 '../bench/BenchTimer.h',
7 '../bench/BenchTimer.cpp',
8 '../bench/BenchSysTimer_mach.h',
9 '../bench/BenchSysTimer_mach.cpp',
10 '../bench/BenchSysTimer_posix.h',
11 '../bench/BenchSysTimer_posix.cpp',
12 '../bench/BenchSysTimer_windows.h',
13 '../bench/BenchSysTimer_windows.cpp',
14 '../bench/BenchGpuTimer_gl.h',
15 '../bench/BenchGpuTimer_gl.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000016
17 '../bench/SkBenchmark.h',
18 '../bench/SkBenchmark.cpp',
19
reed@google.com57c49572011-10-31 14:33:35 +000020 '../bench/AAClipBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000021 '../bench/BitmapBench.cpp',
22 '../bench/BlurBench.cpp',
tomhudson@google.com71dd3e02011-10-27 13:27:20 +000023 '../bench/ChromeBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000024 '../bench/DecodeBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000025 '../bench/GradientBench.cpp',
26 '../bench/MathBench.cpp',
27 '../bench/MatrixBench.cpp',
28 '../bench/PathBench.cpp',
29 '../bench/RectBench.cpp',
30 '../bench/RepeatTileBench.cpp',
31 '../bench/ScalarBench.cpp',
32 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000033 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000034 ],
35 'conditions': [
36 [ 'skia_os != "mac"', {
37 'sources!': [
38 '../bench/BenchSysTimer_mach.h',
39 '../bench/BenchSysTimer_mach.cpp',
40 ],
41 }],
42 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris"]', {
43 'sources!': [
44 '../bench/BenchSysTimer_posix.h',
45 '../bench/BenchSysTimer_posix.cpp',
46 ],
47 },{
48 'link_settings': {
49 'libraries': [
50 '-lrt',
51 ],
52 },
53 }],
54 [ 'skia_os != "win"', {
55 'sources!': [
56 '../bench/BenchSysTimer_windows.h',
57 '../bench/BenchSysTimer_windows.cpp',
58 ],
59 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000060 ],
61}
62
63# Local Variables:
64# tab-width:2
65# indent-tabs-mode:nil
66# End:
67# vim: set expandtab tabstop=2 shiftwidth=2: