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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as | 59 # registers. Note that the GCC flag '-mfloat-abi=hard' should be used as |
60 # well when compiling for the ARM target. | 60 # well when compiling for the ARM target. |
61 'v8_use_arm_eabi_hardfloat%': 'false', | 61 'v8_use_arm_eabi_hardfloat%': 'false', |
62 | 62 |
63 # Similar to the ARM hard float ABI but on MIPS. | 63 # Similar to the ARM hard float ABI but on MIPS. |
64 'v8_use_mips_abi_hardfloat%': 'true', | 64 'v8_use_mips_abi_hardfloat%': 'true', |
65 | 65 |
66 # Default arch variant for MIPS. | 66 # Default arch variant for MIPS. |
67 'mips_arch_variant%': 'mips32r2', | 67 'mips_arch_variant%': 'mips32r2', |
68 | 68 |
| 69 'v8_enable_latin_1%': 0, |
| 70 |
69 'v8_enable_debugger_support%': 1, | 71 'v8_enable_debugger_support%': 1, |
70 | 72 |
71 'v8_enable_backtrace%': 0, | 73 'v8_enable_backtrace%': 0, |
72 | 74 |
73 'v8_enable_disassembler%': 0, | 75 'v8_enable_disassembler%': 0, |
74 | 76 |
75 'v8_enable_gdbjit%': 0, | 77 'v8_enable_gdbjit%': 0, |
76 | 78 |
77 'v8_object_print%': 0, | 79 'v8_object_print%': 0, |
78 | 80 |
(...skipping 21 matching lines...) Expand all Loading... |
100 | 102 |
101 # For a shared library build, results in "libv8-<(soname_version).so". | 103 # For a shared library build, results in "libv8-<(soname_version).so". |
102 'soname_version%': '', | 104 'soname_version%': '', |
103 | 105 |
104 # Interpreted regexp engine exists as platform-independent alternative | 106 # Interpreted regexp engine exists as platform-independent alternative |
105 # based where the regular expression is compiled to a bytecode. | 107 # based where the regular expression is compiled to a bytecode. |
106 'v8_interpreted_regexp%': 0, | 108 'v8_interpreted_regexp%': 0, |
107 }, | 109 }, |
108 'target_defaults': { | 110 'target_defaults': { |
109 'conditions': [ | 111 'conditions': [ |
| 112 ['v8_enable_latin_1==1', { |
| 113 'defines': ['ENABLE_LATIN_1',], |
| 114 }], |
110 ['v8_enable_debugger_support==1', { | 115 ['v8_enable_debugger_support==1', { |
111 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 116 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
112 }], | 117 }], |
113 ['v8_enable_disassembler==1', { | 118 ['v8_enable_disassembler==1', { |
114 'defines': ['ENABLE_DISASSEMBLER',], | 119 'defines': ['ENABLE_DISASSEMBLER',], |
115 }], | 120 }], |
116 ['v8_enable_gdbjit==1', { | 121 ['v8_enable_gdbjit==1', { |
117 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 122 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
118 }], | 123 }], |
119 ['v8_object_print==1', { | 124 ['v8_object_print==1', { |
(...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 'OptimizeReferences': '2', | 464 'OptimizeReferences': '2', |
460 'EnableCOMDATFolding': '2', | 465 'EnableCOMDATFolding': '2', |
461 }, | 466 }, |
462 }, | 467 }, |
463 }], # OS=="win" | 468 }], # OS=="win" |
464 ], # conditions | 469 ], # conditions |
465 }, # Release | 470 }, # Release |
466 }, # configurations | 471 }, # configurations |
467 }, # target_defaults | 472 }, # target_defaults |
468 } | 473 } |
OLD | NEW |