From 067ab06f21e901dce5cd5ec36c4aae80abcb11bd Mon Sep 17 00:00:00 2001 From: Cheng Date: Sat, 25 May 2024 13:58:25 +0900 Subject: [PATCH] build: fix building embedtest in GN build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/53145 Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca --- unofficial.gni | 1 + 1 file changed, 1 insertion(+) diff --git a/unofficial.gni b/unofficial.gni index 32df8b820f7..72114409322 100644 --- a/unofficial.gni +++ b/unofficial.gni @@ -346,6 +346,7 @@ template("node_gn_build") { output_name = "embedtest" testonly = true deps = [ ":libnode" ] + include_dirs = [ "tools" ] sources = [ "src/node_snapshot_stub.cc", "test/embedding/embedtest.cc",