| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 # describes various parameters of the VM for use by debuggers. See | 95 # describes various parameters of the VM for use by debuggers. See |
| 96 # tools/gen-postmortem-metadata.py for details. | 96 # tools/gen-postmortem-metadata.py for details. |
| 97 'v8_postmortem_support%': 'false', | 97 'v8_postmortem_support%': 'false', |
| 98 | 98 |
| 99 # For a shared library build, results in "libv8-<(soname_version).so". | 99 # For a shared library build, results in "libv8-<(soname_version).so". |
| 100 'soname_version%': '', | 100 'soname_version%': '', |
| 101 | 101 |
| 102 # Interpreted regexp engine exists as platform-independent alternative | 102 # Interpreted regexp engine exists as platform-independent alternative |
| 103 # based where the regular expression is compiled to a bytecode. | 103 # based where the regular expression is compiled to a bytecode. |
| 104 'v8_interpreted_regexp%': 0, | 104 'v8_interpreted_regexp%': 0, |
| 105 |
| 106 # Name of the python executable. |
| 107 'python%': 'python', |
| 105 }, | 108 }, |
| 106 'target_defaults': { | 109 'target_defaults': { |
| 107 'conditions': [ | 110 'conditions': [ |
| 108 ['v8_enable_debugger_support==1', { | 111 ['v8_enable_debugger_support==1', { |
| 109 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 112 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
| 110 }], | 113 }], |
| 111 ['v8_enable_disassembler==1', { | 114 ['v8_enable_disassembler==1', { |
| 112 'defines': ['ENABLE_DISASSEMBLER',], | 115 'defines': ['ENABLE_DISASSEMBLER',], |
| 113 }], | 116 }], |
| 114 ['v8_enable_gdbjit==1', { | 117 ['v8_enable_gdbjit==1', { |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 'OptimizeReferences': '2', | 447 'OptimizeReferences': '2', |
| 445 'EnableCOMDATFolding': '2', | 448 'EnableCOMDATFolding': '2', |
| 446 }, | 449 }, |
| 447 }, | 450 }, |
| 448 }], # OS=="win" | 451 }], # OS=="win" |
| 449 ], # conditions | 452 ], # conditions |
| 450 }, # Release | 453 }, # Release |
| 451 }, # configurations | 454 }, # configurations |
| 452 }, # target_defaults | 455 }, # target_defaults |
| 453 } | 456 } |
| OLD | NEW |