Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(240)

Side by Side Diff: gyp/bench.gyp

Issue 83703004: Fold bench source file list into bench.gyp. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: separate Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/bench.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/SkipZeroesBench.cpp',
83 '../bench/SortBench.cpp',
84 '../bench/StrokeBench.cpp',
85 '../bench/TableBench.cpp',
86 '../bench/TextBench.cpp',
87 '../bench/TileBench.cpp',
88 '../bench/VertBench.cpp',
89 '../bench/WritePixelsBench.cpp',
90 '../bench/WriterBench.cpp',
91 '../bench/XfermodeBench.cpp',
92
93 '../bench/SkBenchLogger.cpp',
94 '../bench/SkBenchLogger.h',
95 '../bench/SkBenchmark.cpp',
96 '../bench/SkBenchmark.h',
97 '../bench/benchmain.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
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:
OLDNEW
« no previous file with comments | « no previous file | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698