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

Unified Diff: recipe_modules/gclient/config.py

Issue 1705473003: depot_tools: add master_deps in gclient/config.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: update example.py Created 4 years, 10 months 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 | « no previous file | recipe_modules/gclient/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/gclient/config.py
diff --git a/recipe_modules/gclient/config.py b/recipe_modules/gclient/config.py
index 0bcba6c178a60e0503c8d99cdbfc08a76cb46daf..b8152734b11bf7d14fdc6d71af65103a2719b4d7 100644
--- a/recipe_modules/gclient/config.py
+++ b/recipe_modules/gclient/config.py
@@ -421,6 +421,14 @@ def build_internal_scripts_slave(c):
c.got_revision_mapping['build'] = 'got_build_revision'
@config_ctx()
+def master_deps(c):
+ s = c.solutions.add()
+ s.name = 'build_internal/master.DEPS'
+ s.url = ('https://chrome-internal.googlesource.com/'
+ 'chrome/tools/build/master.DEPS.git')
+ c.got_revision_mapping['build_internal/master.DEPS'] = 'got_revision'
+
+@config_ctx()
def slave_deps(c):
s = c.solutions.add()
s.name = 'build_internal/slave.DEPS'
« no previous file with comments | « no previous file | recipe_modules/gclient/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698