ENH: pass cache_dir arg through fetch, webrtc, and eventually chromium.

BUG=

Change-Id: I33aa83c36721059005b86fe8538560c302bbd4b5
Reviewed-on: https://chromium-review.googlesource.com/414692
Reviewed-by: Henrik Kjellander <kjellander@chromium.org>
Reviewed-by: Aaron Gable <agable@chromium.org>
Commit-Queue: Henrik Kjellander <kjellander@chromium.org>
This commit is contained in:
Dr Alex Gouaillard
2016-11-28 15:00:04 +08:00
committed by Commit Bot
parent 53f3555f63
commit e1dd46f06c
2 changed files with 4 additions and 1 deletions

View File

@@ -31,6 +31,9 @@ class WebRTC(config_util.Config):
if props.get('target_os'):
spec['target_os'] = props['target_os'].split(',')
if props.get('cache_dir'):
spec['cache_dir'] = props['cache_dir']
return {
'type': 'gclient_git',
'gclient_git_spec': spec,