blob: 5fbfef7cdea2d6a3d620bda1eff021ed5df1f301 [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',
reed@google.comcc586512011-11-15 15:29:45 +000034 '../bench/ShaderMaskBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000035 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000036 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000037 ],
38 'conditions': [
39 [ 'skia_os != "mac"', {
40 'sources!': [
41 '../bench/BenchSysTimer_mach.h',
42 '../bench/BenchSysTimer_mach.cpp',
43 ],
44 }],
djsollen@google.com58629292011-11-03 13:08:29 +000045 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000046 'sources!': [
47 '../bench/BenchSysTimer_posix.h',
48 '../bench/BenchSysTimer_posix.cpp',
49 ],
djsollen@google.com58629292011-11-03 13:08:29 +000050 }],
51 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000052 'link_settings': {
53 'libraries': [
54 '-lrt',
55 ],
56 },
57 }],
58 [ 'skia_os != "win"', {
59 'sources!': [
60 '../bench/BenchSysTimer_windows.h',
61 '../bench/BenchSysTimer_windows.cpp',
62 ],
63 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000064 ],
65}
66
67# Local Variables:
68# tab-width:2
69# indent-tabs-mode:nil
70# End:
71# vim: set expandtab tabstop=2 shiftwidth=2: