kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 1 | # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license |
| 4 | # that can be found in the LICENSE file in the root of the source |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | |
| 9 | # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. |
| 10 | # This is configuration for standalone WebRTC bots. It is used to keep the bot |
| 11 | # configurations source-side instead of in the buildbot scripts. That makes it |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 12 | # easy to try different configurations of GN args in tryjob patches. |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 13 | |
| 14 | { |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 15 | # This is a map of buildbot master names -> buildbot builder names -> |
| 16 | # config names (where each config name is a key in the 'configs' dict, |
| 17 | # above). mb uses this dict to look up which config to use for a given bot. |
| 18 | # The builders should be sorted by the order they appear in the /builders |
| 19 | # page on the buildbots, *not* alphabetically. |
| 20 | 'masters': { |
| 21 | 'client.webrtc': { |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 22 | # iOS |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 23 | 'iOS32 Debug': 'ios_debug_static_bot_arm_device', |
| 24 | 'iOS32 Release': 'ios_release_bot_arm_device', |
| 25 | 'iOS64 Debug': 'ios_debug_static_bot_arm64_device', |
| 26 | 'iOS64 Release': 'ios_release_bot_arm64_device', |
| 27 | 'iOS32 Simulator Debug': 'ios_debug_static_bot_x86', |
| 28 | 'iOS64 Simulator Debug': 'ios_debug_static_bot_x64', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 29 | |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 30 | # Mac |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 31 | 'Mac64 Debug': 'debug_bot_x64', |
| 32 | 'Mac64 Release': 'release_bot_x64', |
| 33 | 'Mac Asan': 'mac_asan_clang_release_bot_x64', |
| 34 | 'Mac64 Release [large tests]': 'release_bot_x64', |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 35 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 36 | # Linux |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 37 | 'Linux32 Debug': 'debug_bot_x86', |
| 38 | 'Linux32 Release': 'release_bot_x86', |
| 39 | 'Linux32 ARM': 'release_bot_arm', |
| 40 | 'Linux64 Debug': 'debug_bot_x64', |
| 41 | 'Linux64 Release': 'release_bot_x64', |
| 42 | 'Linux Asan': 'asan_lsan_clang_release_bot_x64', |
ehmaldonado | ed8c8ed | 2016-11-23 12:58:35 -0800 | [diff] [blame] | 43 | 'Linux Memcheck': 'memcheck_release_bot_x64', |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 44 | 'Linux MSan': 'msan_clang_release_bot_x64', |
| 45 | 'Linux Tsan v2': 'tsan_clang_release_bot_x64', |
| 46 | 'Linux UBSan': 'ubsan_clang_release_bot_x64', |
| 47 | 'Linux UBSan vptr': 'ubsan_vptr_clang_release_bot_x64', |
| 48 | 'Linux64 Release [large tests]': 'release_bot_x64', |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 49 | |
| 50 | # Android |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 51 | 'Android32 (M Nexus5X)': 'android_release_bot_arm', |
| 52 | 'Android32 (M Nexus5X)(dbg)': 'android_debug_static_bot_arm', |
| 53 | 'Android64 (M Nexus5X)': 'android_release_bot_arm64', |
| 54 | 'Android64 (M Nexus5X)(dbg)': 'android_debug_static_bot_arm64', |
| 55 | 'Android32 Builder x86': 'android_release_bot_x86', |
| 56 | 'Android32 Builder x86 (dbg)': 'android_debug_static_bot_x86', |
| 57 | 'Android64 Builder x64 (dbg)': 'android_debug_static_bot_x64', |
| 58 | 'Android32 Builder MIPS (dbg)': 'android_clang_debug_static_bot_mipsel', |
| 59 | 'Android32 Clang (dbg)': 'android_clang_debug_bot_arm', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 60 | |
| 61 | # Windows |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 62 | 'Win32 Debug': 'debug_bot_x86', |
| 63 | 'Win32 Release': 'release_bot_x86', |
| 64 | 'Win64 Debug': 'debug_bot_x64', |
| 65 | 'Win64 Release': 'release_bot_x64', |
| 66 | 'Win32 Debug (Clang)': 'win_clang_debug_bot_x86', |
| 67 | 'Win32 Release (Clang)': 'win_clang_release_bot_x86', |
| 68 | 'Win64 Debug (Clang)': 'win_clang_debug_bot_x64', |
| 69 | 'Win64 Release (Clang)': 'win_clang_release_bot_x64', |
| 70 | 'Win SyzyASan': 'win_syzyasan_release_bot_x86', |
| 71 | 'Win32 Release [large tests]': 'release_bot_x86', |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 72 | }, |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 73 | 'client.webrtc.perf': { |
| 74 | # Android |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 75 | 'Android32 Builder': 'perf_android_release_bot_arm', |
| 76 | 'Android64 Builder': 'perf_android_release_bot_arm64', |
Henrik Kjellander | 91ef546 | 2016-12-27 09:01:18 +0100 | [diff] [blame^] | 77 | 'Android32 Tests (J Nexus4)': 'none', |
| 78 | 'Android32 Tests (K Nexus5)': 'none', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 79 | 'Android32 Tests (L Nexus5)': 'none', |
Henrik Kjellander | 91ef546 | 2016-12-27 09:01:18 +0100 | [diff] [blame^] | 80 | 'Android32 Tests (L Nexus6)': 'none', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 81 | 'Android32 Tests (L Nexus7.2)': 'none', |
| 82 | 'Android64 Tests (L Nexus9)': 'none', |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 83 | 'Linux Trusty': 'perf_release_bot_x64', |
| 84 | 'Mac 10.11': 'perf_release_bot_x64', |
| 85 | 'Win7': 'perf_release_bot_x86', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 86 | }, |
| 87 | 'client.webrtc.fyi': { |
ehmaldonado | 3a864d2 | 2016-11-30 02:35:42 -0800 | [diff] [blame] | 88 | # Mac |
| 89 | 'Mac (swarming)': 'release_bot_x64', |
| 90 | |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 91 | # Linux |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 92 | 'Linux64 GCC': 'gcc_release_bot_x64', |
ehmaldonado | 3a864d2 | 2016-11-30 02:35:42 -0800 | [diff] [blame] | 93 | 'Linux (swarming)': 'release_bot_x64', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 94 | |
| 95 | # Android |
ehmaldonado | 3a864d2 | 2016-11-30 02:35:42 -0800 | [diff] [blame] | 96 | 'Android (swarming)': 'android_release_bot_arm', |
Henrik Kjellander | 91ef546 | 2016-12-27 09:01:18 +0100 | [diff] [blame^] | 97 | 'Android ASan (swarming)': 'android_asan_shared_release_bot_arm', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 98 | # Windows |
ehmaldonado | 3a864d2 | 2016-11-30 02:35:42 -0800 | [diff] [blame] | 99 | 'Win (swarming)': 'release_bot_x86', |
ehmaldonado | 2df1ab4 | 2016-11-22 06:09:15 -0800 | [diff] [blame] | 100 | 'Win32 SyzyASan (swarming)': 'win_syzyasan_release_bot_x86', |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 101 | 'Win64 Debug (Win8)': 'debug_bot_x64', |
| 102 | 'Win64 Debug (Win10)': 'debug_bot_x64', |
Henrik Kjellander | cbfb033 | 2016-10-09 06:28:58 +0200 | [diff] [blame] | 103 | }, |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 104 | 'tryserver.webrtc': { |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 105 | # iOS |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 106 | 'ios_dbg': 'ios_debug_static_bot_arm_device', |
| 107 | 'ios_rel': 'ios_release_bot_arm_device', |
| 108 | 'ios_arm64_dbg': 'ios_debug_static_bot_arm64_device', |
| 109 | 'ios_arm64_rel': 'ios_release_bot_arm64_device', |
| 110 | 'ios32_sim_dbg': 'ios_debug_static_bot_x86', |
| 111 | 'ios64_sim_dbg': 'ios_debug_static_bot_x64', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 112 | |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 113 | # Mac |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 114 | 'mac_compile_dbg': 'debug_bot_x64', |
| 115 | 'mac_compile_rel': 'release_bot_x64', |
| 116 | 'mac_dbg': 'debug_bot_x64', |
| 117 | 'mac_rel': 'release_bot_x64', |
| 118 | 'mac_asan': 'mac_asan_clang_release_bot_x64', |
| 119 | 'mac_baremetal': 'release_bot_x64', |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 120 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 121 | # Linux |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 122 | 'linux_compile_dbg': 'debug_bot_x64', |
| 123 | 'linux_compile_rel': 'release_bot_x64', |
| 124 | 'linux_dbg': 'debug_bot_x64', |
| 125 | 'linux_rel': 'release_bot_x64', |
| 126 | 'linux32_dbg': 'debug_bot_x86', |
| 127 | 'linux32_rel': 'release_bot_x86', |
| 128 | 'linux_arm': 'release_bot_arm', |
| 129 | 'linux_asan': 'asan_lsan_clang_release_bot_x64', |
Henrik Kjellander | 0b571a1 | 2016-12-15 11:08:59 +0100 | [diff] [blame] | 130 | 'linux_memcheck': 'memcheck_release_bot_x64', |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 131 | 'linux_msan': 'msan_clang_release_bot_x64', |
| 132 | 'linux_tsan2': 'tsan_clang_release_bot_x64', |
| 133 | 'linux_ubsan': 'ubsan_clang_release_bot_x64', |
| 134 | 'linux_ubsan_vptr': 'ubsan_vptr_clang_release_bot_x64', |
| 135 | 'linux_baremetal': 'release_bot_x64', |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 136 | |
| 137 | # Android |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 138 | 'android_compile_dbg': 'android_debug_static_bot_arm', |
| 139 | 'android_compile_rel': 'android_release_bot_arm', |
| 140 | 'android_compile_arm64_dbg': 'android_debug_static_bot_arm64', |
| 141 | 'android_compile_arm64_rel': 'android_release_bot_arm64', |
| 142 | 'android_compile_x86_dbg': 'android_debug_static_bot_x86', |
| 143 | 'android_compile_x86_rel': 'android_release_bot_x86', |
| 144 | 'android_compile_x64_dbg': 'android_debug_static_bot_x64', |
| 145 | 'android_compile_mips_dbg': 'android_clang_debug_static_bot_mipsel', |
| 146 | 'android_dbg': 'android_debug_static_bot_arm', |
| 147 | 'android_rel': 'android_release_bot_arm', |
| 148 | 'android_clang_dbg': 'android_clang_debug_bot_arm', |
| 149 | 'android_arm64_rel': 'android_release_bot_arm64', |
| 150 | 'android_n6': 'android_debug_static_bot_arm', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 151 | |
| 152 | # Windows |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 153 | 'win_compile_dbg': 'debug_bot_x86', |
| 154 | 'win_compile_rel': 'release_bot_x86', |
| 155 | 'win_compile_x64_dbg': 'debug_bot_x64', |
| 156 | 'win_compile_x64_rel': 'release_bot_x64', |
| 157 | 'win_dbg': 'debug_bot_x86', |
| 158 | 'win_rel': 'release_bot_x86', |
| 159 | 'win_x64_dbg': 'debug_bot_x64', |
| 160 | 'win_x64_rel': 'release_bot_x64', |
| 161 | 'win_clang_dbg': 'win_clang_debug_bot_x86', |
| 162 | 'win_clang_rel': 'win_clang_release_bot_x86', |
| 163 | 'win_x64_clang_dbg': 'win_clang_debug_bot_x64', |
| 164 | 'win_x64_clang_rel': 'win_clang_release_bot_x64', |
| 165 | 'win_asan': 'win_syzyasan_release_bot_x86', |
| 166 | 'win_baremetal': 'release_bot_x86', |
| 167 | 'win_x64_win8': 'debug_bot_x64', |
| 168 | 'win_x64_win10': 'debug_bot_x64', |
ehmaldonado | d6e65b3 | 2016-09-05 06:43:56 -0700 | [diff] [blame] | 169 | } |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 170 | }, |
| 171 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 172 | # This is the list of configs that you can pass to mb; each config |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 173 | # represents a particular combination of gn args that we must support. |
| 174 | # A given config *may* be platform-specific but is not necessarily so (i.e., |
| 175 | # we might have mac, win, and linux bots all using the 'release_bot' config). |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 176 | 'configs': { |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 177 | # iOS |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 178 | 'ios_debug_static_bot_arm64_device': [ |
kjellander | 1c814e7 | 2016-08-16 02:42:02 -0700 | [diff] [blame] | 179 | 'ios', 'gn', 'debug_static_bot', 'arm64', 'device' |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 180 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 181 | 'ios_release_bot_arm64_device': [ |
kjellander | 1c814e7 | 2016-08-16 02:42:02 -0700 | [diff] [blame] | 182 | 'ios', 'gn', 'release_bot', 'arm64', 'device' |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 183 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 184 | 'ios_debug_static_bot_arm_device': [ |
kjellander | 6e5b0d7 | 2016-08-30 14:05:44 -0700 | [diff] [blame] | 185 | 'ios', 'gn', 'debug_static_bot', 'arm', 'device' |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 186 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 187 | 'ios_release_bot_arm_device': [ |
kjellander | 6e5b0d7 | 2016-08-30 14:05:44 -0700 | [diff] [blame] | 188 | 'ios', 'gn', 'release_bot', 'arm', 'device' |
| 189 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 190 | 'ios_debug_static_bot_x86': [ |
kjellander | 6e5b0d7 | 2016-08-30 14:05:44 -0700 | [diff] [blame] | 191 | 'ios', 'gn', 'debug_static_bot', 'x86' |
| 192 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 193 | 'ios_debug_static_bot_x64': [ |
kjellander | 6e5b0d7 | 2016-08-30 14:05:44 -0700 | [diff] [blame] | 194 | 'ios', 'gn', 'debug_static_bot', 'x64' |
ehmaldonado | d046d98 | 2016-08-08 06:59:14 -0700 | [diff] [blame] | 195 | ], |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 196 | |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 197 | # Linux, Mac and Windows |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 198 | 'gcc_release_bot_x64': [ |
ehmaldonado | d6e65b3 | 2016-09-05 06:43:56 -0700 | [diff] [blame] | 199 | 'gn', 'gcc', 'release_bot', 'x64' |
| 200 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 201 | 'release_bot_arm': [ |
Henrik Kjellander | b4af3d6 | 2016-11-16 20:11:29 +0100 | [diff] [blame] | 202 | 'gn', 'openh264_release_bot', 'arm' |
kjellander | f02207d | 2016-08-24 09:40:00 -0700 | [diff] [blame] | 203 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 204 | 'asan_lsan_clang_release_bot_x64': [ |
kjellander | fe1d191 | 2016-08-26 06:10:30 -0700 | [diff] [blame] | 205 | 'gn', 'asan', 'lsan', 'clang', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 206 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 207 | 'msan_clang_release_bot_x64': [ |
kjellander | fe1d191 | 2016-08-26 06:10:30 -0700 | [diff] [blame] | 208 | 'gn', 'msan', 'clang', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 209 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 210 | 'tsan_clang_release_bot_x64': [ |
kjellander | fe1d191 | 2016-08-26 06:10:30 -0700 | [diff] [blame] | 211 | 'gn', 'tsan', 'clang', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 212 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 213 | 'ubsan_clang_release_bot_x64': [ |
kjellander | fe1d191 | 2016-08-26 06:10:30 -0700 | [diff] [blame] | 214 | 'gn', 'ubsan', 'clang', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 215 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 216 | 'ubsan_vptr_clang_release_bot_x64': [ |
kjellander | fe1d191 | 2016-08-26 06:10:30 -0700 | [diff] [blame] | 217 | 'gn', 'ubsan_vptr', 'clang', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 218 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 219 | 'debug_bot_x86': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 220 | 'gn', 'openh264_debug_bot', 'x86' |
| 221 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 222 | 'release_bot_x86': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 223 | 'gn', 'openh264_release_bot', 'x86' |
| 224 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 225 | 'debug_bot_x64': [ |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 226 | 'gn', 'openh264_debug_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 227 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 228 | 'release_bot_x64': [ |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 229 | 'gn', 'openh264_release_bot', 'x64' |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 230 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 231 | 'perf_release_bot_x86': [ |
| 232 | 'gn', 'openh264', 'release', 'static', 'goma', 'x86' |
| 233 | ], |
| 234 | 'perf_release_bot_x64': [ |
| 235 | 'gn', 'openh264', 'release', 'static', 'goma', 'x64' |
| 236 | ], |
ehmaldonado | ed8c8ed | 2016-11-23 12:58:35 -0800 | [diff] [blame] | 237 | 'memcheck_release_bot_x64': [ |
| 238 | 'memcheck', 'gn', 'openh264_release_bot', 'x64' |
| 239 | ], |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 240 | |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 241 | # Windows |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 242 | 'win_clang_debug_bot_x86': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 243 | 'gn', 'clang', 'openh264_debug_bot', 'x86', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 244 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 245 | 'win_clang_release_bot_x86': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 246 | 'gn', 'clang', 'openh264_release_bot', 'x86', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 247 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 248 | 'win_clang_debug_bot_x64': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 249 | 'gn', 'clang', 'openh264_debug_bot', 'x64', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 250 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 251 | 'win_clang_release_bot_x64': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 252 | 'gn', 'clang', 'openh264_release_bot', 'x64', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 253 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 254 | 'win_syzyasan_release_bot_x86': [ |
kjellander | 133edb2 | 2016-08-28 20:35:55 -0700 | [diff] [blame] | 255 | 'gn', 'syzyasan', 'minimal_symbols', 'openh264_release_bot', 'x86', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 256 | ], |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 257 | |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 258 | # Mac |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 259 | 'mac_asan_clang_release_bot_x64': [ |
kjellander | f02207d | 2016-08-24 09:40:00 -0700 | [diff] [blame] | 260 | 'gn', 'asan', 'clang', 'openh264_release_bot', 'x64', |
ehmaldonado | a3a1fde | 2016-08-11 01:04:35 -0700 | [diff] [blame] | 261 | ], |
| 262 | |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 263 | # Android |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 264 | 'android_debug_static_bot_arm': [ |
kjellander | 68815bf | 2016-08-10 09:49:37 -0700 | [diff] [blame] | 265 | 'android', 'gn', 'debug_static_bot', 'arm' |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 266 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 267 | 'android_release_bot_arm': [ |
kjellander | 5e49c2f | 2016-10-27 00:00:14 -0700 | [diff] [blame] | 268 | 'android', 'gn', 'release_bot', 'arm' |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 269 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 270 | 'android_debug_static_bot_x86': [ |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 271 | 'android', 'gn', 'debug_static_bot', 'x86' |
| 272 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 273 | 'android_release_bot_x86': [ |
kjellander | 5e49c2f | 2016-10-27 00:00:14 -0700 | [diff] [blame] | 274 | 'android', 'gn', 'release_bot', 'x86' |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 275 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 276 | 'android_clang_debug_bot_arm': [ |
kjellander | 70d0124 | 2016-09-15 03:42:29 -0700 | [diff] [blame] | 277 | 'android', 'gn', 'clang', 'debug_bot', 'arm' |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 278 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 279 | 'android_clang_debug_static_bot_mipsel': [ |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 280 | 'android', 'gn', 'clang', 'debug_static_bot', 'mipsel' |
| 281 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 282 | 'android_debug_static_bot_arm64': [ |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 283 | 'android', 'gn', 'debug_static_bot', 'arm64' |
| 284 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 285 | 'android_release_bot_arm64': [ |
kjellander | 5e49c2f | 2016-10-27 00:00:14 -0700 | [diff] [blame] | 286 | 'android', 'gn', 'release_bot', 'arm64' |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 287 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 288 | 'android_debug_static_bot_x64': [ |
kjellander | 4c8adb1 | 2016-08-24 00:34:40 -0700 | [diff] [blame] | 289 | 'android', 'gn', 'debug_static_bot', 'x64' |
| 290 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 291 | 'android_asan_shared_release_bot_arm': [ |
kjellander | 5e49c2f | 2016-10-27 00:00:14 -0700 | [diff] [blame] | 292 | 'android', 'gn', 'asan', 'clang', 'shared', 'release_bot', 'arm' |
ehmaldonado | d6e65b3 | 2016-09-05 06:43:56 -0700 | [diff] [blame] | 293 | ], |
kjellander | de49803 | 2016-11-17 07:47:11 -0800 | [diff] [blame] | 294 | 'perf_android_release_bot_arm': [ |
| 295 | 'android', 'gn', 'release', 'static', 'goma', 'arm' |
| 296 | ], |
| 297 | 'perf_android_release_bot_arm64': [ |
| 298 | 'android', 'gn', 'release', 'static', 'goma', 'arm64' |
| 299 | ], |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 300 | |
| 301 | # This is used for tracking purposes; any bot that uses this config |
| 302 | # should never actually run MB. |
| 303 | 'none': [ |
| 304 | 'error', |
| 305 | ], |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 306 | }, |
| 307 | |
| 308 | # This is a dict mapping a given 'mixin' name to a dict of settings that |
| 309 | # mb should use. See //tools/mb/docs/user_guide.md for more information. |
| 310 | 'mixins': { |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 311 | 'android': { |
| 312 | 'gn_args': 'target_os="android"', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 313 | }, |
| 314 | |
| 315 | 'arm': { |
| 316 | 'gn_args': 'target_cpu="arm"', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 317 | }, |
| 318 | |
| 319 | 'arm64': { |
| 320 | 'gn_args': 'target_cpu="arm64"', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 321 | }, |
| 322 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 323 | 'asan': { |
| 324 | 'gn_args': 'is_asan=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 325 | }, |
| 326 | |
| 327 | 'clang': { |
| 328 | 'gn_args': 'is_clang=true', |
kjellander | 5d6b84c | 2016-08-09 13:17:40 -0700 | [diff] [blame] | 329 | }, |
| 330 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 331 | 'dcheck_always_on': { |
| 332 | 'gn_args': 'dcheck_always_on=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 333 | }, |
| 334 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 335 | 'debug': { |
| 336 | 'gn_args': 'is_debug=true', |
| 337 | }, |
| 338 | |
| 339 | 'debug_bot': { |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 340 | 'mixins': ['debug', 'shared', 'goma'], |
| 341 | }, |
| 342 | |
kjellander | 68815bf | 2016-08-10 09:49:37 -0700 | [diff] [blame] | 343 | 'debug_static_bot': { |
| 344 | 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], |
| 345 | }, |
| 346 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 347 | 'device': { |
kjellander@webrtc.org | 0c74ae1 | 2016-02-25 08:41:10 +0100 | [diff] [blame] | 348 | 'gn_args': 'ios_enable_code_signing=false', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 349 | }, |
| 350 | |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 351 | # This mixin is used to force configs that use it to fail. It |
| 352 | # is used in two cases: when we have bots that we haven't looked |
| 353 | # at yet and don't know whether they need MB or not, and for bots |
| 354 | # that are test-only and should never run MB. |
| 355 | 'error': { |
| 356 | 'gn_args': 'error', |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 357 | }, |
| 358 | |
ehmaldonado | d6e65b3 | 2016-09-05 06:43:56 -0700 | [diff] [blame] | 359 | 'gcc': { |
| 360 | 'gn_args': 'is_clang=false use_sysroot=false', |
ehmaldonado | d6e65b3 | 2016-09-05 06:43:56 -0700 | [diff] [blame] | 361 | }, |
| 362 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 363 | 'gn': {'type': 'gn'}, |
| 364 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 365 | 'goma': { |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 366 | 'gn_args': 'use_goma=true', |
ehmaldonado | 6b74865 | 2016-08-31 01:53:42 -0700 | [diff] [blame] | 367 | }, |
| 368 | |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 369 | 'ios': { |
| 370 | 'gn_args': 'target_os="ios"', |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 371 | }, |
| 372 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 373 | 'lsan': { |
| 374 | 'gn_args': 'is_lsan=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 375 | }, |
| 376 | |
ehmaldonado | ed8c8ed | 2016-11-23 12:58:35 -0800 | [diff] [blame] | 377 | 'memcheck': { |
| 378 | 'gn_args': 'rtc_use_memcheck=true', |
| 379 | }, |
| 380 | |
kjellander | 68815bf | 2016-08-10 09:49:37 -0700 | [diff] [blame] | 381 | 'minimal_symbols': { |
| 382 | 'gn_args': 'symbol_level=1', |
kjellander | 68815bf | 2016-08-10 09:49:37 -0700 | [diff] [blame] | 383 | }, |
| 384 | |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 385 | 'mipsel': { |
| 386 | 'gn_args': 'target_cpu="mipsel"', |
ehmaldonado | 89b0ca8 | 2016-08-09 08:15:03 -0700 | [diff] [blame] | 387 | }, |
| 388 | |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 389 | 'minimal_symbols': { |
| 390 | 'gn_args': 'symbol_level=1', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 391 | }, |
| 392 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 393 | 'msan': { |
| 394 | 'gn_args': ('is_msan=true msan_track_origins=2 ' |
| 395 | 'use_prebuilt_instrumented_libraries=true'), |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 396 | }, |
| 397 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 398 | 'openh264': { |
| 399 | 'gn_args': 'ffmpeg_branding="Chrome" rtc_use_h264=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 400 | }, |
| 401 | |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 402 | 'openh264_debug_bot': { |
| 403 | 'mixins': ['openh264', 'debug_bot'], |
| 404 | }, |
| 405 | |
| 406 | 'openh264_release_bot': { |
| 407 | 'mixins': ['openh264', 'release_bot'], |
| 408 | }, |
| 409 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 410 | 'release': { |
| 411 | 'gn_args': 'is_debug=false', |
| 412 | }, |
| 413 | |
| 414 | 'release_bot': { |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 415 | 'mixins': ['release', 'static', 'dcheck_always_on', 'goma'], |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 416 | }, |
| 417 | |
| 418 | 'shared': { |
| 419 | 'gn_args': 'is_component_build=true', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 420 | }, |
| 421 | |
| 422 | 'static': { |
| 423 | 'gn_args': 'is_component_build=false', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 424 | }, |
| 425 | |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 426 | 'syzyasan': { |
| 427 | 'gn_args': 'is_syzyasan=true', |
kjellander | 0ae7878 | 2016-08-11 00:49:47 -0700 | [diff] [blame] | 428 | }, |
| 429 | |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 430 | 'tsan': { |
| 431 | 'gn_args': 'is_tsan=true', |
kjellander | 3cb0c57 | 2016-08-09 13:00:57 -0700 | [diff] [blame] | 432 | }, |
| 433 | |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 434 | 'ubsan': { |
| 435 | 'gn_args': 'is_ubsan=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 436 | }, |
| 437 | |
| 438 | 'ubsan_vptr': { |
| 439 | 'gn_args': 'is_ubsan_vptr=true', |
ehmaldonado | 09abaa0 | 2016-08-09 02:26:16 -0700 | [diff] [blame] | 440 | }, |
| 441 | |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 442 | 'x64': { |
| 443 | 'gn_args': 'target_cpu="x64"', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 444 | }, |
| 445 | |
| 446 | 'x86': { |
| 447 | 'gn_args': 'target_cpu="x86"', |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 448 | }, |
| 449 | }, |
kjellander@webrtc.org | 861dcb7 | 2016-02-24 21:36:40 +0100 | [diff] [blame] | 450 | } |