| 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 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 521 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 517 'make_global_settings': [ | 522 'make_global_settings': [ |
| 518 ['CC_wrapper', '<(gomadir)/gomacc'], | 523 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 519 ['CXX_wrapper', '<(gomadir)/gomacc'], | 524 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 520 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 525 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 521 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 526 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 522 ], | 527 ], |
| 523 }], | 528 }], |
| 524 ], | 529 ], |
| 525 } | 530 } |
| OLD | NEW |