| 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 # Compile time controlled V8 features. | 28 # Compile time controlled V8 features. |
| 29 | 29 |
| 30 { | 30 { |
| 31 'variables': { | 31 'variables': { |
| 32 'v8_compress_startup_data%': 'off', | |
| 33 | |
| 34 'v8_enable_disassembler%': 0, | 32 'v8_enable_disassembler%': 0, |
| 35 | 33 |
| 36 'v8_enable_gdbjit%': 0, | 34 'v8_enable_gdbjit%': 0, |
| 37 | 35 |
| 38 'v8_object_print%': 0, | 36 'v8_object_print%': 0, |
| 39 | 37 |
| 40 'v8_enable_verify_heap%': 0, | 38 'v8_enable_verify_heap%': 0, |
| 41 | 39 |
| 42 'v8_trace_maps%': 0, | 40 'v8_trace_maps%': 0, |
| 43 | 41 |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 }], | 85 }], |
| 88 ['v8_interpreted_regexp==1', { | 86 ['v8_interpreted_regexp==1', { |
| 89 'defines': ['V8_INTERPRETED_REGEXP',], | 87 'defines': ['V8_INTERPRETED_REGEXP',], |
| 90 }], | 88 }], |
| 91 ['v8_deprecation_warnings==1', { | 89 ['v8_deprecation_warnings==1', { |
| 92 'defines': ['V8_DEPRECATION_WARNINGS',], | 90 'defines': ['V8_DEPRECATION_WARNINGS',], |
| 93 }], | 91 }], |
| 94 ['v8_enable_i18n_support==1', { | 92 ['v8_enable_i18n_support==1', { |
| 95 'defines': ['V8_I18N_SUPPORT',], | 93 'defines': ['V8_I18N_SUPPORT',], |
| 96 }], | 94 }], |
| 97 ['v8_compress_startup_data=="bz2"', { | |
| 98 'defines': ['COMPRESS_STARTUP_DATA_BZ2',], | |
| 99 }], | |
| 100 ['v8_use_external_startup_data==1', { | 95 ['v8_use_external_startup_data==1', { |
| 101 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], | 96 'defines': ['V8_USE_EXTERNAL_STARTUP_DATA',], |
| 102 }], | 97 }], |
| 103 ], # conditions | 98 ], # conditions |
| 104 'configurations': { | 99 'configurations': { |
| 105 'DebugBaseCommon': { | 100 'DebugBaseCommon': { |
| 106 'abstract': 1, | 101 'abstract': 1, |
| 107 'variables': { | 102 'variables': { |
| 108 'v8_enable_extra_checks%': 1, | 103 'v8_enable_extra_checks%': 1, |
| 109 'v8_enable_handle_zapping%': 1, | 104 'v8_enable_handle_zapping%': 1, |
| (...skipping 17 matching lines...) Expand all Loading... |
| 127 'defines': ['ENABLE_EXTRA_CHECKS',], | 122 'defines': ['ENABLE_EXTRA_CHECKS',], |
| 128 }], | 123 }], |
| 129 ['v8_enable_handle_zapping==1', { | 124 ['v8_enable_handle_zapping==1', { |
| 130 'defines': ['ENABLE_HANDLE_ZAPPING',], | 125 'defines': ['ENABLE_HANDLE_ZAPPING',], |
| 131 }], | 126 }], |
| 132 ], # conditions | 127 ], # conditions |
| 133 }, # Release | 128 }, # Release |
| 134 }, # configurations | 129 }, # configurations |
| 135 }, # target_defaults | 130 }, # target_defaults |
| 136 } | 131 } |
| OLD | NEW |