| 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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 'fastbuild': 1, | 139 'fastbuild': 1, |
| 140 }], | 140 }], |
| 141 ], | 141 ], |
| 142 }], | 142 }], |
| 143 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ | 143 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ |
| 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
") and \ |
| 150 (v8_target_arch!="x87")', { |
| 150 'clang%': 1, | 151 'clang%': 1, |
| 151 }, { | 152 }, { |
| 152 'clang%': 0, | 153 'clang%': 0, |
| 153 }], | 154 }], |
| 154 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { | 155 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { |
| 155 'host_clang%': '1', | 156 'host_clang%': '1', |
| 156 }, { | 157 }, { |
| 157 'host_clang%': '0', | 158 'host_clang%': '0', |
| 158 }], | 159 }], |
| 159 ], | 160 ], |
| (...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 583 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 583 'make_global_settings': [ | 584 'make_global_settings': [ |
| 584 ['CC_wrapper', '<(gomadir)/gomacc'], | 585 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 585 ['CXX_wrapper', '<(gomadir)/gomacc'], | 586 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 586 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 587 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 587 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 588 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 588 ], | 589 ], |
| 589 }], | 590 }], |
| 590 ], | 591 ], |
| 591 } | 592 } |
| OLD | NEW |