Chromium Code Reviews| 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 15 matching lines...) Expand all Loading... | |
| 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 # Definitions to be used when building stand-alone V8 binaries. | 28 # Definitions to be used when building stand-alone V8 binaries. |
| 29 | 29 |
| 30 { | 30 { |
| 31 # We need to include toolchain.gypi here for third-party sources that don't | 31 # We need to include toolchain.gypi here for third-party sources that don't |
| 32 # directly include it themselves. | 32 # directly include it themselves. |
| 33 'includes': ['toolchain.gypi'], | 33 'includes': ['toolchain.gypi'], |
| 34 'variables': { | 34 'variables': { |
| 35 'component%': 'static_library', | 35 'component%': 'static_library', |
| 36 'force_dynamic_crt%': 'false', | |
|
Michael Achenbach
2016/07/14 18:41:18
nit: it's convention to use 0 and 1 in gyp for swi
| |
| 36 'clang_xcode%': 0, | 37 'clang_xcode%': 0, |
| 37 # Track where uninitialized memory originates from. From fastest to | 38 # Track where uninitialized memory originates from. From fastest to |
| 38 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 | 39 # slowest: 0 - no tracking, 1 - track only the initial allocation site, 2 |
| 39 # - track the chain of stores leading from allocation site to use site. | 40 # - track the chain of stores leading from allocation site to use site. |
| 40 'msan_track_origins%': 2, | 41 'msan_track_origins%': 2, |
| 41 'visibility%': 'hidden', | 42 'visibility%': 'hidden', |
| 42 'v8_enable_backtrace%': 0, | 43 'v8_enable_backtrace%': 0, |
| 43 'v8_enable_i18n_support%': 1, | 44 'v8_enable_i18n_support%': 1, |
| 44 'v8_deprecation_warnings': 1, | 45 'v8_deprecation_warnings': 1, |
| 45 'v8_imminent_deprecation_warnings': 1, | 46 'v8_imminent_deprecation_warnings': 1, |
| (...skipping 1430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1476 '-fsanitize=cfi-vcall', | 1477 '-fsanitize=cfi-vcall', |
| 1477 '-fsanitize=cfi-derived-cast', | 1478 '-fsanitize=cfi-derived-cast', |
| 1478 '-fsanitize=cfi-unrelated-cast', | 1479 '-fsanitize=cfi-unrelated-cast', |
| 1479 ], | 1480 ], |
| 1480 }], | 1481 }], |
| 1481 ], | 1482 ], |
| 1482 }, | 1483 }, |
| 1483 }], | 1484 }], |
| 1484 ], | 1485 ], |
| 1485 } | 1486 } |
| OLD | NEW |