| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 }], | 168 }], |
| 169 ], | 169 ], |
| 170 }], | 170 }], |
| 171 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ | 171 ['(v8_target_arch=="ia32" or v8_target_arch=="x64" or v8_target_arch=="x87
") and \ |
| 172 (OS=="linux" or OS=="mac")', { | 172 (OS=="linux" or OS=="mac")', { |
| 173 'v8_enable_gdbjit%': 1, | 173 'v8_enable_gdbjit%': 1, |
| 174 }, { | 174 }, { |
| 175 'v8_enable_gdbjit%': 0, | 175 'v8_enable_gdbjit%': 0, |
| 176 }], | 176 }], |
| 177 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
") and \ | 177 ['(OS=="linux" or OS=="mac") and (target_arch=="ia32" or target_arch=="x64
") and \ |
| 178 (v8_target_arch!="x87")', { | 178 (v8_target_arch!="x87" and v8_target_arch!="x32")', { |
| 179 'clang%': 1, | 179 'clang%': 1, |
| 180 }, { | 180 }, { |
| 181 'clang%': 0, | 181 'clang%': 0, |
| 182 }], | 182 }], |
| 183 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { | 183 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le"', { |
| 184 'host_clang%': '1', | 184 'host_clang%': '1', |
| 185 }, { | 185 }, { |
| 186 'host_clang%': '0', | 186 'host_clang%': '0', |
| 187 }], | 187 }], |
| 188 ['asan==1 or lsan==1 or msan==1 or tsan==1', { | 188 ['asan==1 or lsan==1 or msan==1 or tsan==1', { |
| (...skipping 532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 721 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { | 721 ['use_goma==1 and ("<(GENERATOR)"=="ninja" or clang==1)', { |
| 722 'make_global_settings': [ | 722 'make_global_settings': [ |
| 723 ['CC_wrapper', '<(gomadir)/gomacc'], | 723 ['CC_wrapper', '<(gomadir)/gomacc'], |
| 724 ['CXX_wrapper', '<(gomadir)/gomacc'], | 724 ['CXX_wrapper', '<(gomadir)/gomacc'], |
| 725 ['CC.host_wrapper', '<(gomadir)/gomacc'], | 725 ['CC.host_wrapper', '<(gomadir)/gomacc'], |
| 726 ['CXX.host_wrapper', '<(gomadir)/gomacc'], | 726 ['CXX.host_wrapper', '<(gomadir)/gomacc'], |
| 727 ], | 727 ], |
| 728 }], | 728 }], |
| 729 ], | 729 ], |
| 730 } | 730 } |
| OLD | NEW |