[bazel] populate all_files (#1274)

Fixes #1273. This was broken by #1045 with the comment "* all_files not needed?" They were needed.
This commit is contained in:
walkingeyerobot
2023-08-29 10:21:25 -04:00
committed by GitHub
parent 3391e039d6
commit 9b0db91883

View File

@@ -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",