Chromium Code Reviews| 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 | 10 |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 250 'GPU Win Clang Builder (dbg)': 'gpu_fyi_tests_win_clang_debug_bot', | 250 'GPU Win Clang Builder (dbg)': 'gpu_fyi_tests_win_clang_debug_bot', |
| 251 'GPU Win x64 Builder': 'gpu_tests_deqp_gles_release_trybot', | 251 'GPU Win x64 Builder': 'gpu_tests_deqp_gles_release_trybot', |
| 252 'GPU Win x64 Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot', | 252 'GPU Win x64 Builder (dbg)': 'gpu_tests_deqp_gles_debug_trybot', |
| 253 'Linux ChromiumOS Builder': 'gpu_fyi_tests_chromeos_release_trybot', | 253 'Linux ChromiumOS Builder': 'gpu_fyi_tests_chromeos_release_trybot', |
| 254 'Linux ChromiumOS Ozone Builder': 'gpu_fyi_tests_chromeos_ozone_release_tr ybot', | 254 'Linux ChromiumOS Ozone Builder': 'gpu_fyi_tests_chromeos_ozone_release_tr ybot', |
| 255 'Linux GPU TSAN Release': 'gpu_fyi_tests_release_trybot_tsan', | 255 'Linux GPU TSAN Release': 'gpu_fyi_tests_release_trybot_tsan', |
| 256 'Mac GPU ASAN Release': 'gpu_fyi_tests_release_trybot_asan', | 256 'Mac GPU ASAN Release': 'gpu_fyi_tests_release_trybot_asan', |
| 257 }, | 257 }, |
| 258 | 258 |
| 259 'chromium.infra.codesearch': { | 259 'chromium.infra.codesearch': { |
| 260 'codesearch-gen-chromium-android': 'codesearch_gen_chromium_android_bot', | 260 'codesearch-gen-chromium-android': { |
| 261 'codesearch-gen-chromium-chromiumos': 'codesearch_gen_chromium_chromiumos_ bot', | 261 'android': 'codesearch_gen_chromium_android_bot', |
| 262 'codesearch-gen-chromium-linux': 'codesearch_gen_chromium_linux_bot', | 262 }, |
| 263 'codesearch-gen-chromium-chromiumos': { | |
| 264 'chromiumos': 'codesearch_gen_chromium_chromiumos_bot', | |
|
jbudorick
2017/05/09 23:15:18
er, actually, you've got 'chromiumos' here and 'ch
shenghuazhang
2017/05/09 23:21:22
oops :/ Done.
| |
| 265 'linux': 'codesearch_gen_chromium_linux_bot', | |
| 266 }, | |
| 267 'codesearch-gen-chromium-linux': { | |
| 268 'linux': 'codesearch_gen_chromium_linux_bot', | |
| 269 }, | |
| 263 }, | 270 }, |
| 264 | 271 |
| 265 'chromium.linux': { | 272 'chromium.linux': { |
| 266 'Android Arm64 Builder (dbg)': 'android_debug_static_bot_arm64', | 273 'Android Arm64 Builder (dbg)': 'android_debug_static_bot_arm64', |
| 267 'Android Builder (dbg)': 'android_debug_static_bot', | 274 'Android Builder (dbg)': 'android_debug_static_bot', |
| 268 'Android Builder': 'android_release_bot_minimal_symbols', | 275 'Android Builder': 'android_release_bot_minimal_symbols', |
| 269 'Android Clang Builder (dbg)': 'android_clang_asan_errorprone_findbugs_deb ug_bot_minimal_symbols', | 276 'Android Clang Builder (dbg)': 'android_clang_asan_errorprone_findbugs_deb ug_bot_minimal_symbols', |
| 270 'Android Tests (dbg)': 'android_debug_static_bot', | 277 'Android Tests (dbg)': 'android_debug_static_bot', |
| 271 'Android Tests': 'android_release_bot_minimal_symbols', | 278 'Android Tests': 'android_release_bot_minimal_symbols', |
| 272 'Cast Android (dbg)': 'android_cast_debug_static_bot', | 279 'Cast Android (dbg)': 'android_cast_debug_static_bot', |
| (...skipping 1629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1902 | 1909 |
| 1903 'x64': { | 1910 'x64': { |
| 1904 'gn_args': 'target_cpu="x64"', | 1911 'gn_args': 'target_cpu="x64"', |
| 1905 }, | 1912 }, |
| 1906 | 1913 |
| 1907 'x86': { | 1914 'x86': { |
| 1908 'gn_args': 'target_cpu="x86"', | 1915 'gn_args': 'target_cpu="x86"', |
| 1909 }, | 1916 }, |
| 1910 }, | 1917 }, |
| 1911 } | 1918 } |
| OLD | NEW |