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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 'v8_enable_debugger_support%': 1, | 79 'v8_enable_debugger_support%': 1, |
80 | 80 |
81 'v8_enable_backtrace%': 0, | 81 'v8_enable_backtrace%': 0, |
82 | 82 |
83 'v8_enable_disassembler%': 0, | 83 'v8_enable_disassembler%': 0, |
84 | 84 |
85 'v8_enable_gdbjit%': 0, | 85 'v8_enable_gdbjit%': 0, |
86 | 86 |
87 'v8_object_print%': 0, | 87 'v8_object_print%': 0, |
88 | 88 |
| 89 # Enable support for Intel VTune. Supported on ia32/x64 only |
| 90 'v8_enable_vtunejit%': 0, |
| 91 |
89 # Enable profiling support. Only required on Windows. | 92 # Enable profiling support. Only required on Windows. |
90 'v8_enable_prof%': 0, | 93 'v8_enable_prof%': 0, |
91 | 94 |
92 'v8_enable_verify_heap%': 0, | 95 'v8_enable_verify_heap%': 0, |
93 | 96 |
94 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 97 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
95 'v8_no_strict_aliasing%': 0, | 98 'v8_no_strict_aliasing%': 0, |
96 | 99 |
97 # Chrome needs this definition unconditionally. For standalone V8 builds, | 100 # Chrome needs this definition unconditionally. For standalone V8 builds, |
98 # it's handled in build/standalone.gypi. | 101 # it's handled in build/standalone.gypi. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 }], | 133 }], |
131 ['v8_object_print==1', { | 134 ['v8_object_print==1', { |
132 'defines': ['OBJECT_PRINT',], | 135 'defines': ['OBJECT_PRINT',], |
133 }], | 136 }], |
134 ['v8_enable_verify_heap==1', { | 137 ['v8_enable_verify_heap==1', { |
135 'defines': ['VERIFY_HEAP',], | 138 'defines': ['VERIFY_HEAP',], |
136 }], | 139 }], |
137 ['v8_interpreted_regexp==1', { | 140 ['v8_interpreted_regexp==1', { |
138 'defines': ['V8_INTERPRETED_REGEXP',], | 141 'defines': ['V8_INTERPRETED_REGEXP',], |
139 }], | 142 }], |
| 143 ['v8_enable_vtunejit==1 and OS=="win"', { |
| 144 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',], |
| 145 }], |
| 146 ['v8_enable_vtunejit==1 and OS!="win"', { |
| 147 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',], |
| 148 'libraries': ['-ldl',], |
| 149 }], |
140 ['v8_target_arch=="arm"', { | 150 ['v8_target_arch=="arm"', { |
141 'defines': [ | 151 'defines': [ |
142 'V8_TARGET_ARCH_ARM', | 152 'V8_TARGET_ARCH_ARM', |
143 ], | 153 ], |
144 'conditions': [ | 154 'conditions': [ |
145 ['armv7==1', { | 155 ['armv7==1', { |
146 'defines': [ | 156 'defines': [ |
147 'CAN_USE_ARMV7_INSTRUCTIONS=1', | 157 'CAN_USE_ARMV7_INSTRUCTIONS=1', |
148 ], | 158 ], |
149 }], | 159 }], |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
468 'OptimizeReferences': '2', | 478 'OptimizeReferences': '2', |
469 'EnableCOMDATFolding': '2', | 479 'EnableCOMDATFolding': '2', |
470 }, | 480 }, |
471 }, | 481 }, |
472 }], # OS=="win" | 482 }], # OS=="win" |
473 ], # conditions | 483 ], # conditions |
474 }, # Release | 484 }, # Release |
475 }, # configurations | 485 }, # configurations |
476 }, # target_defaults | 486 }, # target_defaults |
477 } | 487 } |
OLD | NEW |