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

Side by Side Diff: gyp/bench.gypi

Issue 347443002: Add nanobench, a fresh look at our microbenchmark harness. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: printf -> SkDebugf Created 6 years, 6 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
« gyp/bench.gyp ('K') | « gyp/bench.gyp ('k') | gyp/most.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'include_dirs': [ 2 'include_dirs': [
3 '../src/core', 3 '../src/core',
4 '../src/effects', 4 '../src/effects',
5 '../src/gpu',
5 '../src/utils', 6 '../src/utils',
6 '../tools', 7 '../tools',
7 ], 8 ],
8 'dependencies': [ 9 'dependencies': [
10 'etc1.gyp:libetc1',
9 'skia_lib.gyp:skia_lib', 11 'skia_lib.gyp:skia_lib',
12 'tools.gyp:resources',
13 'tools.gyp:sk_tool_utils',
14 ],
15 'conditions': [
16 ['skia_gpu == 1', {
17 'include_dirs': [ '../src/gpu' ],
18 'dependencies': [ 'gputest.gyp:skgputest' ],
19 }],
10 ], 20 ],
11 'sources': [ 21 'sources': [
12 '../bench/Benchmark.cpp', 22 '../bench/Benchmark.cpp',
13 '../bench/Benchmark.h', 23 '../bench/Benchmark.h',
14 24
15 '../bench/AAClipBench.cpp', 25 '../bench/AAClipBench.cpp',
16 '../bench/BicubicBench.cpp', 26 '../bench/BicubicBench.cpp',
17 '../bench/BitmapBench.cpp', 27 '../bench/BitmapBench.cpp',
18 '../bench/BitmapRectBench.cpp', 28 '../bench/BitmapRectBench.cpp',
19 '../bench/BitmapScaleBench.cpp', 29 '../bench/BitmapScaleBench.cpp',
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 '../bench/StrokeBench.cpp', 95 '../bench/StrokeBench.cpp',
86 '../bench/TableBench.cpp', 96 '../bench/TableBench.cpp',
87 '../bench/TextBench.cpp', 97 '../bench/TextBench.cpp',
88 '../bench/TileBench.cpp', 98 '../bench/TileBench.cpp',
89 '../bench/VertBench.cpp', 99 '../bench/VertBench.cpp',
90 '../bench/WritePixelsBench.cpp', 100 '../bench/WritePixelsBench.cpp',
91 '../bench/WriterBench.cpp', 101 '../bench/WriterBench.cpp',
92 '../bench/XfermodeBench.cpp', 102 '../bench/XfermodeBench.cpp',
93 ], 103 ],
94 } 104 }
OLDNEW
« gyp/bench.gyp ('K') | « gyp/bench.gyp ('k') | gyp/most.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698