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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_debugger_support%': 1, | 69 'v8_enable_debugger_support%': 1, |
70 | 70 |
71 'v8_enable_disassembler%': 0, | 71 'v8_enable_disassembler%': 0, |
72 | 72 |
| 73 # Enable extra checks in API functions and other strategic places. |
| 74 'v8_enable_extra_checks%' 1, |
| 75 |
73 'v8_object_print%': 0, | 76 'v8_object_print%': 0, |
74 | 77 |
75 'v8_enable_gdbjit%': 0, | 78 'v8_enable_gdbjit%': 0, |
76 | 79 |
77 # Enable profiling support. Only required on Windows. | 80 # Enable profiling support. Only required on Windows. |
78 'v8_enable_prof%': 0, | 81 'v8_enable_prof%': 0, |
79 | 82 |
80 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 83 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
81 'v8_no_strict_aliasing%': 0, | 84 'v8_no_strict_aliasing%': 0, |
82 | 85 |
(...skipping 19 matching lines...) Expand all Loading... |
102 'v8_interpreted_regexp%': 0, | 105 'v8_interpreted_regexp%': 0, |
103 }, | 106 }, |
104 'target_defaults': { | 107 'target_defaults': { |
105 'conditions': [ | 108 'conditions': [ |
106 ['v8_enable_debugger_support==1', { | 109 ['v8_enable_debugger_support==1', { |
107 'defines': ['ENABLE_DEBUGGER_SUPPORT',], | 110 'defines': ['ENABLE_DEBUGGER_SUPPORT',], |
108 }], | 111 }], |
109 ['v8_enable_disassembler==1', { | 112 ['v8_enable_disassembler==1', { |
110 'defines': ['ENABLE_DISASSEMBLER',], | 113 'defines': ['ENABLE_DISASSEMBLER',], |
111 }], | 114 }], |
| 115 ['v8_enable_extra_checks==1', { |
| 116 'defines': ['ENABLE_EXTRA_CHECKS',], |
| 117 }], |
112 ['v8_object_print==1', { | 118 ['v8_object_print==1', { |
113 'defines': ['OBJECT_PRINT',], | 119 'defines': ['OBJECT_PRINT',], |
114 }], | 120 }], |
115 ['v8_enable_gdbjit==1', { | 121 ['v8_enable_gdbjit==1', { |
116 'defines': ['ENABLE_GDB_JIT_INTERFACE',], | 122 'defines': ['ENABLE_GDB_JIT_INTERFACE',], |
117 }], | 123 }], |
118 ['v8_interpreted_regexp==1', { | 124 ['v8_interpreted_regexp==1', { |
119 'defines': ['V8_INTERPRETED_REGEXP',], | 125 'defines': ['V8_INTERPRETED_REGEXP',], |
120 }], | 126 }], |
121 ['v8_target_arch=="arm"', { | 127 ['v8_target_arch=="arm"', { |
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 'OptimizeReferences': '2', | 421 'OptimizeReferences': '2', |
416 'EnableCOMDATFolding': '2', | 422 'EnableCOMDATFolding': '2', |
417 }, | 423 }, |
418 }, | 424 }, |
419 }], # OS=="win" | 425 }], # OS=="win" |
420 ], # conditions | 426 ], # conditions |
421 }, # Release | 427 }, # Release |
422 }, # configurations | 428 }, # configurations |
423 }, # target_defaults | 429 }, # target_defaults |
424 } | 430 } |
OLD | NEW |