| 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 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1025 | 1025 |
| 1026 'chromeos_with_codecs_debug_bot': [ | 1026 'chromeos_with_codecs_debug_bot': [ |
| 1027 'chromeos_with_codecs', 'debug_bot', | 1027 'chromeos_with_codecs', 'debug_bot', |
| 1028 ], | 1028 ], |
| 1029 | 1029 |
| 1030 'chromeos_with_codecs_debug_trybot': [ | 1030 'chromeos_with_codecs_debug_trybot': [ |
| 1031 'chromeos_with_codecs', 'debug_trybot', | 1031 'chromeos_with_codecs', 'debug_trybot', |
| 1032 ], | 1032 ], |
| 1033 | 1033 |
| 1034 'chromeos_with_codecs_ozone_release_bot': [ | 1034 'chromeos_with_codecs_ozone_release_bot': [ |
| 1035 'chromeos_with_codecs', 'ozone', 'release_bot', | 1035 'chromeos_with_codecs', 'ozone', 'default_ozone_platform_x11', 'release_bo
t', |
| 1036 ], | 1036 ], |
| 1037 | 1037 |
| 1038 'chromeos_with_codecs_ozone_release_trybot': [ | 1038 'chromeos_with_codecs_ozone_release_trybot': [ |
| 1039 'chromeos_with_codecs', 'ozone', 'release_trybot', | 1039 'chromeos_with_codecs', 'ozone', 'default_ozone_platform_x11', 'release_tr
ybot', |
| 1040 ], | 1040 ], |
| 1041 | 1041 |
| 1042 'chromeos_with_codecs_release_bot': [ | 1042 'chromeos_with_codecs_release_bot': [ |
| 1043 'chromeos_with_codecs', 'release_bot', | 1043 'chromeos_with_codecs', 'release_bot', |
| 1044 ], | 1044 ], |
| 1045 | 1045 |
| 1046 'chromeos_with_codecs_release_trybot': [ | 1046 'chromeos_with_codecs_release_trybot': [ |
| 1047 'chromeos_with_codecs', 'release_trybot', | 1047 'chromeos_with_codecs', 'release_trybot', |
| 1048 ], | 1048 ], |
| 1049 | 1049 |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1641 }, | 1641 }, |
| 1642 | 1642 |
| 1643 'debug_static_bot': { | 1643 'debug_static_bot': { |
| 1644 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], | 1644 'mixins': ['debug', 'static', 'minimal_symbols', 'goma'], |
| 1645 }, | 1645 }, |
| 1646 | 1646 |
| 1647 'debug_trybot': { | 1647 'debug_trybot': { |
| 1648 'mixins': ['debug_bot', 'minimal_symbols'], | 1648 'mixins': ['debug_bot', 'minimal_symbols'], |
| 1649 }, | 1649 }, |
| 1650 | 1650 |
| 1651 'default_ozone_platform_x11': { |
| 1652 'gn_args': 'ozone_platform="x11"', |
| 1653 }, |
| 1654 |
| 1651 'disable_nacl': { | 1655 'disable_nacl': { |
| 1652 'gn_args': 'enable_nacl=false', | 1656 'gn_args': 'enable_nacl=false', |
| 1653 }, | 1657 }, |
| 1654 | 1658 |
| 1655 'edge': { | 1659 'edge': { |
| 1656 'gn_args': 'sanitizer_coverage_flags="edge"', | 1660 'gn_args': 'sanitizer_coverage_flags="edge"', |
| 1657 }, | 1661 }, |
| 1658 | 1662 |
| 1659 # This mixin is used to force configs that use it to fail. It | 1663 # This mixin is used to force configs that use it to fail. It |
| 1660 # is used in two cases: when we have bots that we haven't looked | 1664 # is used in two cases: when we have bots that we haven't looked |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1882 | 1886 |
| 1883 'x64': { | 1887 'x64': { |
| 1884 'gn_args': 'target_cpu="x64"', | 1888 'gn_args': 'target_cpu="x64"', |
| 1885 }, | 1889 }, |
| 1886 | 1890 |
| 1887 'x86': { | 1891 'x86': { |
| 1888 'gn_args': 'target_cpu="x86"', | 1892 'gn_args': 'target_cpu="x86"', |
| 1889 }, | 1893 }, |
| 1890 }, | 1894 }, |
| 1891 } | 1895 } |
| OLD | NEW |