OLD | NEW |
1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 'v8_use_liveobjectlist%': 'false', | 88 'v8_use_liveobjectlist%': 'false', |
89 'werror%': '-Werror', | 89 'werror%': '-Werror', |
90 | 90 |
91 # With post mortem support enabled, metadata is embedded into libv8 that | 91 # With post mortem support enabled, metadata is embedded into libv8 that |
92 # describes various parameters of the VM for use by debuggers. See | 92 # describes various parameters of the VM for use by debuggers. See |
93 # tools/gen-postmortem-metadata.py for details. | 93 # tools/gen-postmortem-metadata.py for details. |
94 'v8_postmortem_support%': 'false', | 94 'v8_postmortem_support%': 'false', |
95 | 95 |
96 # For a shared library build, results in "libv8-<(soname_version).so". | 96 # For a shared library build, results in "libv8-<(soname_version).so". |
97 'soname_version%': '', | 97 'soname_version%': '', |
| 98 |
| 99 # Interpreted regexp engine exists as platform-independent alternative |
| 100 # based where the regular expression is compiled to a bytecode. |
| 101 'v8_interpreted_regexp%': 0, |
98 }, | 102 }, |
99 'target_defaults': { | 103 'target_defaults': { |
100 'conditions': [ | 104 'conditions': [ |
101 ['v8_enable_debugger_support==1', { | 105 ['v8_enable_debugger_support==1', { |
102 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 106 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
103 }], | 107 }], |
104 ['v8_enable_disassembler==1', { | 108 ['v8_enable_disassembler==1', { |
105 'defines': ['ENABLE_DISASSEMBLER',], | 109 'defines': ['ENABLE_DISASSEMBLER',], |
106 }], | 110 }], |
107 ['v8_object_print==1', { | 111 ['v8_object_print==1', { |
108 'defines': ['OBJECT_PRINT',], | 112 'defines': ['OBJECT_PRINT',], |
109 }], | 113 }], |
110 ['v8_enable_gdbjit==1', { | 114 ['v8_enable_gdbjit==1', { |
111 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 115 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
112 }], | 116 }], |
| 117 ['v8_interpreted_regexp==1', { |
| 118 'defines': ['V8_INTERPRETED_REGEXP',], |
| 119 }], |
113 ['v8_target_arch=="arm"', { | 120 ['v8_target_arch=="arm"', { |
114 'defines': [ | 121 'defines': [ |
115 'V8_TARGET_ARCH_ARM', | 122 'V8_TARGET_ARCH_ARM', |
116 ], | 123 ], |
117 'conditions': [ | 124 'conditions': [ |
118 [ 'v8_can_use_unaligned_accesses=="true"', { | 125 [ 'v8_can_use_unaligned_accesses=="true"', { |
119 'defines': [ | 126 'defines': [ |
120 'CAN_USE_UNALIGNED_ACCESSES=1', | 127 'CAN_USE_UNALIGNED_ACCESSES=1', |
121 ], | 128 ], |
122 }], | 129 }], |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 'OptimizeReferences': '2', | 393 'OptimizeReferences': '2', |
387 'EnableCOMDATFolding': '2', | 394 'EnableCOMDATFolding': '2', |
388 }, | 395 }, |
389 }, | 396 }, |
390 }], # OS=="win" | 397 }], # OS=="win" |
391 ], # conditions | 398 ], # conditions |
392 }, # Release | 399 }, # Release |
393 }, # configurations | 400 }, # configurations |
394 }, # target_defaults | 401 }, # target_defaults |
395 } | 402 } |
OLD | NEW |