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

Side by Side Diff: gyp/bench.gyp

Issue 918673002: Adding new benchmark to test image decoding performance. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Image decode benchmarking code (revision 2) Created 5 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
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': 'nanobench', 9 'target_name': 'nanobench',
10 'type': 'executable', 10 'type': 'executable',
11 'sources': [ 11 'sources': [
12 '../bench/DecodingBench.cpp',
scroggo 2015/02/12 14:19:02 Nit: I know this was not alphabetized before, but
mtklein 2015/02/12 14:41:38 If we do move them, let's keep them together in on
scroggo 2015/02/12 15:00:18 Maybe move them into their own gypi? bench_core.gy
_cary 2015/02/12 15:18:05 ioSShell.gyp exists because multiple iOS applicati
msarett 2015/02/12 18:52:56 Done.
12 '../gm/gm.cpp', 13 '../gm/gm.cpp',
13 '../bench/GMBench.cpp', 14 '../bench/GMBench.cpp',
14 '../bench/RecordingBench.cpp', 15 '../bench/RecordingBench.cpp',
15 '../bench/SKPBench.cpp', 16 '../bench/SKPBench.cpp',
16 '../bench/nanobench.cpp', 17 '../bench/nanobench.cpp',
17 ], 18 ],
18 'includes': [ 19 'includes': [
19 'bench.gypi', 20 'bench.gypi',
20 'gmslides.gypi', 21 'gmslides.gypi',
21 ], 22 ],
22 'dependencies': [ 23 'dependencies': [
23 'flags.gyp:flags_common', 24 'flags.gyp:flags_common',
24 'jsoncpp.gyp:jsoncpp', 25 'jsoncpp.gyp:jsoncpp',
25 'skia_lib.gyp:skia_lib', 26 'skia_lib.gyp:skia_lib',
26 'tools.gyp:crash_handler', 27 'tools.gyp:crash_handler',
27 'tools.gyp:proc_stats', 28 'tools.gyp:proc_stats',
28 'tools.gyp:timer', 29 'tools.gyp:timer',
29 ], 30 ],
30 'conditions': [ 31 'conditions': [
31 ['skia_android_framework', { 32 ['skia_android_framework', {
32 'libraries': [ 33 'libraries': [
33 '-lskia', 34 '-lskia',
34 ], 35 ],
35 }], 36 }],
36 ], 37 ],
37 }, 38 },
38 ], 39 ],
39 } 40 }
OLDNEW
« bench/nanobench.cpp ('K') | « dm/DM.cpp ('k') | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698