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

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: Added include 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
« no previous file with comments | « dm/DM.cpp ('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': 'nanobench', 9 'target_name': 'nanobench',
10 'type': 'executable', 10 'type': 'executable',
11 'sources': [ 11 'sources': [
12 '../gm/gm.cpp', 12 '../gm/gm.cpp',
13 '../bench/DecodingBench.cpp',
14 '../bench/DecodingSubsetBench.cpp',
13 '../bench/GMBench.cpp', 15 '../bench/GMBench.cpp',
14 '../bench/RecordingBench.cpp', 16 '../bench/RecordingBench.cpp',
15 '../bench/SKPBench.cpp', 17 '../bench/SKPBench.cpp',
16 '../bench/nanobench.cpp', 18 '../bench/nanobench.cpp',
17 ], 19 ],
18 'includes': [ 20 'includes': [
19 'bench.gypi', 21 'bench.gypi',
20 'gmslides.gypi', 22 'gmslides.gypi',
21 ], 23 ],
22 'dependencies': [ 24 'dependencies': [
23 'flags.gyp:flags_common', 25 'flags.gyp:flags_common',
24 'jsoncpp.gyp:jsoncpp', 26 'jsoncpp.gyp:jsoncpp',
25 'skia_lib.gyp:skia_lib', 27 'skia_lib.gyp:skia_lib',
26 'tools.gyp:crash_handler', 28 'tools.gyp:crash_handler',
27 'tools.gyp:proc_stats', 29 'tools.gyp:proc_stats',
28 'tools.gyp:timer', 30 'tools.gyp:timer',
29 ], 31 ],
30 'conditions': [ 32 'conditions': [
31 ['skia_android_framework', { 33 ['skia_android_framework', {
32 'libraries': [ 34 'libraries': [
33 '-lskia', 35 '-lskia',
34 ], 36 ],
35 }], 37 }],
36 ], 38 ],
37 }, 39 },
38 ], 40 ],
39 } 41 }
OLDNEW
« no previous file with comments | « dm/DM.cpp ('k') | gyp/bench.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698