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

Unified Diff: tools/mb/mb.py

Issue 1773883002: Enable all Android builders to use 'chrome_with_codecs'. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wmpi_test
Patch Set: Fix exception check. Created 4 years, 9 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 | tools/mb/mb_config.pyl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb.py
diff --git a/tools/mb/mb.py b/tools/mb/mb.py
index 258df687cb30ce5f8e6aecca6471e57865919216..09c8ebcd833177a8ec97f612a55787ad7966bcb9 100755
--- a/tools/mb/mb.py
+++ b/tools/mb/mb.py
@@ -305,6 +305,28 @@ class MetaBuildWrapper(object):
if not mixin in referenced_mixins:
errs.append('Unreferenced mixin "%s".' % mixin)
+ # Check that 'chromium' bots which build public artifacts do not include
+ # the chrome_with_codecs 'mixin'.
+ if not 'chromium' in self.masters:
+ errs.append('Missing "chromium" master. Please update this proprietary '
kjellander_chromium 2016/03/15 03:54:59 In WebRTC, we have own mb_config.pyl for the stand
+ 'codecs check with the name of the master responsible for '
+ 'public build artifacts.')
+ else:
+ for builder in self.masters['chromium']:
+ config = self.masters['chromium'][builder]
+ def RecurseMixins(current_mixin):
+ if current_mixin == 'chrome_with_codecs':
+ errs.append('Public artifact builder "%s" can not contain the '
+ '"chrome_with_codecs" mixin.' % builder)
+ return
+ if not 'mixins' in self.mixins[current_mixin]:
+ return
+ for mixin in self.mixins[current_mixin]['mixins']:
+ RecurseMixins(mixin)
+
+ for mixin in self.configs[config]:
+ RecurseMixins(mixin)
+
if errs:
raise MBErr(('mb config file %s has problems:' % self.args.config_file) +
'\n ' + '\n '.join(errs))
« no previous file with comments | « no previous file | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698