| OLD | NEW |
| 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 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 | 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 | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 # FOR DETAILS ON THIS FILE SEE THE MAIN COPY IN //tools/mb/mb_config.pyl. | 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 | 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 | 11 # configurations source-side instead of in the buildbot scripts. That makes it |
| 12 # easy to try different configurations of GYP and GN in tryjob patches. | 12 # easy to try different configurations of GYP and GN in tryjob patches. |
| 13 | 13 |
| 14 { | 14 { |
| 15 # This is a map of buildbot master names -> buildbot builder names -> | 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, | 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. | 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 | 18 # The builders should be sorted by the order they appear in the /builders |
| 19 # page on the buildbots, *not* alphabetically. | 19 # page on the buildbots, *not* alphabetically. |
| 20 'masters': { | 20 'masters': { |
| 21 'client.webrtc': { | 21 'client.webrtc': { |
| 22 # iOS | 22 # iOS |
| 23 'iOS32 Debug': 'ios_gyp_debug_static_bot_arm_device', | 23 'iOS32 Debug': 'ios_gyp_debug_static_bot_arm_device', |
| 24 'iOS32 Release': 'ios_gyp_release_bot_arm_device', | 24 'iOS32 Release': 'ios_gyp_release_bot_arm_device', |
| 25 'iOS64 Debug': 'ios_gyp_debug_static_bot_arm64_device', | 25 'iOS64 Debug': 'ios_gyp_debug_static_bot_arm64_device', |
| 26 'iOS64 Release': 'ios_gyp_release_bot_arm64_device', | 26 'iOS64 Release': 'ios_gyp_release_bot_arm64_device', |
| 27 'iOS32 Debug Simulator': 'ios_gyp_debug_static_bot_x86', | 27 'iOS32 Simulator Debug': 'ios_gyp_debug_static_bot_x86', |
| 28 'iOS64 Debug Simulator': 'ios_gyp_debug_static_bot_x64', | 28 'iOS64 Simulator Debug': 'ios_gyp_debug_static_bot_x64', |
| 29 'iOS64 Debug (GN)': 'ios_gn_debug_static_bot_arm64_device', | 29 'iOS64 Debug (GN)': 'ios_gn_debug_static_bot_arm64_device', |
| 30 'iOS64 Release (GN)': 'ios_gn_release_bot_arm64_device', | 30 'iOS64 Release (GN)': 'ios_gn_release_bot_arm64_device', |
| 31 | 31 |
| 32 # Mac | 32 # Mac |
| 33 'Mac64 Debug': 'gyp_debug_bot_x64', | 33 'Mac64 Debug': 'gyp_debug_bot_x64', |
| 34 'Mac64 Release': 'gyp_release_bot_x64', | 34 'Mac64 Release': 'gyp_release_bot_x64', |
| 35 'Mac64 Debug (GN)': 'gn_debug_bot_x64', | 35 'Mac64 Debug (GN)': 'gn_debug_bot_x64', |
| 36 'Mac64 Release (GN)': 'gn_release_bot_x64', | 36 'Mac64 Release (GN)': 'gn_release_bot_x64', |
| 37 'Mac Asan': 'mac_gyp_asan_clang_release_bot_x64', | 37 'Mac Asan': 'mac_gyp_asan_clang_release_bot_x64', |
| 38 'Mac64 Release [large tests]': 'gyp_release_bot_x64', | 38 'Mac64 Release [large tests]': 'gyp_release_bot_x64', |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 'gn_args': 'target_cpu="x64"', | 490 'gn_args': 'target_cpu="x64"', |
| 491 'gyp_defines': 'target_arch=x64', | 491 'gyp_defines': 'target_arch=x64', |
| 492 }, | 492 }, |
| 493 | 493 |
| 494 'x86': { | 494 'x86': { |
| 495 'gn_args': 'target_cpu="x86"', | 495 'gn_args': 'target_cpu="x86"', |
| 496 'gyp_defines': 'target_arch=ia32', | 496 'gyp_defines': 'target_arch=ia32', |
| 497 }, | 497 }, |
| 498 }, | 498 }, |
| 499 } | 499 } |
| OLD | NEW |