[bazel] populate all_files (#1274)

Fixes #1273. This was broken by #1045 with the comment "* all_files not needed?" They were needed.
diff --git a/bazel/emscripten_toolchain/BUILD.bazel b/bazel/emscripten_toolchain/BUILD.bazel
index 7b3f162..fb8a6c1 100644
--- a/bazel/emscripten_toolchain/BUILD.bazel
+++ b/bazel/emscripten_toolchain/BUILD.bazel
@@ -43,6 +43,15 @@
     ],
 )
 
+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 @@
 
 cc_toolchain(
     name = "cc-compiler-wasm",
-    all_files = ":empty",
+    all_files = ":all_files",
     ar_files = ":ar_files",
     as_files = ":empty",
     compiler_files = ":compiler_files",