| 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 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 'mac_gn_dbg': 'gyp_debug_bot_x64_exclude_tests', | 133 'mac_gn_dbg': 'gyp_debug_bot_x64_exclude_tests', |
| 134 'mac_gn_rel': 'gyp_release_bot_x64_exclude_tests', | 134 'mac_gn_rel': 'gyp_release_bot_x64_exclude_tests', |
| 135 'mac_gyp_dbg': 'gyp_debug_bot_x64_exclude_tests', | 135 'mac_gyp_dbg': 'gyp_debug_bot_x64_exclude_tests', |
| 136 'mac_gyp_rel': 'gyp_release_bot_x64_exclude_tests', | 136 'mac_gyp_rel': 'gyp_release_bot_x64_exclude_tests', |
| 137 | 137 |
| 138 # Linux | 138 # Linux |
| 139 'linux_compile_dbg': 'gn_debug_bot_x64', | 139 'linux_compile_dbg': 'gn_debug_bot_x64', |
| 140 'linux_compile_rel': 'gn_release_bot_x64', | 140 'linux_compile_rel': 'gn_release_bot_x64', |
| 141 'linux_dbg': 'gn_debug_bot_x64', | 141 'linux_dbg': 'gn_debug_bot_x64', |
| 142 'linux_rel': 'gn_release_bot_x64', | 142 'linux_rel': 'gn_release_bot_x64', |
| 143 'linux32_dbg': 'gn_debug_bot_x86', |
| 144 'linux32_rel': 'gn_release_bot_x86', |
| 143 'linux_arm': 'gn_crosscompile_release_bot_arm', | 145 'linux_arm': 'gn_crosscompile_release_bot_arm', |
| 144 'linux_asan': 'gn_asan_lsan_clang_release_bot_x64', | 146 'linux_asan': 'gn_asan_lsan_clang_release_bot_x64', |
| 145 'linux_memcheck': 'gn_memcheck_release_bot_x64', | 147 'linux_memcheck': 'gn_memcheck_release_bot_x64', |
| 146 'linux_msan': 'gn_msan_clang_release_bot_x64', | 148 'linux_msan': 'gn_msan_clang_release_bot_x64', |
| 147 'linux_tsan2': 'gn_tsan_clang_release_bot_x64', | 149 'linux_tsan2': 'gn_tsan_clang_release_bot_x64', |
| 148 'linux_ubsan': 'gn_ubsan_clang_release_bot_x64', | 150 'linux_ubsan': 'gn_ubsan_clang_release_bot_x64', |
| 149 'linux_ubsan_vptr': 'gn_ubsan_vptr_clang_release_bot_x64', | 151 'linux_ubsan_vptr': 'gn_ubsan_vptr_clang_release_bot_x64', |
| 150 'linux_baremetal': 'gn_release_bot_x64', | 152 'linux_baremetal': 'gn_release_bot_x64', |
| 151 'linux_swarming': 'swarming_gn_debug_bot_x64', | 153 'linux_swarming': 'swarming_gn_debug_bot_x64', |
| 152 # TODO(kjellander): Remove the two GN configs below as soon we've renamed | 154 # TODO(kjellander): Remove the two GN configs below as soon we've renamed |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 'gn_args': 'target_cpu="x64"', | 571 'gn_args': 'target_cpu="x64"', |
| 570 'gyp_defines': 'target_arch=x64', | 572 'gyp_defines': 'target_arch=x64', |
| 571 }, | 573 }, |
| 572 | 574 |
| 573 'x86': { | 575 'x86': { |
| 574 'gn_args': 'target_cpu="x86"', | 576 'gn_args': 'target_cpu="x86"', |
| 575 'gyp_defines': 'target_arch=ia32', | 577 'gyp_defines': 'target_arch=ia32', |
| 576 }, | 578 }, |
| 577 }, | 579 }, |
| 578 } | 580 } |
| OLD | NEW |