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

Side by Side Diff: gyp/bench.gyp

Issue 176903003: Add GrSet class built on top of RedBlackTree (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Bench Added Created 6 years, 10 months 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
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',
(...skipping 29 matching lines...) Expand all
40 '../bench/DecodeBench.cpp', 40 '../bench/DecodeBench.cpp',
41 '../bench/DeferredCanvasBench.cpp', 41 '../bench/DeferredCanvasBench.cpp',
42 '../bench/DeferredSurfaceCopyBench.cpp', 42 '../bench/DeferredSurfaceCopyBench.cpp',
43 '../bench/DisplacementBench.cpp', 43 '../bench/DisplacementBench.cpp',
44 '../bench/FSRectBench.cpp', 44 '../bench/FSRectBench.cpp',
45 '../bench/FontCacheBench.cpp', 45 '../bench/FontCacheBench.cpp',
46 '../bench/FontScalerBench.cpp', 46 '../bench/FontScalerBench.cpp',
47 '../bench/GameBench.cpp', 47 '../bench/GameBench.cpp',
48 '../bench/GrMemoryPoolBench.cpp', 48 '../bench/GrMemoryPoolBench.cpp',
49 '../bench/GrResourceCacheBench.cpp', 49 '../bench/GrResourceCacheBench.cpp',
50 '../bench/GrSetBench.cpp',
50 '../bench/GradientBench.cpp', 51 '../bench/GradientBench.cpp',
51 '../bench/HairlinePathBench.cpp', 52 '../bench/HairlinePathBench.cpp',
52 '../bench/ImageCacheBench.cpp', 53 '../bench/ImageCacheBench.cpp',
53 '../bench/ImageDecodeBench.cpp', 54 '../bench/ImageDecodeBench.cpp',
54 '../bench/InterpBench.cpp', 55 '../bench/InterpBench.cpp',
55 '../bench/LightingBench.cpp', 56 '../bench/LightingBench.cpp',
56 '../bench/LineBench.cpp', 57 '../bench/LineBench.cpp',
57 '../bench/MagnifierBench.cpp', 58 '../bench/MagnifierBench.cpp',
58 '../bench/MathBench.cpp', 59 '../bench/MathBench.cpp',
59 '../bench/Matrix44Bench.cpp', 60 '../bench/Matrix44Bench.cpp',
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 ['skia_gpu == 1', { 169 ['skia_gpu == 1', {
169 'sources': [ 170 'sources': [
170 '../bench/BenchGpuTimer_gl.h', 171 '../bench/BenchGpuTimer_gl.h',
171 '../bench/BenchGpuTimer_gl.cpp', 172 '../bench/BenchGpuTimer_gl.cpp',
172 ], 173 ],
173 }], 174 }],
174 ], 175 ],
175 } 176 }
176 ], 177 ],
177 } 178 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698