| 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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 'android_compile_rel': 'android_gyp_release_bot_arm', | 96 'android_compile_rel': 'android_gyp_release_bot_arm', |
| 97 'android_compile_arm64_dbg': 'android_gyp_debug_bot_arm64', | 97 'android_compile_arm64_dbg': 'android_gyp_debug_bot_arm64', |
| 98 'android_compile_arm64_rel': 'android_gyp_release_bot_arm64', | 98 'android_compile_arm64_rel': 'android_gyp_release_bot_arm64', |
| 99 'android_compile_x86_dbg': 'android_gyp_debug_bot_x86', | 99 'android_compile_x86_dbg': 'android_gyp_debug_bot_x86', |
| 100 'android_compile_x86_rel': 'android_gyp_release_bot_x86', | 100 'android_compile_x86_rel': 'android_gyp_release_bot_x86', |
| 101 'android_compile_x64_dbg': 'android_gyp_debug_bot_x64', | 101 'android_compile_x64_dbg': 'android_gyp_debug_bot_x64', |
| 102 'android_compile_mips_dbg': 'android_gyp_clang_debug_bot_mipsel', | 102 'android_compile_mips_dbg': 'android_gyp_clang_debug_bot_mipsel', |
| 103 'android_dbg': 'android_gyp_debug_bot_arm', | 103 'android_dbg': 'android_gyp_debug_bot_arm', |
| 104 'android_rel': 'android_gyp_release_bot_arm', | 104 'android_rel': 'android_gyp_release_bot_arm', |
| 105 'android_clang_dbg': 'android_gyp_clang_debug_bot_arm', | 105 'android_clang_dbg': 'android_gyp_clang_debug_bot_arm', |
| 106 'android_amd64_rel': 'android_gyp_release_bot_arm64', | 106 'android_arm64_rel': 'android_gyp_release_bot_arm64', |
| 107 'android_n6': 'android_gyp_debug_bot_arm', | 107 'android_n6': 'android_gyp_debug_bot_arm', |
| 108 'android_gn_dbg': 'android_gn_debug_bot_arm', | 108 'android_gn_dbg': 'android_gn_debug_bot_arm', |
| 109 'android_gn_rel': 'android_gn_release_bot_arm', | 109 'android_gn_rel': 'android_gn_release_bot_arm', |
| 110 }, | 110 }, |
| 111 }, | 111 }, |
| 112 | 112 |
| 113 # This is the list of configs that you can pass to mb; each config | 113 # This is the list of configs that you can pass to mb; each config |
| 114 # represents a particular combination of GYP_DEFINES/gn args that | 114 # represents a particular combination of GYP_DEFINES/gn args that |
| 115 # we must support. A given config *may* be platform-specific but | 115 # we must support. A given config *may* be platform-specific but |
| 116 # is not necessarily so (i.e., we might have mac, win, and linux | 116 # is not necessarily so (i.e., we might have mac, win, and linux |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 'gn_args': 'target_cpu="x64"', | 391 'gn_args': 'target_cpu="x64"', |
| 392 'gyp_defines': 'target_arch=x64', | 392 'gyp_defines': 'target_arch=x64', |
| 393 }, | 393 }, |
| 394 | 394 |
| 395 'x86': { | 395 'x86': { |
| 396 'gn_args': 'target_cpu="x86"', | 396 'gn_args': 'target_cpu="x86"', |
| 397 'gyp_defines': 'target_arch=ia32', | 397 'gyp_defines': 'target_arch=ia32', |
| 398 }, | 398 }, |
| 399 }, | 399 }, |
| 400 } | 400 } |
| OLD | NEW |