| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as | 67 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as |
| 68 # well when compiling for the ARM target. | 68 # well when compiling for the ARM target. |
| 69 'v8_use_arm_eabi_hardfloat%': 'false', | 69 'v8_use_arm_eabi_hardfloat%': 'false', |
| 70 | 70 |
| 71 # Similar to the ARM hard float ABI but on MIPS. | 71 # Similar to the ARM hard float ABI but on MIPS. |
| 72 'v8_use_mips_abi_hardfloat%': 'true', | 72 'v8_use_mips_abi_hardfloat%': 'true', |
| 73 | 73 |
| 74 # Default arch variant for MIPS. | 74 # Default arch variant for MIPS. |
| 75 'mips_arch_variant%': 'mips32r2', | 75 'mips_arch_variant%': 'mips32r2', |
| 76 | 76 |
| 77 'v8_enable_latin_1%': 1, | |
| 78 | |
| 79 'v8_enable_debugger_support%': 1, | 77 'v8_enable_debugger_support%': 1, |
| 80 | 78 |
| 81 'v8_enable_backtrace%': 0, | 79 'v8_enable_backtrace%': 0, |
| 82 | 80 |
| 83 'v8_enable_disassembler%': 0, | 81 'v8_enable_disassembler%': 0, |
| 84 | 82 |
| 85 'v8_enable_gdbjit%': 0, | 83 'v8_enable_gdbjit%': 0, |
| 86 | 84 |
| 87 'v8_object_print%': 0, | 85 'v8_object_print%': 0, |
| 88 | 86 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 109 | 107 |
| 110 # For a shared library build, results in "libv8-<(soname_version).so". | 108 # For a shared library build, results in "libv8-<(soname_version).so". |
| 111 'soname_version%': '', | 109 'soname_version%': '', |
| 112 | 110 |
| 113 # Interpreted regexp engine exists as platform-independent alternative | 111 # Interpreted regexp engine exists as platform-independent alternative |
| 114 # based where the regular expression is compiled to a bytecode. | 112 # based where the regular expression is compiled to a bytecode. |
| 115 'v8_interpreted_regexp%': 0, | 113 'v8_interpreted_regexp%': 0, |
| 116 }, | 114 }, |
| 117 'target_defaults': { | 115 'target_defaults': { |
| 118 'conditions': [ | 116 'conditions': [ |
| 119 ['v8_enable_latin_1==1', { | |
| 120 'defines': ['ENABLE_LATIN_1',], | |
| 121 }], | |
| 122 ['v8_enable_debugger_support==1', { | 117 ['v8_enable_debugger_support==1', { |
| 123 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 118 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
| 124 }], | 119 }], |
| 125 ['v8_enable_disassembler==1', { | 120 ['v8_enable_disassembler==1', { |
| 126 'defines': ['ENABLE_DISASSEMBLER',], | 121 'defines': ['ENABLE_DISASSEMBLER',], |
| 127 }], | 122 }], |
| 128 ['v8_enable_gdbjit==1', { | 123 ['v8_enable_gdbjit==1', { |
| 129 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 124 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
| 130 }], | 125 }], |
| 131 ['v8_object_print==1', { | 126 ['v8_object_print==1', { |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 'OptimizeReferences': '2', | 463 'OptimizeReferences': '2', |
| 469 'EnableCOMDATFolding': '2', | 464 'EnableCOMDATFolding': '2', |
| 470 }, | 465 }, |
| 471 }, | 466 }, |
| 472 }], # OS=="win" | 467 }], # OS=="win" |
| 473 ], # conditions | 468 ], # conditions |
| 474 }, # Release | 469 }, # Release |
| 475 }, # configurations | 470 }, # configurations |
| 476 }, # target_defaults | 471 }, # target_defaults |
| 477 } | 472 } |
| OLD | NEW |