blob: 1ca3f062353887093e03a08fa3946073e5e71051 [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',
34 '../bench/RepeatTileBench.cpp',
35 '../bench/ScalarBench.cpp',
reed@google.comcc586512011-11-15 15:29:45 +000036 '../bench/ShaderMaskBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000037 '../bench/TextBench.cpp',
reed@google.com05d63ae2011-10-28 18:57:32 +000038 '../bench/VertBench.cpp',
seanpaul@google.com1134f982011-09-15 14:24:33 +000039 ],
40 'conditions': [
41 [ 'skia_os != "mac"', {
42 'sources!': [
43 '../bench/BenchSysTimer_mach.h',
44 '../bench/BenchSysTimer_mach.cpp',
45 ],
46 }],
djsollen@google.com58629292011-11-03 13:08:29 +000047 [ 'skia_os not in ["linux", "freebsd", "openbsd", "solaris", "android"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000048 'sources!': [
49 '../bench/BenchSysTimer_posix.h',
50 '../bench/BenchSysTimer_posix.cpp',
51 ],
djsollen@google.com58629292011-11-03 13:08:29 +000052 }],
53 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
seanpaul@google.com1134f982011-09-15 14:24:33 +000054 'link_settings': {
55 'libraries': [
56 '-lrt',
57 ],
58 },
59 }],
60 [ 'skia_os != "win"', {
61 'sources!': [
62 '../bench/BenchSysTimer_windows.h',
63 '../bench/BenchSysTimer_windows.cpp',
64 ],
65 }],
seanpaul@google.com1134f982011-09-15 14:24:33 +000066 ],
67}
68
69# Local Variables:
70# tab-width:2
71# indent-tabs-mode:nil
72# End:
73# vim: set expandtab tabstop=2 shiftwidth=2: