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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 }], | 194 }], |
195 ['tsan==1', { | 195 ['tsan==1', { |
196 'use_custom_libcxx%': 1, | 196 'use_custom_libcxx%': 1, |
197 }], | 197 }], |
198 ['msan==1', { | 198 ['msan==1', { |
199 # Use a just-built, MSan-instrumented libc++ instead of the system-wide | 199 # Use a just-built, MSan-instrumented libc++ instead of the system-wide |
200 # libstdc++. This is required to avoid false positive reports whenever | 200 # libstdc++. This is required to avoid false positive reports whenever |
201 # the C++ standard library is used. | 201 # the C++ standard library is used. |
202 'use_custom_libcxx%': 1, | 202 'use_custom_libcxx%': 1, |
203 }], | 203 }], |
| 204 ['OS=="linux" and v8_target_arch==host_arch', { |
| 205 # Gradually roll out v8_use_external_startup_data. |
| 206 # Should eventually be default enabled on all platforms. |
| 207 'v8_use_external_startup_data%': 1, |
| 208 }], |
204 ], | 209 ], |
205 # Default ARM variable settings. | 210 # Default ARM variable settings. |
206 'arm_version%': 'default', | 211 'arm_version%': 'default', |
207 'arm_fpu%': 'vfpv3', | 212 'arm_fpu%': 'vfpv3', |
208 'arm_float_abi%': 'default', | 213 'arm_float_abi%': 'default', |
209 'arm_thumb': 'default', | 214 'arm_thumb': 'default', |
210 | 215 |
211 # Default MIPS variable settings. | 216 # Default MIPS variable settings. |
212 'mips_arch_variant%': 'r2', | 217 'mips_arch_variant%': 'r2', |
213 # Possible values fp32, fp64, fpxx. | 218 # Possible values fp32, fp64, fpxx. |
(...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
722 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 727 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
723 'make_global_settings': [ | 728 'make_global_settings': [ |
724 ['CC_wrapper', '<(gomadir)/gomacc'], | 729 ['CC_wrapper', '<(gomadir)/gomacc'], |
725 ['CXX_wrapper', '<(gomadir)/gomacc'], | 730 ['CXX_wrapper', '<(gomadir)/gomacc'], |
726 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 731 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
727 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 732 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
728 ], | 733 ], |
729 }], | 734 }], |
730 ], | 735 ], |
731 } | 736 } |
OLD | NEW |