| 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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 'Linux Builder': 'official_goma', | 333 'Linux Builder': 'official_goma', |
| 334 'Mac Builder': 'official_goma', | 334 'Mac Builder': 'official_goma', |
| 335 'Win Builder': 'official_goma_x86', | 335 'Win Builder': 'official_goma_x86', |
| 336 'Win x64 Builder': 'official_goma', | 336 'Win x64 Builder': 'official_goma', |
| 337 }, | 337 }, |
| 338 | 338 |
| 339 'chromium.perf.fyi': { | 339 'chromium.perf.fyi': { |
| 340 'Android Builder FYI': 'official_goma_minimal_symbols_android', | 340 'Android Builder FYI': 'official_goma_minimal_symbols_android', |
| 341 'Win Builder FYI': 'official_goma', | 341 'Win Builder FYI': 'official_goma', |
| 342 'Win Clang Builder': 'official_goma_minimal_symbols_clang', | 342 'Win Clang Builder': 'official_goma_minimal_symbols_clang', |
| 343 'Battor Agent Linux': 'official_goma_minimal_symbols_clang', | 343 'Battor Agent Linux': 'debug_bot', |
| 344 }, | 344 }, |
| 345 | 345 |
| 346 'chromium.swarm': { | 346 'chromium.swarm': { |
| 347 'Android Swarm': 'android_without_codecs_release_bot_minimal_symbols', | 347 'Android Swarm': 'android_without_codecs_release_bot_minimal_symbols', |
| 348 'Linux Swarm': 'release_bot', | 348 'Linux Swarm': 'release_bot', |
| 349 'Mac Swarm': 'release_bot_mac_strip', | 349 'Mac Swarm': 'release_bot_mac_strip', |
| 350 'Windows Swarm': 'release_bot_x86', | 350 'Windows Swarm': 'release_bot_x86', |
| 351 }, | 351 }, |
| 352 | 352 |
| 353 'client.nacl.sdk': { | 353 'client.nacl.sdk': { |
| (...skipping 1548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1902 | 1902 |
| 1903 'x64': { | 1903 'x64': { |
| 1904 'gn_args': 'target_cpu="x64"', | 1904 'gn_args': 'target_cpu="x64"', |
| 1905 }, | 1905 }, |
| 1906 | 1906 |
| 1907 'x86': { | 1907 'x86': { |
| 1908 'gn_args': 'target_cpu="x86"', | 1908 'gn_args': 'target_cpu="x86"', |
| 1909 }, | 1909 }, |
| 1910 }, | 1910 }, |
| 1911 } | 1911 } |
| OLD | NEW |