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

Unified Diff: tools/buildbot_spec.py

Issue 1492133002: Wire up new define in buildbot_spec (Closed) Base URL: https://skia.googlesource.com/skia.git@forrealwire
Patch Set: actually wire up Created 5 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index cc38281261ae7b4b1ce499ee920668601ea9eaf2..d818518eadaa9683e51d8260ac2ed379de7e7809 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.get('role') == 'Perf'):
+ gyp_defs['skia_dump_stats'] = '1'
+
return gyp_defs
« no previous file with comments | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698