| 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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1118 | 1118 |
| 1119 'clang_tot_full_symbols_shared_debug_use_lld_x86': [ | 1119 'clang_tot_full_symbols_shared_debug_use_lld_x86': [ |
| 1120 'clang_tot', 'full_symbols', 'shared', 'debug', 'use_lld', 'x86', | 1120 'clang_tot', 'full_symbols', 'shared', 'debug', 'use_lld', 'x86', |
| 1121 ], | 1121 ], |
| 1122 | 1122 |
| 1123 'clang_tot_minimal_symbols_shared_debug_x86': [ | 1123 'clang_tot_minimal_symbols_shared_debug_x86': [ |
| 1124 'clang_tot', 'minimal_symbols', 'shared', 'debug', 'x86', | 1124 'clang_tot', 'minimal_symbols', 'shared', 'debug', 'x86', |
| 1125 ], | 1125 ], |
| 1126 | 1126 |
| 1127 'clang_tot_shared_release_use_lld': [ | 1127 'clang_tot_shared_release_use_lld': [ |
| 1128 'clang_tot', 'shared', 'release', 'use_lld', | 1128 # TODO(crbug.com/706492): Enable symbols when LLD makes PDBs. |
| 1129 'clang_tot', 'no_symbols', 'shared', 'release', 'use_lld', |
| 1129 ], | 1130 ], |
| 1130 | 1131 |
| 1131 'clang_tot_official_static_use_lld_x86': [ | 1132 'clang_tot_official_static_use_lld_x86': [ |
| 1132 'clang_tot', 'official', 'static', 'release', 'use_lld', 'x86', | 1133 # TODO(crbug.com/706492): Enable symbols when LLD makes PDBs. |
| 1134 'clang_tot', 'no_symbols', 'official', 'static', 'release', 'use_lld', 'x8
6', |
| 1133 ], | 1135 ], |
| 1134 | 1136 |
| 1135 'clang_tot_minimal_symbols_shared_release': [ | 1137 'clang_tot_minimal_symbols_shared_release': [ |
| 1136 'clang_tot', 'minimal_symbols', 'shared', 'release', | 1138 'clang_tot', 'minimal_symbols', 'shared', 'release', |
| 1137 ], | 1139 ], |
| 1138 | 1140 |
| 1139 'clang_tot_shared_release': [ | 1141 'clang_tot_shared_release': [ |
| 1140 'clang_tot', 'shared', 'release', | 1142 'clang_tot', 'shared', 'release', |
| 1141 ], | 1143 ], |
| 1142 | 1144 |
| (...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1928 | 1930 |
| 1929 'x64': { | 1931 'x64': { |
| 1930 'gn_args': 'target_cpu="x64"', | 1932 'gn_args': 'target_cpu="x64"', |
| 1931 }, | 1933 }, |
| 1932 | 1934 |
| 1933 'x86': { | 1935 'x86': { |
| 1934 'gn_args': 'target_cpu="x86"', | 1936 'gn_args': 'target_cpu="x86"', |
| 1935 }, | 1937 }, |
| 1936 }, | 1938 }, |
| 1937 } | 1939 } |
| OLD | NEW |