blob: f0cdfe12813077bfa419e5adcef6c2fa0767d4b7 [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',
tomhudson@google.com410e9dc2011-11-14 17:30:08 +000029 '../bench/MutexBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000030 '../bench/PathBench.cpp',
31 '../bench/RectBench.cpp',
32 '../bench/RepeatTileBench.cpp',
33 '../bench/ScalarBench.cpp',
34 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000035 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000036 ],
37 'conditions': [
38 [ 'skia_os != "mac"', {
39 'sources!': [
40 '../bench/BenchSysTimer_mach.h',
41 '../bench/BenchSysTimer_mach.cpp',
42 ],
43 }],
djsollen@google.com58629292011-11-03 13:08:29 +000044 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000045 'sources!': [
46 '../bench/BenchSysTimer_posix.h',
47 '../bench/BenchSysTimer_posix.cpp',
48 ],
djsollen@google.com58629292011-11-03 13:08:29 +000049 }],
50 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000051 'link_settings': {
52 'libraries': [
53 '-lrt',
54 ],
55 },
56 }],
57 [ 'skia_os != "win"', {
58 'sources!': [
59 '../bench/BenchSysTimer_windows.h',
60 '../bench/BenchSysTimer_windows.cpp',
61 ],
62 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000063 ],
64}
65
66# Local Variables:
67# tab-width:2
68# indent-tabs-mode:nil
69# End:
70# vim: set expandtab tabstop=2 shiftwidth=2: