| 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 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 'android_compile_rel': 'android_release_trybot', | 484 'android_compile_rel': 'android_release_trybot', |
| 485 'android_compile_x64_dbg': 'android_debug_trybot_x64', | 485 'android_compile_x64_dbg': 'android_debug_trybot_x64', |
| 486 'android_compile_x86_dbg': 'android_debug_trybot_x86', | 486 'android_compile_x86_dbg': 'android_debug_trybot_x86', |
| 487 'android_coverage': 'android_debug_trybot_java_coverage', | 487 'android_coverage': 'android_debug_trybot_java_coverage', |
| 488 'android_cronet': 'android_cronet_release_trybot_arm_no_neon', | 488 'android_cronet': 'android_cronet_release_trybot_arm_no_neon', |
| 489 | 489 |
| 490 # TODO(crbug/597596): Switch this back to debug_trybot when cronet's | 490 # TODO(crbug/597596): Switch this back to debug_trybot when cronet's |
| 491 # shared library loading is fixed. | 491 # shared library loading is fixed. |
| 492 'android_cronet_tester': 'android_cronet_debug_static_bot_arm_no_neon', | 492 'android_cronet_tester': 'android_cronet_debug_static_bot_arm_no_neon', |
| 493 | 493 |
| 494 'android_n5x_swarming_dbg': 'android_debug_trybot_arm64', |
| 494 'android_n5x_swarming_rel': 'android_release_trybot_arm64', | 495 'android_n5x_swarming_rel': 'android_release_trybot_arm64', |
| 495 'android_optional_gpu_tests_rel': 'gpu_tests_deqp_android_release_trybot_a
rm64', | 496 'android_optional_gpu_tests_rel': 'gpu_tests_deqp_android_release_trybot_a
rm64', |
| 497 'android_unswarmed_n5_rel': 'android_release_trybot', |
| 498 'android_unswarmed_n5x_rel': 'android_release_trybot_arm64', |
| 496 'cast_shell_android': 'android_cast_debug_static_bot', | 499 'cast_shell_android': 'android_cast_debug_static_bot', |
| 497 'linux_android_dbg_ng': 'android_debug_trybot', | 500 'linux_android_dbg_ng': 'android_debug_trybot', |
| 498 'linux_android_rel_ng': 'android_release_trybot', | 501 'linux_android_rel_ng': 'android_release_trybot', |
| 499 }, | 502 }, |
| 500 | 503 |
| 501 'tryserver.chromium.angle': { | 504 'tryserver.chromium.angle': { |
| 502 'android_angle_rel_ng': 'gpu_tests_deqp_android_release_trybot_arm64', | 505 'android_angle_rel_ng': 'gpu_tests_deqp_android_release_trybot_arm64', |
| 503 'linux_angle_chromeos_rel_ng': 'gpu_fyi_tests_chromeos_release_trybot', | 506 'linux_angle_chromeos_rel_ng': 'gpu_fyi_tests_chromeos_release_trybot', |
| 504 'linux_angle_dbg_ng': 'gpu_fyi_tests_debug_trybot', | 507 'linux_angle_dbg_ng': 'gpu_fyi_tests_debug_trybot', |
| 505 'linux_angle_rel_ng': 'gpu_fyi_tests_release_trybot', | 508 'linux_angle_rel_ng': 'gpu_fyi_tests_release_trybot', |
| (...skipping 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1860 | 1863 |
| 1861 'x64': { | 1864 'x64': { |
| 1862 'gn_args': 'target_cpu="x64"', | 1865 'gn_args': 'target_cpu="x64"', |
| 1863 }, | 1866 }, |
| 1864 | 1867 |
| 1865 'x86': { | 1868 'x86': { |
| 1866 'gn_args': 'target_cpu="x86"', | 1869 'gn_args': 'target_cpu="x86"', |
| 1867 }, | 1870 }, |
| 1868 }, | 1871 }, |
| 1869 } | 1872 } |
| OLD | NEW |