| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 'Win x64 Builder': 'official_goma', | 335 'Win x64 Builder': 'official_goma', |
| 336 }, | 336 }, |
| 337 | 337 |
| 338 'chromium.perf.fyi': { | 338 'chromium.perf.fyi': { |
| 339 'Android Builder FYI': 'official_goma_minimal_symbols_android', | 339 'Android Builder FYI': 'official_goma_minimal_symbols_android', |
| 340 'Win Builder FYI': 'official_goma', | 340 'Win Builder FYI': 'official_goma', |
| 341 'Win Clang Builder': 'official_goma_minimal_symbols_clang', | 341 'Win Clang Builder': 'official_goma_minimal_symbols_clang', |
| 342 'Battor Agent Linux': 'official_goma_minimal_symbols_clang', | 342 'Battor Agent Linux': 'official_goma_minimal_symbols_clang', |
| 343 }, | 343 }, |
| 344 | 344 |
| 345 'chromium.swarm': { |
| 346 'Android Swarm': 'android_without_codecs_release_bot_minimal_symbols', |
| 347 'Linux Swarm': 'release_bot', |
| 348 'Mac Swarm': 'release_bot_mac_strip', |
| 349 'Windows Swarm': 'release_bot_x86', |
| 350 }, |
| 351 |
| 345 'client.nacl.sdk': { | 352 'client.nacl.sdk': { |
| 346 'linux-sdk-asan-multi': 'release_bot', | 353 'linux-sdk-asan-multi': 'release_bot', |
| 347 'linux-sdk-multi': 'release_bot', | 354 'linux-sdk-multi': 'release_bot', |
| 348 'linux-sdk-multirel': 'release_bot', | 355 'linux-sdk-multirel': 'release_bot', |
| 349 'mac-sdk-multi': 'release_bot', | 356 'mac-sdk-multi': 'release_bot', |
| 350 'mac-sdk-multirel': 'release_bot', | 357 'mac-sdk-multirel': 'release_bot', |
| 351 'windows-sdk-multi': 'release_bot_x86', | 358 'windows-sdk-multi': 'release_bot_x86', |
| 352 'windows-sdk-multirel': 'release_bot_x86', | 359 'windows-sdk-multirel': 'release_bot_x86', |
| 353 }, | 360 }, |
| 354 | 361 |
| (...skipping 1538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1893 | 1900 |
| 1894 'x64': { | 1901 'x64': { |
| 1895 'gn_args': 'target_cpu="x64"', | 1902 'gn_args': 'target_cpu="x64"', |
| 1896 }, | 1903 }, |
| 1897 | 1904 |
| 1898 'x86': { | 1905 'x86': { |
| 1899 'gn_args': 'target_cpu="x86"', | 1906 'gn_args': 'target_cpu="x86"', |
| 1900 }, | 1907 }, |
| 1901 }, | 1908 }, |
| 1902 } | 1909 } |
| OLD | NEW |