Wire up new define in buildbot_spec

BUG=skia:

Review URL: https://codereview.chromium.org/1492133002
This commit is contained in:
joshualitt 2015-12-02 14:04:46 -08:00 committed by Commit bot
parent 8fd844f38e
commit 7384d07855
2 changed files with 569 additions and 911 deletions

File diff suppressed because it is too large Load Diff

View File

@ -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