| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'android_compile_arm64_dbg': 'android_debug_static_bot_arm64', | 144 'android_compile_arm64_dbg': 'android_debug_static_bot_arm64', |
| 145 'android_compile_arm64_rel': 'android_release_bot_arm64', | 145 'android_compile_arm64_rel': 'android_release_bot_arm64', |
| 146 'android_compile_x86_dbg': 'android_debug_static_bot_x86', | 146 'android_compile_x86_dbg': 'android_debug_static_bot_x86', |
| 147 'android_compile_x86_rel': 'android_release_bot_x86', | 147 'android_compile_x86_rel': 'android_release_bot_x86', |
| 148 'android_compile_x64_dbg': 'android_debug_static_bot_x64', | 148 'android_compile_x64_dbg': 'android_debug_static_bot_x64', |
| 149 'android_compile_mips_dbg': 'android_clang_debug_static_bot_mipsel', | 149 'android_compile_mips_dbg': 'android_clang_debug_static_bot_mipsel', |
| 150 'android_dbg': 'android_debug_static_bot_arm', | 150 'android_dbg': 'android_debug_static_bot_arm', |
| 151 'android_rel': 'android_release_bot_arm', | 151 'android_rel': 'android_release_bot_arm', |
| 152 'android_clang_dbg': 'android_clang_debug_bot_arm', | 152 'android_clang_dbg': 'android_clang_debug_bot_arm', |
| 153 'android_arm64_rel': 'android_release_bot_arm64', | 153 'android_arm64_rel': 'android_release_bot_arm64', |
| 154 'android_n6': 'android_debug_static_bot_arm', | 154 'android_experimental': 'android_release_bot_arm', |
| 155 | 155 |
| 156 # Windows | 156 # Windows |
| 157 'win_compile_dbg': 'debug_bot_x86', | 157 'win_compile_dbg': 'debug_bot_x86', |
| 158 'win_compile_rel': 'release_bot_x86', | 158 'win_compile_rel': 'release_bot_x86', |
| 159 'win_compile_x64_dbg': 'debug_bot_x64', | 159 'win_compile_x64_dbg': 'debug_bot_x64', |
| 160 'win_compile_x64_rel': 'release_bot_x64', | 160 'win_compile_x64_rel': 'release_bot_x64', |
| 161 'win_dbg': 'debug_bot_x86', | 161 'win_dbg': 'debug_bot_x86', |
| 162 'win_rel': 'release_bot_x86', | 162 'win_rel': 'release_bot_x86', |
| 163 'win_x64_dbg': 'debug_bot_x64', | 163 'win_x64_dbg': 'debug_bot_x64', |
| 164 'win_x64_rel': 'release_bot_x64', | 164 'win_x64_rel': 'release_bot_x64', |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 434 |
| 435 'x64': { | 435 'x64': { |
| 436 'gn_args': 'target_cpu="x64"', | 436 'gn_args': 'target_cpu="x64"', |
| 437 }, | 437 }, |
| 438 | 438 |
| 439 'x86': { | 439 'x86': { |
| 440 'gn_args': 'target_cpu="x86"', | 440 'gn_args': 'target_cpu="x86"', |
| 441 }, | 441 }, |
| 442 }, | 442 }, |
| 443 } | 443 } |
| OLD | NEW |