blob: e993790c4d98bb296817552fca1a258c982cd5d0 [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',
reed@google.com6e5a45c2011-11-02 21:02:57 +000025 '../bench/FontScalerBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000026 '../bench/GradientBench.cpp',
27 '../bench/MathBench.cpp',
28 '../bench/MatrixBench.cpp',
29 '../bench/PathBench.cpp',
30 '../bench/RectBench.cpp',
31 '../bench/RepeatTileBench.cpp',
32 '../bench/ScalarBench.cpp',
33 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000034 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000035 ],
36 'conditions': [
37 [ 'skia_os != "mac"', {
38 'sources!': [
39 '../bench/BenchSysTimer_mach.h',
40 '../bench/BenchSysTimer_mach.cpp',
41 ],
42 }],
43 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris"]', {
44 'sources!': [
45 '../bench/BenchSysTimer_posix.h',
46 '../bench/BenchSysTimer_posix.cpp',
47 ],
48 },{
49 'link_settings': {
50 'libraries': [
51 '-lrt',
52 ],
53 },
54 }],
55 [ 'skia_os != "win"', {
56 'sources!': [
57 '../bench/BenchSysTimer_windows.h',
58 '../bench/BenchSysTimer_windows.cpp',
59 ],
60 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000061 ],
62}
63
64# Local Variables:
65# tab-width:2
66# indent-tabs-mode:nil
67# End:
68# vim: set expandtab tabstop=2 shiftwidth=2: