From 9b0db91883452051aca8deddc932363aab29060b Mon Sep 17 00:00:00 2001 From: walkingeyerobot Date: Tue, 29 Aug 2023 10:21:25 -0400 Subject: [PATCH] [bazel] populate all_files (#1274) Fixes #1273. This was broken by #1045 with the comment "* all_files not needed?" They were needed. --- bazel/emscripten_toolchain/BUILD.bazel | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/bazel/emscripten_toolchain/BUILD.bazel b/bazel/emscripten_toolchain/BUILD.bazel index 7b3f16237f..fb8a6c1b2e 100644 --- a/bazel/emscripten_toolchain/BUILD.bazel +++ b/bazel/emscripten_toolchain/BUILD.bazel @@ -43,6 +43,15 @@ filegroup( ], ) +filegroup( + name = "all_files", + srcs = [ + ":ar_files", + ":compiler_files", + ":linker_files", + ], +) + filegroup(name = "empty") # dlmalloc.bc is implictly added by the emscripten toolchain @@ -61,7 +70,7 @@ emscripten_cc_toolchain_config_rule( cc_toolchain( name = "cc-compiler-wasm", - all_files = ":empty", + all_files = ":all_files", ar_files = ":ar_files", as_files = ":empty", compiler_files = ":compiler_files",