OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 the V8 project authors. All rights reserved. |
2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
4 # met: | 4 # met: |
5 # | 5 # |
6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 # Do not use 32-bit gold on 32-bit hosts as it runs out address space | 124 # Do not use 32-bit gold on 32-bit hosts as it runs out address space |
125 # for component=static_library builds. | 125 # for component=static_library builds. |
126 ['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=
="arm" or (target_arch=="ia32" and host_arch=="x64"))', { | 126 ['(OS=="linux" or OS=="android") and (target_arch=="x64" or target_arch=
="arm" or (target_arch=="ia32" and host_arch=="x64"))', { |
127 'linux_use_bundled_gold%': 1, | 127 'linux_use_bundled_gold%': 1, |
128 }, { | 128 }, { |
129 'linux_use_bundled_gold%': 0, | 129 'linux_use_bundled_gold%': 0, |
130 }], | 130 }], |
131 | 131 |
132 # TODO(machenbach): Remove the conditions as more configurations are | 132 # TODO(machenbach): Remove the conditions as more configurations are |
133 # supported. | 133 # supported. |
134 ['OS=="linux"', { | 134 ['OS=="linux" or OS=="win"', { |
135 'test_isolation_mode%': 'check', | 135 'test_isolation_mode%': 'check', |
136 }, { | 136 }, { |
137 'test_isolation_mode%': 'noop', | 137 'test_isolation_mode%': 'noop', |
138 }], | 138 }], |
139 ], | 139 ], |
140 }, | 140 }, |
141 'base_dir%': '<(base_dir)', | 141 'base_dir%': '<(base_dir)', |
142 'clang_dir%': '<(clang_dir)', | 142 'clang_dir%': '<(clang_dir)', |
143 'host_arch%': '<(host_arch)', | 143 'host_arch%': '<(host_arch)', |
144 'host_clang%': '<(host_clang)', | 144 'host_clang%': '<(host_clang)', |
(...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1323 '-fsanitize=cfi-vcall', | 1323 '-fsanitize=cfi-vcall', |
1324 '-fsanitize=cfi-derived-cast', | 1324 '-fsanitize=cfi-derived-cast', |
1325 '-fsanitize=cfi-unrelated-cast', | 1325 '-fsanitize=cfi-unrelated-cast', |
1326 ], | 1326 ], |
1327 }], | 1327 }], |
1328 ], | 1328 ], |
1329 }, | 1329 }, |
1330 }], | 1330 }], |
1331 ], | 1331 ], |
1332 } | 1332 } |
OLD | NEW |