2018-10-24 18:24:11 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2019-04-20 17:20:37 +00:00
|
|
|
From: Jeremy Apthorp <nornagon@nornagon.net>
|
|
|
|
Date: Tue, 16 Apr 2019 10:43:04 -0700
|
2018-10-24 18:24:11 +00:00
|
|
|
Subject: build_gn.patch
|
|
|
|
|
|
|
|
|
2018-09-14 05:02:16 +00:00
|
|
|
diff --git a/BUILD.gn b/BUILD.gn
|
2019-09-18 19:58:00 +00:00
|
|
|
index 7e683f86e529316f923b8ff2b6fe5ed94f22420a..b0e242d6c369185172184c1f4a88247aa1e0896c 100644
|
2018-09-14 05:02:16 +00:00
|
|
|
--- a/BUILD.gn
|
|
|
|
+++ b/BUILD.gn
|
2019-09-18 19:58:00 +00:00
|
|
|
@@ -284,7 +284,7 @@ config("internal_config") {
|
2019-02-14 16:32:03 +00:00
|
|
|
":v8_header_features",
|
|
|
|
]
|
2018-09-14 05:02:16 +00:00
|
|
|
|
|
|
|
- if (is_component_build) {
|
|
|
|
+ if (is_component_build || is_electron_build) {
|
2019-02-14 16:32:03 +00:00
|
|
|
defines += [ "BUILDING_V8_SHARED" ]
|
2018-09-14 05:02:16 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-18 19:58:00 +00:00
|
|
|
@@ -3834,7 +3834,7 @@ if (current_toolchain == v8_generator_toolchain) {
|
2019-04-20 17:20:37 +00:00
|
|
|
"src/interpreter/bytecodes.h",
|
|
|
|
]
|
|
|
|
|
|
|
|
- configs = [ ":internal_config" ]
|
|
|
|
+ configs = [ ":internal_config_base" ]
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
":v8_libbase",
|
2019-09-18 19:58:00 +00:00
|
|
|
@@ -3865,6 +3865,8 @@ if (v8_use_snapshot && current_toolchain == v8_snapshot_toolchain) {
|
2018-09-14 05:02:16 +00:00
|
|
|
|
|
|
|
configs = [ ":internal_config" ]
|
|
|
|
|
|
|
|
+ configs += [ "//electron/build/config:build_time_executable" ]
|
|
|
|
+
|
|
|
|
deps = [
|
2019-04-20 17:20:37 +00:00
|
|
|
":v8_base_without_compiler",
|
|
|
|
":v8_compiler_for_mksnapshot",
|