Commit 12d20bdd authored by jochen's avatar jochen Committed by Commit bot

Add v8_enable_verify_predictable gn args (mirroring the gyp var)

R=machenbach@chromium.org
BUG=chromium:645890

Review-Url: https://codereview.chromium.org/2614983002
Cr-Commit-Position: refs/heads/master@{#42093}
parent c16ca32e
...@@ -23,6 +23,9 @@ declare_args() { ...@@ -23,6 +23,9 @@ declare_args() {
# Sets -DVERIFY_HEAP. # Sets -DVERIFY_HEAP.
v8_enable_verify_heap = false v8_enable_verify_heap = false
# Sets -DVERIFY_PREDICTABLE
v8_enable_verify_predictable = false
# Enable compiler warnings when using V8_DEPRECATED apis. # Enable compiler warnings when using V8_DEPRECATED apis.
v8_deprecation_warnings = false v8_deprecation_warnings = false
...@@ -183,6 +186,9 @@ config("features") { ...@@ -183,6 +186,9 @@ config("features") {
if (v8_enable_verify_heap) { if (v8_enable_verify_heap) {
defines += [ "VERIFY_HEAP" ] defines += [ "VERIFY_HEAP" ]
} }
if (v8_enable_verify_predictable) {
defines += [ "VERIFY_PREDICTABLE" ]
}
if (v8_interpreted_regexp) { if (v8_interpreted_regexp) {
defines += [ "V8_INTERPRETED_REGEXP" ] defines += [ "V8_INTERPRETED_REGEXP" ]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment