aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/gypfiles
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/gypfiles')
-rw-r--r--deps/v8/gypfiles/features.gypi6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps/v8/gypfiles/features.gypi b/deps/v8/gypfiles/features.gypi
index d285ee21da..8c99b4f086 100644
--- a/deps/v8/gypfiles/features.gypi
+++ b/deps/v8/gypfiles/features.gypi
@@ -89,6 +89,9 @@
# Controls the threshold for on-heap/off-heap Typed Arrays.
'v8_typed_array_max_size_in_heap%': 64,
+
+ # Enable mitigations for executing untrusted code.
+ 'v8_untrusted_code_mitigations%': 'true',
},
'target_defaults': {
'conditions': [
@@ -143,6 +146,9 @@
['v8_enable_concurrent_marking==1', {
'defines': ['V8_CONCURRENT_MARKING',],
}],
+ ['v8_untrusted_code_mitigations=="false"', {
+ 'defines': ['DISABLE_UNTRUSTED_CODE_MITIGATIONS',],
+ }],
], # conditions
'configurations': {
'DebugBaseCommon': {