From d1a8c2e989a5065d78acca8aaad68aa47bea413e Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Wed, 21 Feb 2024 12:54:09 +0900 Subject: [PATCH] build: fix building js2c with GN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is a follow-up to https://github.com/nodejs/node/pull/51605. PR-URL: https://github.com/nodejs/node/pull/51818 Reviewed-By: Michaƫl Zasso Reviewed-By: Joyee Cheung Reviewed-By: Yagiz Nizipli Reviewed-By: Luigi Pinca --- unofficial.gni | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unofficial.gni b/unofficial.gni index 5199d84fa46268..6047dfd9c0d8a1 100644 --- a/unofficial.gni +++ b/unofficial.gni @@ -266,7 +266,10 @@ template("node_gn_build") { sources = [ "tools/js2c.cc", "tools/executable_wrapper.h", + "src/embedded_data.cc", + "src/embedded_data.h", ] + include_dirs = [ "src" ] } action("run_node_js2c") {