From bb06778a654ee979f36750751a5c1bf42f0bf94b 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 32df8b820f7e7c..721144093222a1 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",