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

Side by Side Diff: gyp/bench.gyp

Issue 131503007: Workaround for assertion in NVPR config in bench. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: working 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 | « bench/HairlinePathBench.cpp ('k') | no next file » | 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 '../bench/SkBenchmark.cpp', 98 '../bench/SkBenchmark.cpp',
99 '../bench/SkBenchmark.h', 99 '../bench/SkBenchmark.h',
100 '../bench/benchmain.cpp', 100 '../bench/benchmain.cpp',
101 ], 101 ],
102 'conditions': [ 102 'conditions': [
103 ['skia_gpu == 1', 103 ['skia_gpu == 1',
104 { 104 {
105 'include_dirs' : [ 105 'include_dirs' : [
106 '../src/gpu', 106 '../src/gpu',
107 ], 107 ],
108 'dependencies': [
109 'gputest.gyp:skgputest',
110 ],
108 }, 111 },
109 ], 112 ],
110 ], 113 ],
111 }, 114 },
112 { 115 {
113 'target_name' : 'bench_timer', 116 'target_name' : 'bench_timer',
114 'type': 'static_library', 117 'type': 'static_library',
115 'sources': [ 118 'sources': [
116 '../bench/BenchTimer.h', 119 '../bench/BenchTimer.h',
117 '../bench/BenchTimer.cpp', 120 '../bench/BenchTimer.cpp',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 ['skia_gpu == 1', { 161 ['skia_gpu == 1', {
159 'sources': [ 162 'sources': [
160 '../bench/BenchGpuTimer_gl.h', 163 '../bench/BenchGpuTimer_gl.h',
161 '../bench/BenchGpuTimer_gl.cpp', 164 '../bench/BenchGpuTimer_gl.cpp',
162 ], 165 ],
163 }], 166 }],
164 ], 167 ],
165 } 168 }
166 ], 169 ],
167 } 170 }
OLDNEW
« no previous file with comments | « bench/HairlinePathBench.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698