blob: 1ff09466e942c7e91eb7a9fa9897722bda1abb9f [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',
reed@google.comb8c39172012-03-07 12:36:07 +000027 '../bench/InterpBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000028 '../bench/MathBench.cpp',
29 '../bench/MatrixBench.cpp',
tomhudson@google.com410e9dc2011-11-14 17:30:08 +000030 '../bench/MutexBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000031 '../bench/PathBench.cpp',
djsollen@google.com809a2a92012-02-23 20:57:09 +000032 '../bench/PicturePlaybackBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000033 '../bench/RectBench.cpp',
reed@google.com8c2cc1a2012-04-27 19:29:52 +000034 '../bench/RegionBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000035 '../bench/RepeatTileBench.cpp',
36 '../bench/ScalarBench.cpp',
reed@google.comcc586512011-11-15 15:29:45 +000037 '../bench/ShaderMaskBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000038 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000039 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000040 ],
41 'conditions': [
42 [ 'skia_os != "mac"', {
43 'sources!': [
44 '../bench/BenchSysTimer_mach.h',
45 '../bench/BenchSysTimer_mach.cpp',
46 ],
47 }],
djsollen@google.com58629292011-11-03 13:08:29 +000048 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000049 'sources!': [
50 '../bench/BenchSysTimer_posix.h',
51 '../bench/BenchSysTimer_posix.cpp',
52 ],
djsollen@google.com58629292011-11-03 13:08:29 +000053 }],
54 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000055 'link_settings': {
56 'libraries': [
57 '-lrt',
58 ],
59 },
60 }],
61 [ 'skia_os != "win"', {
62 'sources!': [
63 '../bench/BenchSysTimer_windows.h',
64 '../bench/BenchSysTimer_windows.cpp',
65 ],
66 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000067 ],
68}
69
70# Local Variables:
71# tab-width:2
72# indent-tabs-mode:nil
73# End:
74# vim: set expandtab tabstop=2 shiftwidth=2: