Index: BUILD.gn |
diff --git a/BUILD.gn b/BUILD.gn |
index b737883542b372d4cf7e2b7aa95f6fc45b1483d3..9539c5d9d8d56f5444c0f3def439927f64c1cef9 100644 |
--- a/BUILD.gn |
+++ b/BUILD.gn |
@@ -83,6 +83,7 @@ if (v8_enable_gdbjit == "") { |
} |
} |
+v8_standalone = defined(v8_standalone_build) && v8_standalone_build |
v8_generated_peephole_source = "$target_gen_dir/bytecode-peephole-table.cc" |
v8_random_seed = "314159265" |
v8_toolset_for_shell = "host" |
@@ -329,6 +330,12 @@ config("toolchain") { |
} else if (dcheck_always_on) { |
defines += [ "DEBUG" ] |
} |
+ |
+ if (v8_standalone) { |
+ if (is_android) { |
+ defines += [ "V8_ANDROID_LOG_STDOUT" ] |
Michael Achenbach
2016/07/26 15:06:34
Porting https://cs.chromium.org/chromium/src/v8/gy
vogelheim
2016/07/27 07:43:40
Are there any sort of asserts or unit tests for BU
|
+ } |
+ } |
} |
############################################################################### |