Index: tools/buildbot_spec.py |
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py |
index cc38281261ae7b4b1ce499ee920668601ea9eaf2..2444109e9aa5f722098ae629a572cb83910f91fa 100755 |
--- a/tools/buildbot_spec.py |
+++ b/tools/buildbot_spec.py |
@@ -147,6 +147,11 @@ def gyp_defines(builder_dict): |
if builder_dict.get('extra_config') == 'Android_FrameworkDefs': |
gyp_defs['skia_use_android_framework_defines'] = '1' |
+ # Skia dump stats for perf tests and gpu |
+ if (builder_dict.get('cpu_or_gpu') == 'GPU' and |
+ builder_dict['role'] in ('Perf')): |
borenet
2015/12/02 20:50:42
Can just say:
builder_dict['role'] == 'Perf'
stephana
2015/12/02 21:46:56
builder_dict.get('role') == 'Perf'
Get will not cr
borenet
2015/12/03 12:31:49
True, but not necessary in this case since all bot
|
+ gyp_defs['skia_dump_stats'] = '1' |
borenet
2015/12/02 20:50:42
Did you add this to the gyp files?
joshualitt
2015/12/02 21:50:05
yes, I just added it to the gyp file in a previous
|
+ |
return gyp_defs |