| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 # Interpreted regexp engine exists as platform-independent alternative | 100 # Interpreted regexp engine exists as platform-independent alternative |
| 101 # based where the regular expression is compiled to a bytecode. | 101 # based where the regular expression is compiled to a bytecode. |
| 102 'v8_interpreted_regexp%': 0, | 102 'v8_interpreted_regexp%': 0, |
| 103 }, | 103 }, |
| 104 'target_defaults': { | 104 'target_defaults': { |
| 105 'conditions': [ | 105 'conditions': [ |
| 106 ['v8_enable_debugger_support==1', { | 106 ['v8_enable_debugger_support==1', { |
| 107 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 107 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
| 108 }], | 108 }], |
| 109 ['v8_enable_disassembler==1', { | 109 ['v8_enable_disassembler==1', { |
| 110 'defines': ['ENABLE_DISASSEMBLER',], | 110 'defines': [ |
| 111 'ENABLE_DISASSEMBLER', |
| 112 'OBJECT_PRINT',], |
| 111 }], | 113 }], |
| 112 ['v8_object_print==1', { | 114 ['v8_object_print==1', { |
| 113 'defines': ['OBJECT_PRINT',], | 115 'defines': ['OBJECT_PRINT',], |
| 114 }], | 116 }], |
| 115 ['v8_enable_gdbjit==1', { | 117 ['v8_enable_gdbjit==1', { |
| 116 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 118 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
| 117 }], | 119 }], |
| 118 ['v8_interpreted_regexp==1', { | 120 ['v8_interpreted_regexp==1', { |
| 119 'defines': ['V8_INTERPRETED_REGEXP',], | 121 'defines': ['V8_INTERPRETED_REGEXP',], |
| 120 }], | 122 }], |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 'OptimizeReferences': '2', | 403 'OptimizeReferences': '2', |
| 402 'EnableCOMDATFolding': '2', | 404 'EnableCOMDATFolding': '2', |
| 403 }, | 405 }, |
| 404 }, | 406 }, |
| 405 }], # OS=="win" | 407 }], # OS=="win" |
| 406 ], # conditions | 408 ], # conditions |
| 407 }, # Release | 409 }, # Release |
| 408 }, # configurations | 410 }, # configurations |
| 409 }, # target_defaults | 411 }, # target_defaults |
| 410 } | 412 } |
| OLD | NEW |