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 13 matching lines...) Expand all Loading... |
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', | 32 'v8_compress_startup_data%': 'off', |
33 | 33 |
34 'v8_enable_debugger_support%': 1, | |
35 | |
36 'v8_enable_disassembler%': 0, | 34 'v8_enable_disassembler%': 0, |
37 | 35 |
38 'v8_enable_gdbjit%': 0, | 36 'v8_enable_gdbjit%': 0, |
39 | 37 |
40 'v8_object_print%': 0, | 38 'v8_object_print%': 0, |
41 | 39 |
42 'v8_enable_verify_heap%': 0, | 40 'v8_enable_verify_heap%': 0, |
43 | 41 |
44 'v8_use_snapshot%': 'true', | 42 'v8_use_snapshot%': 'true', |
45 | 43 |
(...skipping 11 matching lines...) Expand all Loading... |
57 'v8_enable_i18n_support%': 1, | 55 'v8_enable_i18n_support%': 1, |
58 | 56 |
59 # Enable compiler warnings when using V8_DEPRECATED apis. | 57 # Enable compiler warnings when using V8_DEPRECATED apis. |
60 'v8_deprecation_warnings%': 0, | 58 'v8_deprecation_warnings%': 0, |
61 | 59 |
62 # Use the v8 provided v8::Platform implementation. | 60 # Use the v8 provided v8::Platform implementation. |
63 'v8_use_default_platform%': 1, | 61 'v8_use_default_platform%': 1, |
64 }, | 62 }, |
65 'target_defaults': { | 63 'target_defaults': { |
66 'conditions': [ | 64 'conditions': [ |
67 ['v8_enable_debugger_support==1', { | |
68 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | |
69 }], | |
70 ['v8_enable_disassembler==1', { | 65 ['v8_enable_disassembler==1', { |
71 'defines': ['ENABLE_DISASSEMBLER',], | 66 'defines': ['ENABLE_DISASSEMBLER',], |
72 }], | 67 }], |
73 ['v8_enable_gdbjit==1', { | 68 ['v8_enable_gdbjit==1', { |
74 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 69 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
75 }], | 70 }], |
76 ['v8_object_print==1', { | 71 ['v8_object_print==1', { |
77 'defines': ['OBJECT_PRINT',], | 72 'defines': ['OBJECT_PRINT',], |
78 }], | 73 }], |
79 ['v8_enable_verify_heap==1', { | 74 ['v8_enable_verify_heap==1', { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 'defines': ['ENABLE_EXTRA_CHECKS',], | 118 'defines': ['ENABLE_EXTRA_CHECKS',], |
124 }], | 119 }], |
125 ['v8_enable_handle_zapping==1', { | 120 ['v8_enable_handle_zapping==1', { |
126 'defines': ['ENABLE_HANDLE_ZAPPING',], | 121 'defines': ['ENABLE_HANDLE_ZAPPING',], |
127 }], | 122 }], |
128 ], # conditions | 123 ], # conditions |
129 }, # Release | 124 }, # Release |
130 }, # configurations | 125 }, # configurations |
131 }, # target_defaults | 126 }, # target_defaults |
132 } | 127 } |
OLD | NEW |