commit | 12ee2db8ba9a6e8fc49100d7898ef944babd6c91 | [log] [tgz] |
---|---|---|
author | Dirk Pranke <[email protected]> | Tue Apr 14 23:15:32 2015 |
committer | Dirk Pranke <[email protected]> | Tue Apr 14 23:16:24 2015 |
tree | ad4a5cc7850ec3fa2930538f73b29870c2b5b856 | |
parent | 907fe612f5949ef8a6c2fe3bd00ddd1c423f9f20 [diff] [blame] |
mb fixes: fix uninitialized return value on empty file list and add bot entries for the chromium.webkit GN bots. [email protected] BUG= Review URL: https://codereview.chromium.org/1082393002 Cr-Commit-Position: refs/heads/master@{#325146}
diff --git a/tools/mb/mb.py b/tools/mb/mb.py index 2a9941b..0834d55 100755 --- a/tools/mb/mb.py +++ b/tools/mb/mb.py
@@ -417,6 +417,7 @@ return 0 all_needed_targets = set() + ret = 0 for f in inp['files']: cmd = self.GNCmd('refs', self.args.path[0]) + [ '//' + f, '--type=executable', '--all', '--as=output']