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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 (OS=="linux" or OS=="mac")', { | 144 (OS=="linux" or OS=="mac")', { |
145 'v8_enable_gdbjit%': 1, | 145 'v8_enable_gdbjit%': 1, |
146 }, { | 146 }, { |
147 'v8_enable_gdbjit%': 0, | 147 'v8_enable_gdbjit%': 0, |
148 }], | 148 }], |
149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
")', { | 149 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
")', { |
150 'clang%': 1, | 150 'clang%': 1, |
151 }, { | 151 }, { |
152 'clang%': 0, | 152 'clang%': 0, |
153 }], | 153 }], |
| 154 ['(OS=="linux")', { |
| 155 # Gradually roll out v8_use_external_startup_data. |
| 156 # Should eventually be default enabled on all platforms. |
| 157 'v8_use_external_startup_data%': 1, |
| 158 }], |
154 ], | 159 ], |
155 # Default ARM variable settings. | 160 # Default ARM variable settings. |
156 'arm_version%': 'default', | 161 'arm_version%': 'default', |
157 'arm_fpu%': 'vfpv3', | 162 'arm_fpu%': 'vfpv3', |
158 'arm_float_abi%': 'default', | 163 'arm_float_abi%': 'default', |
159 'arm_thumb': 'default', | 164 'arm_thumb': 'default', |
160 | 165 |
161 # Default MIPS variable settings. | 166 # Default MIPS variable settings. |
162 'mips_arch_variant%': 'r2', | 167 'mips_arch_variant%': 'r2', |
163 # Possible values fp32, fp64, fpxx. | 168 # Possible values fp32, fp64, fpxx. |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
538 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 543 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
539 'make_global_settings': [ | 544 'make_global_settings': [ |
540 ['CC_wrapper', '<(gomadir)/gomacc'], | 545 ['CC_wrapper', '<(gomadir)/gomacc'], |
541 ['CXX_wrapper', '<(gomadir)/gomacc'], | 546 ['CXX_wrapper', '<(gomadir)/gomacc'], |
542 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 547 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
543 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 548 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
544 ], | 549 ], |
545 }], | 550 }], |
546 ], | 551 ], |
547 } | 552 } |
OLD | NEW |