| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 # This is a map of buildbot master names -> buildbot builder names -> | 6 # This is a map of buildbot master names -> buildbot builder names -> |
| 7 # config names (where each config name is a key in the 'configs' dict, | 7 # config names (where each config name is a key in the 'configs' dict, |
| 8 # below). MB uses this dict to look up which config to use for a given bot. | 8 # below). MB uses this dict to look up which config to use for a given bot. |
| 9 'masters': { | 9 'masters': { |
| 10 'chromeos.chrome': { | 10 'chromeos.chrome': { |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 487 'android_compile_rel': 'android_release_trybot', | 487 'android_compile_rel': 'android_release_trybot', |
| 488 'android_compile_x64_dbg': 'android_debug_trybot_x64', | 488 'android_compile_x64_dbg': 'android_debug_trybot_x64', |
| 489 'android_compile_x86_dbg': 'android_debug_trybot_x86', | 489 'android_compile_x86_dbg': 'android_debug_trybot_x86', |
| 490 'android_coverage': 'android_debug_trybot_java_coverage', | 490 'android_coverage': 'android_debug_trybot_java_coverage', |
| 491 'android_cronet': 'android_cronet_release_trybot_arm_no_neon', | 491 'android_cronet': 'android_cronet_release_trybot_arm_no_neon', |
| 492 | 492 |
| 493 # TODO(crbug/597596): Switch this back to debug_trybot when cronet's | 493 # TODO(crbug/597596): Switch this back to debug_trybot when cronet's |
| 494 # shared library loading is fixed. | 494 # shared library loading is fixed. |
| 495 'android_cronet_tester': 'android_cronet_debug_static_bot_arm_no_neon', | 495 'android_cronet_tester': 'android_cronet_debug_static_bot_arm_no_neon', |
| 496 | 496 |
| 497 'android_n5x_swarming_dbg': 'android_debug_trybot_arm64', |
| 497 'android_n5x_swarming_rel': 'android_release_trybot_arm64', | 498 'android_n5x_swarming_rel': 'android_release_trybot_arm64', |
| 498 'android_optional_gpu_tests_rel': 'gpu_tests_deqp_android_release_trybot_a
rm64', | 499 'android_optional_gpu_tests_rel': 'gpu_tests_deqp_android_release_trybot_a
rm64', |
| 500 'android_unswarmed_n5_rel': 'android_release_trybot', |
| 501 'android_unswarmed_n5x_rel': 'android_release_trybot_arm64', |
| 499 'cast_shell_android': 'android_cast_debug_static_bot', | 502 'cast_shell_android': 'android_cast_debug_static_bot', |
| 500 'linux_android_dbg_ng': 'android_debug_trybot', | 503 'linux_android_dbg_ng': 'android_debug_trybot', |
| 501 'linux_android_rel_ng': 'android_release_trybot', | 504 'linux_android_rel_ng': 'android_release_trybot', |
| 502 }, | 505 }, |
| 503 | 506 |
| 504 'tryserver.chromium.angle': { | 507 'tryserver.chromium.angle': { |
| 505 'android_angle_rel_ng': 'gpu_tests_deqp_android_release_trybot_arm64', | 508 'android_angle_rel_ng': 'gpu_tests_deqp_android_release_trybot_arm64', |
| 506 'linux_angle_chromeos_rel_ng': 'gpu_fyi_tests_chromeos_release_trybot', | 509 'linux_angle_chromeos_rel_ng': 'gpu_fyi_tests_chromeos_release_trybot', |
| 507 'linux_angle_dbg_ng': 'gpu_fyi_tests_debug_trybot', | 510 'linux_angle_dbg_ng': 'gpu_fyi_tests_debug_trybot', |
| 508 'linux_angle_rel_ng': 'gpu_fyi_tests_release_trybot', | 511 'linux_angle_rel_ng': 'gpu_fyi_tests_release_trybot', |
| (...skipping 1362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1871 | 1874 |
| 1872 'x64': { | 1875 'x64': { |
| 1873 'gn_args': 'target_cpu="x64"', | 1876 'gn_args': 'target_cpu="x64"', |
| 1874 }, | 1877 }, |
| 1875 | 1878 |
| 1876 'x86': { | 1879 'x86': { |
| 1877 'gn_args': 'target_cpu="x86"', | 1880 'gn_args': 'target_cpu="x86"', |
| 1878 }, | 1881 }, |
| 1879 }, | 1882 }, |
| 1880 } | 1883 } |
| OLD | NEW |