blob: 15ccef4167404ee3a10be061ff20d4da5f6f017b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- third_party/node/node.gni.orig 2025-06-30 07:04:30 UTC
+++ third_party/node/node.gni
@@ -22,7 +22,7 @@ template("node") {
# When use_remoteexec=true, node actions may run on remote
# Linux worker. So it should include linux node binary in inputs.
- if (is_linux || is_chromeos || use_remoteexec) {
+ if ((is_linux || is_chromeos || use_remoteexec) && !is_bsd) {
inputs += [ "//third_party/node/linux/node-linux-x64/bin/node" ]
}
if (is_win && host_os == "win") {
|