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 }], | |
209 ], | 204 ], |
210 # Default ARM variable settings. | 205 # Default ARM variable settings. |
211 'arm_version%': 'default', | 206 'arm_version%': 'default', |
212 'arm_fpu%': 'vfpv3', | 207 'arm_fpu%': 'vfpv3', |
213 'arm_float_abi%': 'default', | 208 'arm_float_abi%': 'default', |
214 'arm_thumb': 'default', | 209 'arm_thumb': 'default', |
215 | 210 |
216 # Default MIPS variable settings. | 211 # Default MIPS variable settings. |
217 'mips_arch_variant%': 'r2', | 212 'mips_arch_variant%': 'r2', |
218 # Possible values fp32, fp64, fpxx. | 213 # Possible values fp32, fp64, fpxx. |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
726 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 721 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
727 'make_global_settings': [ | 722 'make_global_settings': [ |
728 ['CC_wrapper', '<(gomadir)/gomacc'], | 723 ['CC_wrapper', '<(gomadir)/gomacc'], |
729 ['CXX_wrapper', '<(gomadir)/gomacc'], | 724 ['CXX_wrapper', '<(gomadir)/gomacc'], |
730 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 725 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
731 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 726 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
732 ], | 727 ], |
733 }], | 728 }], |
734 ], | 729 ], |
735 } | 730 } |
OLD | NEW |