OLD | NEW |
---|---|
1 # GYP file to build performance testbench. | 1 # GYP file to build performance testbench. |
2 # | 2 # |
3 { | 3 { |
4 'includes': [ | 4 'includes': [ |
5 'apptype_console.gypi', | 5 'apptype_console.gypi', |
6 ], | 6 ], |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'bench', | 9 'target_name': 'bench', |
10 'type': 'executable', | 10 'type': 'executable', |
11 'include_dirs' : [ | 11 'include_dirs' : [ |
12 '../src/core', | 12 '../src/core', |
13 '../src/effects', | 13 '../src/effects', |
14 '../src/utils', | 14 '../src/utils', |
15 ], | 15 ], |
16 'includes': [ | |
17 'bench.gypi' | |
18 ], | |
19 'dependencies': [ | 16 'dependencies': [ |
20 'skia_lib.gyp:skia_lib', | 17 'skia_lib.gyp:skia_lib', |
21 'bench_timer', | 18 'bench_timer', |
22 'flags.gyp:flags', | 19 'flags.gyp:flags', |
23 ], | 20 ], |
21 'sources': [ | |
22 '../bench/AAClipBench.cpp', | |
23 '../bench/BicubicBench.cpp', | |
24 '../bench/BitmapBench.cpp', | |
25 '../bench/BitmapRectBench.cpp', | |
26 '../bench/BitmapScaleBench.cpp', | |
27 '../bench/BlurBench.cpp', | |
28 '../bench/BlurImageFilterBench.cpp', | |
29 '../bench/BlurRectBench.cpp', | |
30 '../bench/BlurRoundRectBench.cpp', | |
31 '../bench/ChartBench.cpp', | |
32 '../bench/ChecksumBench.cpp', | |
33 '../bench/ChromeBench.cpp', | |
34 '../bench/CmapBench.cpp', | |
35 '../bench/ColorFilterBench.cpp', | |
36 '../bench/CoverageBench.cpp', | |
37 '../bench/DashBench.cpp', | |
38 '../bench/DecodeBench.cpp', | |
39 '../bench/DeferredCanvasBench.cpp', | |
40 '../bench/DeferredSurfaceCopyBench.cpp', | |
41 '../bench/DisplacementBench.cpp', | |
42 '../bench/FSRectBench.cpp', | |
43 '../bench/FontCacheBench.cpp', | |
44 '../bench/FontScalerBench.cpp', | |
45 '../bench/GameBench.cpp', | |
46 '../bench/GrMemoryPoolBench.cpp', | |
47 '../bench/GrResourceCacheBench.cpp', | |
48 '../bench/GradientBench.cpp', | |
49 '../bench/HairlinePathBench.cpp', | |
50 '../bench/ImageCacheBench.cpp', | |
51 '../bench/ImageDecodeBench.cpp', | |
52 '../bench/InterpBench.cpp', | |
53 '../bench/LightingBench.cpp', | |
54 '../bench/LineBench.cpp', | |
55 '../bench/MagnifierBench.cpp', | |
56 '../bench/MathBench.cpp', | |
57 '../bench/Matrix44Bench.cpp', | |
58 '../bench/MatrixBench.cpp', | |
59 '../bench/MatrixConvolutionBench.cpp', | |
60 '../bench/MemoryBench.cpp', | |
61 '../bench/MemsetBench.cpp', | |
62 '../bench/MergeBench.cpp', | |
63 '../bench/MorphologyBench.cpp', | |
64 '../bench/MutexBench.cpp', | |
65 '../bench/PathBench.cpp', | |
66 '../bench/PathIterBench.cpp', | |
67 '../bench/PathUtilsBench.cpp', | |
68 '../bench/PerlinNoiseBench.cpp', | |
69 '../bench/PicturePlaybackBench.cpp', | |
70 '../bench/PictureRecordBench.cpp', | |
71 '../bench/PremulAndUnpremulAlphaOpsBench.cpp', | |
72 '../bench/RTreeBench.cpp', | |
73 '../bench/ReadPixBench.cpp', | |
74 '../bench/RectBench.cpp', | |
75 '../bench/RectoriBench.cpp', | |
76 '../bench/RefCntBench.cpp', | |
77 '../bench/RegionBench.cpp', | |
78 '../bench/RegionContainBench.cpp', | |
79 '../bench/RepeatTileBench.cpp', | |
80 '../bench/ScalarBench.cpp', | |
81 '../bench/ShaderMaskBench.cpp', | |
82 '../bench/SkBenchmark.cpp', | |
mtklein
2013/11/25 13:17:37
Can you put these two SkBenchmark files down with
tfarina
2013/11/26 15:41:08
Do you mind if we split this in two targets? Say,
mtklein
2013/11/26 15:45:18
Let's wait to do this until something wants to dep
| |
83 '../bench/SkBenchmark.h', | |
84 '../bench/SkipZeroesBench.cpp', | |
85 '../bench/SortBench.cpp', | |
86 '../bench/StrokeBench.cpp', | |
87 '../bench/TableBench.cpp', | |
88 '../bench/TextBench.cpp', | |
89 '../bench/TileBench.cpp', | |
90 '../bench/VertBench.cpp', | |
91 '../bench/WritePixelsBench.cpp', | |
92 '../bench/WriterBench.cpp', | |
93 '../bench/XfermodeBench.cpp', | |
94 '../bench/benchmain.cpp', | |
mtklein
2013/11/25 13:17:37
And this one?
tfarina
2013/11/26 15:41:08
See question above. We may just put this in a sepa
| |
95 | |
96 '../bench/SkBenchLogger.h', | |
97 '../bench/SkBenchLogger.cpp', | |
98 ], | |
24 'conditions': [ | 99 'conditions': [ |
25 ['skia_gpu == 1', | 100 ['skia_gpu == 1', |
26 { | 101 { |
27 'include_dirs' : [ | 102 'include_dirs' : [ |
28 '../src/gpu', | 103 '../src/gpu', |
29 ], | 104 ], |
30 }, | 105 }, |
31 ], | 106 ], |
32 ], | 107 ], |
33 }, | 108 }, |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
86 ], | 161 ], |
87 } | 162 } |
88 ], | 163 ], |
89 } | 164 } |
90 | 165 |
91 # Local Variables: | 166 # Local Variables: |
92 # tab-width:2 | 167 # tab-width:2 |
93 # indent-tabs-mode:nil | 168 # indent-tabs-mode:nil |
94 # End: | 169 # End: |
95 # vim: set expandtab tabstop=2 shiftwidth=2: | 170 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |