| 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 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 | 1681 |
| 1682 'debug_trybot': { | 1682 'debug_trybot': { |
| 1683 'mixins': ['debug_bot', 'minimal_symbols'], | 1683 'mixins': ['debug_bot', 'minimal_symbols'], |
| 1684 }, | 1684 }, |
| 1685 | 1685 |
| 1686 'disable_nacl': { | 1686 'disable_nacl': { |
| 1687 'gn_args': 'enable_nacl=false', | 1687 'gn_args': 'enable_nacl=false', |
| 1688 }, | 1688 }, |
| 1689 | 1689 |
| 1690 'edge': { | 1690 'edge': { |
| 1691 'gn_args': 'sanitizer_coverage_flags="edge"', | 1691 'gn_args': 'sanitizer_coverage_flags="trace-pc-guard"', |
| 1692 }, | 1692 }, |
| 1693 | 1693 |
| 1694 # This mixin is used to force configs that use it to fail. It | 1694 # This mixin is used to force configs that use it to fail. It |
| 1695 # is used in two cases: when we have bots that we haven't looked | 1695 # is used in two cases: when we have bots that we haven't looked |
| 1696 # at yet and don't know whether they need MB or not, and for bots | 1696 # at yet and don't know whether they need MB or not, and for bots |
| 1697 # that are test-only and should never run MB. | 1697 # that are test-only and should never run MB. |
| 1698 'error': { | 1698 'error': { |
| 1699 'gn_args': 'error', | 1699 'gn_args': 'error', |
| 1700 }, | 1700 }, |
| 1701 | 1701 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1930 | 1930 |
| 1931 'x64': { | 1931 'x64': { |
| 1932 'gn_args': 'target_cpu="x64"', | 1932 'gn_args': 'target_cpu="x64"', |
| 1933 }, | 1933 }, |
| 1934 | 1934 |
| 1935 'x86': { | 1935 'x86': { |
| 1936 'gn_args': 'target_cpu="x86"', | 1936 'gn_args': 'target_cpu="x86"', |
| 1937 }, | 1937 }, |
| 1938 }, | 1938 }, |
| 1939 } | 1939 } |
| OLD | NEW |