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

Side by Side Diff: gyp/bench.gyp

Issue 347823004: Remove Sk prefix from some bench classes. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: SkGMBench -> GMBench 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
« no previous file with comments | « dm/DMUtil.h ('k') | 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 'dependencies': [ 11 'dependencies': [
12 'bench_timer', 12 'bench_timer',
13 'crash_handler.gyp:CrashHandler', 13 'crash_handler.gyp:CrashHandler',
14 'etc1.gyp:libetc1', 14 'etc1.gyp:libetc1',
15 'flags.gyp:flags', 15 'flags.gyp:flags',
16 'jsoncpp.gyp:jsoncpp', 16 'jsoncpp.gyp:jsoncpp',
17 'resources.gyp:resources', 17 'resources.gyp:resources',
18 'skia_lib.gyp:skia_lib', 18 'skia_lib.gyp:skia_lib',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 '../bench/BenchLogger.cpp',
22 '../bench/BenchLogger.h',
23 '../bench/GMBench.cpp',
24 '../bench/GMBench.h',
21 '../bench/ResultsWriter.cpp', 25 '../bench/ResultsWriter.cpp',
22 '../bench/SkBenchLogger.cpp',
23 '../bench/SkBenchLogger.h',
24 '../bench/SkGMBench.cpp',
25 '../bench/SkGMBench.h',
26 '../bench/benchmain.cpp', 26 '../bench/benchmain.cpp',
27 '../tools/sk_tool_utils.cpp', 27 '../tools/sk_tool_utils.cpp',
28 ], 28 ],
29 'conditions': [ 29 'conditions': [
30 ['skia_gpu == 1', 30 ['skia_gpu == 1',
31 { 31 {
32 'include_dirs' : [ 32 'include_dirs' : [
33 '../src/gpu', 33 '../src/gpu',
34 ], 34 ],
35 'dependencies': [ 35 'dependencies': [
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 ['skia_gpu == 1', { 103 ['skia_gpu == 1', {
104 'sources': [ 104 'sources': [
105 '../bench/BenchGpuTimer_gl.h', 105 '../bench/BenchGpuTimer_gl.h',
106 '../bench/BenchGpuTimer_gl.cpp', 106 '../bench/BenchGpuTimer_gl.cpp',
107 ], 107 ],
108 }], 108 }],
109 ], 109 ],
110 } 110 }
111 ], 111 ],
112 } 112 }
OLDNEW
« no previous file with comments | « dm/DMUtil.h ('k') | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698