| 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 21 matching lines...) Expand all Loading... |
| 32 'v8_enable_disassembler%': 0, | 32 'v8_enable_disassembler%': 0, |
| 33 | 33 |
| 34 'v8_enable_gdbjit%': 0, | 34 'v8_enable_gdbjit%': 0, |
| 35 | 35 |
| 36 'v8_object_print%': 0, | 36 'v8_object_print%': 0, |
| 37 | 37 |
| 38 'v8_enable_verify_heap%': 0, | 38 'v8_enable_verify_heap%': 0, |
| 39 | 39 |
| 40 'v8_trace_maps%': 0, | 40 'v8_trace_maps%': 0, |
| 41 | 41 |
| 42 # Enable the snapshot feature, for fast context creation. |
| 43 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html |
| 42 'v8_use_snapshot%': 'true', | 44 'v8_use_snapshot%': 'true', |
| 43 | 45 |
| 44 'v8_enable_verify_predictable%': 0, | 46 'v8_enable_verify_predictable%': 0, |
| 45 | 47 |
| 46 # With post mortem support enabled, metadata is embedded into libv8 that | 48 # With post mortem support enabled, metadata is embedded into libv8 that |
| 47 # describes various parameters of the VM for use by debuggers. See | 49 # describes various parameters of the VM for use by debuggers. See |
| 48 # tools/gen-postmortem-metadata.py for details. | 50 # tools/gen-postmortem-metadata.py for details. |
| 49 'v8_postmortem_support%': 'false', | 51 'v8_postmortem_support%': 'false', |
| 50 | 52 |
| 51 # Interpreted regexp engine exists as platform-independent alternative | 53 # Interpreted regexp engine exists as platform-independent alternative |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 }, | 136 }, |
| 135 'conditions': [ | 137 'conditions': [ |
| 136 ['v8_enable_handle_zapping==1', { | 138 ['v8_enable_handle_zapping==1', { |
| 137 'defines': ['ENABLE_HANDLE_ZAPPING',], | 139 'defines': ['ENABLE_HANDLE_ZAPPING',], |
| 138 }], | 140 }], |
| 139 ], # conditions | 141 ], # conditions |
| 140 }, # Release | 142 }, # Release |
| 141 }, # configurations | 143 }, # configurations |
| 142 }, # target_defaults | 144 }, # target_defaults |
| 143 } | 145 } |
| OLD | NEW |