Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(102)

Unified Diff: BUILD.gn

Issue 2034633004: [gn] Add swarming support (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gni/isolate.gni » ('j') | gni/isolate.gni » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 05bcec911429f3278157d43f0a4151c6ef491863..56a65e4fce660646dc13fc6e55ebe62a1aad3061 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -12,19 +12,12 @@ if (is_android) {
}
import("gni/v8.gni")
+import("gni/isolate.gni")
import("//build_overrides/v8.gni")
import("snapshot_toolchain.gni")
declare_args() {
- # Enable the snapshot feature, for fast context creation.
- # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html
- v8_use_snapshot = true
-
- # Use external files for startup data blobs:
- # the JS builtins sources and the start snapshot.
- v8_use_external_startup_data = !is_ios
-
# Sets -DVERIFY_HEAP.
v8_enable_verify_heap = false
@@ -2148,6 +2141,14 @@ executable("d8") {
}
}
+v8_isolate_run("d8") {
Michael Achenbach 2016/06/02 14:23:57 This ports https://cs.chromium.org/chromium/src/v8
+ deps = [
+ ":d8",
+ ]
+
+ isolate = "//src/d8.isolate"
+}
+
if (want_v8_shell) {
executable("v8_shell") {
sources = [
« no previous file with comments | « no previous file | gni/isolate.gni » ('j') | gni/isolate.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698