blob: 8499ca137f182c59d07d806c7420df4c278c1f63 [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',
reed@google.com4aa1a702012-05-04 16:37:45 +000024 '../bench/DashBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000025 '../bench/DecodeBench.cpp',
reed@google.com6e5a45c2011-11-02 21:02:57 +000026 '../bench/FontScalerBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000027 '../bench/GradientBench.cpp',
reed@google.comb8c39172012-03-07 12:36:07 +000028 '../bench/InterpBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000029 '../bench/MathBench.cpp',
30 '../bench/MatrixBench.cpp',
tomhudson@google.com410e9dc2011-11-14 17:30:08 +000031 '../bench/MutexBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000032 '../bench/PathBench.cpp',
reed@google.comc56a83c2012-05-07 13:46:32 +000033 '../bench/PathIterBench.cpp',
djsollen@google.com809a2a92012-02-23 20:57:09 +000034 '../bench/PicturePlaybackBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000035 '../bench/RectBench.cpp',
reed@google.com8c2cc1a2012-04-27 19:29:52 +000036 '../bench/RegionBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000037 '../bench/RepeatTileBench.cpp',
38 '../bench/ScalarBench.cpp',
reed@google.comcc586512011-11-15 15:29:45 +000039 '../bench/ShaderMaskBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000040 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000041 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000042 ],
43 'conditions': [
44 [ 'skia_os != "mac"', {
45 'sources!': [
46 '../bench/BenchSysTimer_mach.h',
47 '../bench/BenchSysTimer_mach.cpp',
48 ],
49 }],
djsollen@google.com58629292011-11-03 13:08:29 +000050 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000051 'sources!': [
52 '../bench/BenchSysTimer_posix.h',
53 '../bench/BenchSysTimer_posix.cpp',
54 ],
djsollen@google.com58629292011-11-03 13:08:29 +000055 }],
56 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000057 'link_settings': {
58 'libraries': [
59 '-lrt',
60 ],
61 },
62 }],
63 [ 'skia_os != "win"', {
64 'sources!': [
65 '../bench/BenchSysTimer_windows.h',
66 '../bench/BenchSysTimer_windows.cpp',
67 ],
68 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000069 ],
70}
71
72# Local Variables:
73# tab-width:2
74# indent-tabs-mode:nil
75# End:
76# vim: set expandtab tabstop=2 shiftwidth=2: