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 '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 'v8_enable_gdbjit%': 0, | 73 'v8_enable_gdbjit%': 0, |
74 | 74 |
75 'v8_object_print%': 0, | 75 'v8_object_print%': 0, |
76 | 76 |
77 'v8_enable_vtunejit%': 0, | |
Jakob Kummerow
2012/12/21 12:50:59
A short comment would be nice, e.g.:
# Enable supp
| |
78 | |
77 # Enable profiling support. Only required on Windows. | 79 # Enable profiling support. Only required on Windows. |
78 'v8_enable_prof%': 0, | 80 'v8_enable_prof%': 0, |
79 | 81 |
80 'v8_enable_verify_heap%': 0, | 82 'v8_enable_verify_heap%': 0, |
81 | 83 |
82 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 84 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
83 'v8_no_strict_aliasing%': 0, | 85 'v8_no_strict_aliasing%': 0, |
84 | 86 |
85 # Chrome needs this definition unconditionally. For standalone V8 builds, | 87 # Chrome needs this definition unconditionally. For standalone V8 builds, |
86 # it's handled in build/standalone.gypi. | 88 # it's handled in build/standalone.gypi. |
87 'want_separate_host_toolset%': 1, | 89 'want_separate_host_toolset%': 1, |
88 | 90 |
89 'v8_use_snapshot%': 'true', | 91 'v8_use_snapshot%': 'true', |
90 'host_os%': '<(OS)', | 92 'host_os%': '<(OS)', |
91 'v8_use_liveobjectlist%': 'false', | 93 'v8_use_liveobjectlist%': 'false', |
94 #'werror%': '', | |
Jakob Kummerow
2012/12/21 12:50:59
what's this?
| |
92 'werror%': '-Werror', | 95 'werror%': '-Werror', |
93 | 96 |
94 # With post mortem support enabled, metadata is embedded into libv8 that | 97 # With post mortem support enabled, metadata is embedded into libv8 that |
95 # describes various parameters of the VM for use by debuggers. See | 98 # describes various parameters of the VM for use by debuggers. See |
96 # tools/gen-postmortem-metadata.py for details. | 99 # tools/gen-postmortem-metadata.py for details. |
97 'v8_postmortem_support%': 'false', | 100 'v8_postmortem_support%': 'false', |
98 | 101 |
99 # For a shared library build, results in "libv8-<(soname_version).so". | 102 # For a shared library build, results in "libv8-<(soname_version).so". |
100 'soname_version%': '', | 103 'soname_version%': '', |
101 | 104 |
(...skipping 14 matching lines...) Expand all Loading... | |
116 }], | 119 }], |
117 ['v8_object_print==1', { | 120 ['v8_object_print==1', { |
118 'defines': ['OBJECT_PRINT',], | 121 'defines': ['OBJECT_PRINT',], |
119 }], | 122 }], |
120 ['v8_enable_verify_heap==1', { | 123 ['v8_enable_verify_heap==1', { |
121 'defines': ['VERIFY_HEAP',], | 124 'defines': ['VERIFY_HEAP',], |
122 }], | 125 }], |
123 ['v8_interpreted_regexp==1', { | 126 ['v8_interpreted_regexp==1', { |
124 'defines': ['V8_INTERPRETED_REGEXP',], | 127 'defines': ['V8_INTERPRETED_REGEXP',], |
125 }], | 128 }], |
129 ['v8_enable_vtunejit==1', { | |
130 'conditions': [ | |
Jakob Kummerow
2012/12/21 12:50:59
nit: indentation
| |
131 ['v8_target_arch=="ia32" or v8_target_arch=="x64"', { | |
Jakob Kummerow
2012/12/21 12:50:59
A 'conditions' section inside a 'conditions' secti
| |
132 'defines': ['ENABLE_VTUNE_JIT_INTERFACE',], | |
133 'libraries': ['-ldl',], | |
134 #dw -ljitprofiling',], | |
Jakob Kummerow
2012/12/21 12:50:59
what's this?
| |
135 }], | |
136 ], | |
137 }], | |
126 ['v8_target_arch=="arm"', { | 138 ['v8_target_arch=="arm"', { |
127 'defines': [ | 139 'defines': [ |
128 'V8_TARGET_ARCH_ARM', | 140 'V8_TARGET_ARCH_ARM', |
129 ], | 141 ], |
130 'conditions': [ | 142 'conditions': [ |
131 ['armv7==1', { | 143 ['armv7==1', { |
132 'defines': [ | 144 'defines': [ |
133 'CAN_USE_ARMV7_INSTRUCTIONS=1', | 145 'CAN_USE_ARMV7_INSTRUCTIONS=1', |
134 ], | 146 ], |
135 }], | 147 }], |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
453 'OptimizeReferences': '2', | 465 'OptimizeReferences': '2', |
454 'EnableCOMDATFolding': '2', | 466 'EnableCOMDATFolding': '2', |
455 }, | 467 }, |
456 }, | 468 }, |
457 }], # OS=="win" | 469 }], # OS=="win" |
458 ], # conditions | 470 ], # conditions |
459 }, # Release | 471 }, # Release |
460 }, # configurations | 472 }, # configurations |
461 }, # target_defaults | 473 }, # target_defaults |
462 } | 474 } |
OLD | NEW |