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

Unified Diff: BUILD.gn

Issue 2371833007: [wasm] Initial signal handler (Closed)
Patch Set: Restore signal mask at the right place Created 3 years, 10 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 | include/v8.h » ('j') | include/v8.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: BUILD.gn
diff --git a/BUILD.gn b/BUILD.gn
index 15740980b0b8d709167b4566a2720811f378c955..8ac1fcf4d2ecd3f9523df57d5a96f05b8884f0c6 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -1774,6 +1774,9 @@ v8_source_set("v8_base") {
"src/transitions-inl.h",
"src/transitions.cc",
"src/transitions.h",
+ "src/trap-handler/handler-outside.cc",
+ "src/trap-handler/handler-shared.cc",
+ "src/trap-handler/trap-handler-internal.h",
"src/trap-handler/trap-handler.h",
"src/type-hints.cc",
"src/type-hints.h",
@@ -1928,6 +1931,9 @@ v8_source_set("v8_base") {
"src/x64/simulator-x64.h",
"src/x64/sse-instr.h",
]
+ if (is_linux) {
+ sources += [ "src/trap-handler/handler-inside.cc" ]
+ }
} else if (v8_current_cpu == "arm") {
sources += [ ### gcmole(arch:arm) ###
"src/arm/assembler-arm-inl.h",
« no previous file with comments | « no previous file | include/v8.h » ('j') | include/v8.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698