| 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 19 matching lines...) Expand all Loading... |
| 30 { | 30 { |
| 31 'variables': { | 31 'variables': { |
| 32 'msvs_use_common_release': 0, | 32 'msvs_use_common_release': 0, |
| 33 'clang%': 0, | 33 'clang%': 0, |
| 34 'asan%': 0, | 34 'asan%': 0, |
| 35 'lsan%': 0, | 35 'lsan%': 0, |
| 36 'msan%': 0, | 36 'msan%': 0, |
| 37 'tsan%': 0, | 37 'tsan%': 0, |
| 38 'ubsan%': 0, | 38 'ubsan%': 0, |
| 39 'ubsan_vptr%': 0, | 39 'ubsan_vptr%': 0, |
| 40 'has_valgrind%': 0, |
| 41 'coverage%': 0, |
| 40 'v8_target_arch%': '<(target_arch)', | 42 'v8_target_arch%': '<(target_arch)', |
| 41 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', | 43 'v8_host_byteorder%': '<!(python -c "import sys; print sys.byteorder")', |
| 42 # Native Client builds currently use the V8 ARM JIT and | 44 # Native Client builds currently use the V8 ARM JIT and |
| 43 # arm/simulator-arm.cc to defer the significant effort required | 45 # arm/simulator-arm.cc to defer the significant effort required |
| 44 # for NaCl JIT support. The nacl_target_arch variable provides | 46 # for NaCl JIT support. The nacl_target_arch variable provides |
| 45 # the 'true' target arch for places in this file that need it. | 47 # the 'true' target arch for places in this file that need it. |
| 46 # TODO(bradchen): get rid of nacl_target_arch when someday | 48 # TODO(bradchen): get rid of nacl_target_arch when someday |
| 47 # NaCl V8 builds stop using the ARM simulator | 49 # NaCl V8 builds stop using the ARM simulator |
| 48 'nacl_target_arch%': 'none', # must be set externally | 50 'nacl_target_arch%': 'none', # must be set externally |
| 49 | 51 |
| (...skipping 1338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1388 ], | 1390 ], |
| 1389 }, | 1391 }, |
| 1390 'Release_x64': { | 1392 'Release_x64': { |
| 1391 'inherit_from': ['ReleaseBase'], | 1393 'inherit_from': ['ReleaseBase'], |
| 1392 }, | 1394 }, |
| 1393 }], | 1395 }], |
| 1394 ], | 1396 ], |
| 1395 }, # configurations | 1397 }, # configurations |
| 1396 }, # target_defaults | 1398 }, # target_defaults |
| 1397 } | 1399 } |
| OLD | NEW |