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

Side by Side Diff: gyp/bench.gyp

Issue 151843002: Allow GMs ato be used as benchmarks. Make convex_poly_clip opt in. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Address comments 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 | Annotate | Revision Log
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/gm.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 # 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 '../bench/TileBench.cpp', 90 '../bench/TileBench.cpp',
91 '../bench/VertBench.cpp', 91 '../bench/VertBench.cpp',
92 '../bench/WritePixelsBench.cpp', 92 '../bench/WritePixelsBench.cpp',
93 '../bench/WriterBench.cpp', 93 '../bench/WriterBench.cpp',
94 '../bench/XfermodeBench.cpp', 94 '../bench/XfermodeBench.cpp',
95 95
96 '../bench/SkBenchLogger.cpp', 96 '../bench/SkBenchLogger.cpp',
97 '../bench/SkBenchLogger.h', 97 '../bench/SkBenchLogger.h',
98 '../bench/SkBenchmark.cpp', 98 '../bench/SkBenchmark.cpp',
99 '../bench/SkBenchmark.h', 99 '../bench/SkBenchmark.h',
100 '../bench/SkGMBench.cpp',
101 '../bench/SkGMBench.h',
102
100 '../bench/benchmain.cpp', 103 '../bench/benchmain.cpp',
101 ], 104 ],
102 'conditions': [ 105 'conditions': [
103 ['skia_gpu == 1', 106 ['skia_gpu == 1',
104 { 107 {
105 'include_dirs' : [ 108 'include_dirs' : [
106 '../src/gpu', 109 '../src/gpu',
107 ], 110 ],
108 'dependencies': [ 111 'dependencies': [
109 'gputest.gyp:skgputest', 112 'gputest.gyp:skgputest',
110 ], 113 ],
111 }, 114 },
112 ], 115 ],
113 ], 116 ],
117 'includes': [
118 'gmslides.gypi',
119 ],
114 }, 120 },
115 { 121 {
116 'target_name' : 'bench_timer', 122 'target_name' : 'bench_timer',
117 'type': 'static_library', 123 'type': 'static_library',
118 'sources': [ 124 'sources': [
119 '../bench/BenchTimer.h', 125 '../bench/BenchTimer.h',
120 '../bench/BenchTimer.cpp', 126 '../bench/BenchTimer.cpp',
121 '../bench/BenchSysTimer_mach.h', 127 '../bench/BenchSysTimer_mach.h',
122 '../bench/BenchSysTimer_mach.cpp', 128 '../bench/BenchSysTimer_mach.cpp',
123 '../bench/BenchSysTimer_posix.h', 129 '../bench/BenchSysTimer_posix.h',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 ['skia_gpu == 1', { 167 ['skia_gpu == 1', {
162 'sources': [ 168 'sources': [
163 '../bench/BenchGpuTimer_gl.h', 169 '../bench/BenchGpuTimer_gl.h',
164 '../bench/BenchGpuTimer_gl.cpp', 170 '../bench/BenchGpuTimer_gl.cpp',
165 ], 171 ],
166 }], 172 }],
167 ], 173 ],
168 } 174 }
169 ], 175 ],
170 } 176 }
OLDNEW
« no previous file with comments | « gyp/SampleApp.gyp ('k') | gyp/gm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698