| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 11 matching lines...) Expand all Loading... |
| 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 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 # Shared definitions for all V8-related targets. | 28 # Shared definitions for all V8-related targets. |
| 29 | 29 |
| 30 { | 30 { |
| 31 'variables': { | 31 'variables': { |
| 32 'variables': { | |
| 33 'variables': { | |
| 34 # Instrument for code coverage and use coverage wrapper to exclude some | |
| 35 # files. Uses gcov if clang=0 is set explicitly. Otherwise, | |
| 36 # sanitizer_coverage must be set too. | |
| 37 'coverage%': 0, | |
| 38 }, | |
| 39 | |
| 40 'coverage%': '<(coverage)', | |
| 41 | |
| 42 # Check if valgrind directories are present. | |
| 43 'has_valgrind%': '<!pymod_do_main(has_valgrind)', | |
| 44 }, | |
| 45 'msvs_use_common_release': 0, | 32 'msvs_use_common_release': 0, |
| 46 'clang%': 0, | 33 'clang%': 0, |
| 47 'asan%': 0, | 34 'asan%': 0, |
| 48 'lsan%': 0, | 35 'lsan%': 0, |
| 49 'msan%': 0, | 36 'msan%': 0, |
| 50 'tsan%': 0, | 37 'tsan%': 0, |
| 51 'ubsan%': 0, | 38 'ubsan%': 0, |
| 52 'ubsan_vptr%': 0, | 39 'ubsan_vptr%': 0, |
| 53 'has_valgrind%': '<(has_valgrind)', | |
| 54 'coverage%': '<(coverage)', | |
| 55 'v8_target_arch%': '<(target_arch)', | 40 'v8_target_arch%': '<(target_arch)', |
| 56 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', | 41 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', |
| 57 # Native Client builds currently use the V8 ARM JIT and | 42 # Native Client builds currently use the V8 ARM JIT and |
| 58 # arm/simulator-arm.cc to defer the significant effort required | 43 # arm/simulator-arm.cc to defer the significant effort required |
| 59 # for NaCl JIT support. The nacl_target_arch variable provides | 44 # for NaCl JIT support. The nacl_target_arch variable provides |
| 60 # the 'true' target arch for places in this file that need it. | 45 # the 'true' target arch for places in this file that need it. |
| 61 # TODO(bradchen): get rid of nacl_target_arch when someday | 46 # TODO(bradchen): get rid of nacl_target_arch when someday |
| 62 # NaCl V8 builds stop using the ARM simulator | 47 # NaCl V8 builds stop using the ARM simulator |
| 63 'nacl_target_arch%': 'none', # must be set externally | 48 'nacl_target_arch%': 'none', # must be set externally |
| 64 | 49 |
| (...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1403 ], | 1388 ], |
| 1404 }, | 1389 }, |
| 1405 'Release_x64': { | 1390 'Release_x64': { |
| 1406 'inherit_from': ['ReleaseBase'], | 1391 'inherit_from': ['ReleaseBase'], |
| 1407 }, | 1392 }, |
| 1408 }], | 1393 }], |
| 1409 ], | 1394 ], |
| 1410 }, # configurations | 1395 }, # configurations |
| 1411 }, # target_defaults | 1396 }, # target_defaults |
| 1412 } | 1397 } |
| OLD | NEW |