depot_tools: add specific cache directory for goma deps in kitchen path config

BUG=chromium:596887

Review-Url: https://codereview.chromium.org/1933683002

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@300343 0039d316-1c4b-4281-b951-d872f2087c98
parent 59007674
...@@ -40,7 +40,11 @@ def infra_kitchen(c): ...@@ -40,7 +40,11 @@ def infra_kitchen(c):
'/', 'b', 'cache', 'chromium', 'git_cache') '/', 'b', 'cache', 'chromium', 'git_cache')
c.base_paths['goma_cache'] = ( c.base_paths['goma_cache'] = (
'/', 'b', 'cache', 'chromium', 'goma_cache') '/', 'b', 'cache', 'chromium', 'goma_cache')
c.base_paths['goma_deps_cache'] = (
'/', 'b', 'cache', 'chromium', 'goma_deps_cache')
else: else:
c.base_paths['cache'] = c.base_paths['root'] + ('cache',) c.base_paths['cache'] = c.base_paths['root'] + ('cache',)
c.base_paths['git_cache'] = c.base_paths['root'] + ('cache_dir',) c.base_paths['git_cache'] = c.base_paths['root'] + ('cache_dir',)
c.base_paths['goma_cache'] = c.base_paths['root'] + ('goma_cache',) c.base_paths['goma_cache'] = c.base_paths['root'] + ('goma_cache',)
c.base_paths['goma_deps_cache'] = c.base_paths['root'] + (
'goma_deps_cache',)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment