blob: 879dee5f09b3e4480d630a5fc3f89b4c7b1fb48e [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
20 '../bench/BitmapBench.cpp',
21 '../bench/BlurBench.cpp',
tomhudson@google.com71dd3e02011-10-27 13:27:20 +000022 '../bench/ChromeBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000023 '../bench/DecodeBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000024 '../bench/GradientBench.cpp',
25 '../bench/MathBench.cpp',
26 '../bench/MatrixBench.cpp',
27 '../bench/PathBench.cpp',
28 '../bench/RectBench.cpp',
29 '../bench/RepeatTileBench.cpp',
30 '../bench/ScalarBench.cpp',
31 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000032 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000033 ],
34 'conditions': [
35 [ 'skia_os != "mac"', {
36 'sources!': [
37 '../bench/BenchSysTimer_mach.h',
38 '../bench/BenchSysTimer_mach.cpp',
39 ],
40 }],
41 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris"]', {
42 'sources!': [
43 '../bench/BenchSysTimer_posix.h',
44 '../bench/BenchSysTimer_posix.cpp',
45 ],
46 },{
47 'link_settings': {
48 'libraries': [
49 '-lrt',
50 ],
51 },
52 }],
53 [ 'skia_os != "win"', {
54 'sources!': [
55 '../bench/BenchSysTimer_windows.h',
56 '../bench/BenchSysTimer_windows.cpp',
57 ],
58 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000059 ],
60}
61
62# Local Variables:
63# tab-width:2
64# indent-tabs-mode:nil
65# End:
66# vim: set expandtab tabstop=2 shiftwidth=2: