| Index: src/d8.cc
|
| diff --git a/src/d8.cc b/src/d8.cc
|
| index 58b59c890fac87d6a8de637e677432b975e1ea03..2a141af71d46acde6b33bdaf033adc27c85a0275 100644
|
| --- a/src/d8.cc
|
| +++ b/src/d8.cc
|
| @@ -49,10 +49,6 @@
|
| #include "src/v8.h"
|
| #endif // !V8_SHARED
|
|
|
| -#if defined(V8_WASM)
|
| -#include "src/wasm/wasm-js.h"
|
| -#endif
|
| -
|
| #if !defined(_WIN32) && !defined(_WIN64)
|
| #include <unistd.h> // NOLINT
|
| #else
|
| @@ -1182,11 +1178,6 @@ Local<ObjectTemplate> Shell::CreateGlobalTemplate(Isolate* isolate) {
|
| .ToLocalChecked(),
|
| os_templ);
|
|
|
| -#if defined(V8_WASM)
|
| - // Install WASM API.
|
| - WasmJs::Install(isolate, global_template);
|
| -#endif
|
| -
|
| return global_template;
|
| }
|
|
|
|
|