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