blob: 6ac64d1dbe3de37f08f27e1378b37ecc459ff80a [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 }],
djsollen@google.com58629292011-11-03 13:08:29 +000043 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000044 'sources!': [
45 '../bench/BenchSysTimer_posix.h',
46 '../bench/BenchSysTimer_posix.cpp',
47 ],
djsollen@google.com58629292011-11-03 13:08:29 +000048 }],
49 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000050 'link_settings': {
51 'libraries': [
52 '-lrt',
53 ],
54 },
55 }],
56 [ 'skia_os != "win"', {
57 'sources!': [
58 '../bench/BenchSysTimer_windows.h',
59 '../bench/BenchSysTimer_windows.cpp',
60 ],
61 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000062 ],
63}
64
65# Local Variables:
66# tab-width:2
67# indent-tabs-mode:nil
68# End:
69# vim: set expandtab tabstop=2 shiftwidth=2: