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

Unified Diff: bin/cbuildbot.py

Issue 4742004: Define buildroot properly (reverted) (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/crosutils.git
Patch Set: Re-upload Created 10 years, 1 month 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/cbuildbot.py
diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py
index b0a26af94cf6d5ab5e268472adc22ab3b94d512d..c255f2f7e0204a7c25c7e498fbe7e1fd4b78035a 100755
--- a/bin/cbuildbot.py
+++ b/bin/cbuildbot.py
@@ -459,7 +459,7 @@ def _GetConfig(config_name):
return buildconfig
-def ResolveOverlays(overlays):
+def ResolveOverlays(buildroot, overlays):
"""Return the list of overlays to use for a given buildbot.
Args:
@@ -521,7 +521,7 @@ def main():
sys.exit(1)
# Calculate list of overlay directories.
- overlays = ResolveOverlays(buildconfig['overlays'])
+ overlays = ResolveOverlays(buildroot, buildconfig['overlays'])
try:
_PreFlightRinse(buildroot, buildconfig['board'], tracking_branch, overlays)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698