From 00c51b99edf4657a0f5bd6060b9666cf4ca1e868 Mon Sep 17 00:00:00 2001 From: machenbach Date: Wed, 6 Jul 2016 08:06:54 -0700 Subject: [PATCH] [mb] Fix shared-library bots. Because the release_bot mixin includes the 'static' config, the shared-library bots included both 'static' and 'shared'. This removes the wrong 'static' config. BUG=chromium:474921 TBR=vogelheim@chromium.org, jochen@chromium.org Review-Url: https://codereview.chromium.org/2123243002 Cr-Commit-Position: refs/heads/master@{#37556} --- infra/mb/mb_config.pyl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/infra/mb/mb_config.pyl b/infra/mb/mb_config.pyl index 5e7d6d9d11..54d1a77556 100644 --- a/infra/mb/mb_config.pyl +++ b/infra/mb/mb_config.pyl @@ -341,14 +341,14 @@ 'gyp_release_x86_no_snap': [ 'gyp', 'release_bot', 'x86', 'swarming', 'v8_snapshot_none'], 'gyp_release_x86_no_snap_shared_minimal_symbols': [ - 'gyp', 'release_bot', 'x86', 'minimal_symbols', 'shared', 'swarming', + 'gyp', 'release', 'x86', 'goma', 'minimal_symbols', 'shared', 'swarming', 'v8_snapshot_none'], 'gyp_release_x86_no_snap_trybot': [ 'gyp', 'release_trybot', 'x86', 'swarming', 'v8_snapshot_none'], 'gyp_release_x86_predictable': [ 'gyp', 'release_bot', 'x86', 'v8_enable_verify_predictable'], 'gyp_release_x86_shared_verify_heap': [ - 'gyp', 'release_bot', 'x86', 'shared', 'swarming', 'v8_verify_heap'], + 'gyp', 'release', 'x86', 'goma', 'shared', 'swarming', 'v8_verify_heap'], 'gyp_release_x86_trybot': [ 'gyp', 'release_trybot', 'x86', 'swarming'], },