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

Side by Side Diff: gyp/bench.gyp

Issue 257563006: use BenchTimer, print in µs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: stray u Created 6 years, 8 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 | « no previous file | gyp/tools.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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 'sources': [ 45 'sources': [
46 '../bench/BenchTimer.h', 46 '../bench/BenchTimer.h',
47 '../bench/BenchTimer.cpp', 47 '../bench/BenchTimer.cpp',
48 '../bench/BenchSysTimer_mach.h', 48 '../bench/BenchSysTimer_mach.h',
49 '../bench/BenchSysTimer_mach.cpp', 49 '../bench/BenchSysTimer_mach.cpp',
50 '../bench/BenchSysTimer_posix.h', 50 '../bench/BenchSysTimer_posix.h',
51 '../bench/BenchSysTimer_posix.cpp', 51 '../bench/BenchSysTimer_posix.cpp',
52 '../bench/BenchSysTimer_windows.h', 52 '../bench/BenchSysTimer_windows.h',
53 '../bench/BenchSysTimer_windows.cpp', 53 '../bench/BenchSysTimer_windows.cpp',
54 ], 54 ],
55 'include_dirs': [ 55 'include_dirs': [
56 '../src/core', 56 '../src/core',
57 '../src/gpu', 57 '../src/gpu',
58 '../tools', 58 '../tools',
59 ], 59 ],
60 'direct_dependent_settings': {
61 'include_dirs': ['../bench'],
62 },
60 'dependencies': [ 63 'dependencies': [
61 'skia_lib.gyp:skia_lib', 64 'skia_lib.gyp:skia_lib',
62 ], 65 ],
63 'conditions': [ 66 'conditions': [
64 [ 'skia_os not in ["mac", "ios"]', { 67 [ 'skia_os not in ["mac", "ios"]', {
65 'sources!': [ 68 'sources!': [
66 '../bench/BenchSysTimer_mach.h', 69 '../bench/BenchSysTimer_mach.h',
67 '../bench/BenchSysTimer_mach.cpp', 70 '../bench/BenchSysTimer_mach.cpp',
68 ], 71 ],
69 }], 72 }],
(...skipping 19 matching lines...) Expand all
89 ['skia_gpu == 1', { 92 ['skia_gpu == 1', {
90 'sources': [ 93 'sources': [
91 '../bench/BenchGpuTimer_gl.h', 94 '../bench/BenchGpuTimer_gl.h',
92 '../bench/BenchGpuTimer_gl.cpp', 95 '../bench/BenchGpuTimer_gl.cpp',
93 ], 96 ],
94 }], 97 }],
95 ], 98 ],
96 } 99 }
97 ], 100 ],
98 } 101 }
OLDNEW
« no previous file with comments | « no previous file | gyp/tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698