| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 'use_goma%': 0, | 110 'use_goma%': 0, |
| 111 'gomadir%': '', | 111 'gomadir%': '', |
| 112 | 112 |
| 113 'conditions': [ | 113 'conditions': [ |
| 114 # Set default gomadir. | 114 # Set default gomadir. |
| 115 ['OS=="win"', { | 115 ['OS=="win"', { |
| 116 'gomadir': 'c:\\goma\\goma-win', | 116 'gomadir': 'c:\\goma\\goma-win', |
| 117 }, { | 117 }, { |
| 118 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', | 118 'gomadir': '<!(/bin/echo -n ${HOME}/goma)', |
| 119 }], | 119 }], |
| 120 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and \ | 120 ['host_arch!="ppc" and host_arch!="ppc64" and host_arch!="ppc64le" and h
ost_arch!="s390" and host_arch!="s390x" and \ |
| 121 coverage==0', { | 121 coverage==0', { |
| 122 'host_clang%': 1, | 122 'host_clang%': 1, |
| 123 }, { | 123 }, { |
| 124 'host_clang%': 0, | 124 'host_clang%': 0, |
| 125 }], | 125 }], |
| 126 # linux_use_bundled_gold: whether to use the gold linker binary checked | 126 # linux_use_bundled_gold: whether to use the gold linker binary checked |
| 127 # into third_party/binutils. Force this off via GYP_DEFINES when you | 127 # into third_party/binutils. Force this off via GYP_DEFINES when you |
| 128 # are using a custom toolchain and need to control -B in ldflags. | 128 # are using a custom toolchain and need to control -B in ldflags. |
| 129 # Do not use 32-bit gold on 32-bit hosts as it runs out address space | 129 # Do not use 32-bit gold on 32-bit hosts as it runs out address space |
| 130 # for component=static_library builds. | 130 # for component=static_library builds. |
| (...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 '-fsanitize=cfi-vcall', | 1361 '-fsanitize=cfi-vcall', |
| 1362 '-fsanitize=cfi-derived-cast', | 1362 '-fsanitize=cfi-derived-cast', |
| 1363 '-fsanitize=cfi-unrelated-cast', | 1363 '-fsanitize=cfi-unrelated-cast', |
| 1364 ], | 1364 ], |
| 1365 }], | 1365 }], |
| 1366 ], | 1366 ], |
| 1367 }, | 1367 }, |
| 1368 }], | 1368 }], |
| 1369 ], | 1369 ], |
| 1370 } | 1370 } |
| OLD | NEW |