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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot', | 239 'libfuzzer', 'asan', 'optimize_for_fuzzing', 'openh264_release_bot', |
240 'x64', 'no_rtc_tests' | 240 'x64', 'no_rtc_tests' |
241 ], | 241 ], |
242 'memcheck_release_bot_x64': [ | 242 'memcheck_release_bot_x64': [ |
243 'memcheck', 'gn', 'openh264_release_bot', 'x64' | 243 'memcheck', 'gn', 'openh264_release_bot', 'x64' |
244 ], | 244 ], |
245 | 245 |
246 # iOS | 246 # iOS |
247 # The 'ios' config is just used for auditing. iOS bots | 247 # The 'ios' config is just used for auditing. iOS bots |
248 # use the ios recipes and look up their GN arguments via files checked in | 248 # use the ios recipes and look up their GN arguments via files checked in |
249 # under //tools-webrtc/ios/bots. It is an error to actually use one of these | 249 # under //tools_webrtc/ios/bots. It is an error to actually use one of these |
250 # configs to generate the build files. | 250 # configs to generate the build files. |
251 'ios': [ 'error'], | 251 'ios': [ 'error'], |
252 | 252 |
253 # Windows | 253 # Windows |
254 'win_clang_debug_bot_x86': [ | 254 'win_clang_debug_bot_x86': [ |
255 'gn', 'clang', 'openh264_debug_bot', 'x86', | 255 'gn', 'clang', 'openh264_debug_bot', 'x86', |
256 ], | 256 ], |
257 'win_clang_release_bot_x86': [ | 257 'win_clang_release_bot_x86': [ |
258 'gn', 'clang', 'openh264_release_bot', 'x86', | 258 'gn', 'clang', 'openh264_release_bot', 'x86', |
259 ], | 259 ], |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 | 461 |
462 'x64': { | 462 'x64': { |
463 'gn_args': 'target_cpu="x64"', | 463 'gn_args': 'target_cpu="x64"', |
464 }, | 464 }, |
465 | 465 |
466 'x86': { | 466 'x86': { |
467 'gn_args': 'target_cpu="x86"', | 467 'gn_args': 'target_cpu="x86"', |
468 }, | 468 }, |
469 }, | 469 }, |
470 } | 470 } |
OLD | NEW |