Skip to content

Commit 34e6772

Browse files
authored
[Bazel] Add an :all target (#1295)
Having an :all target is the most future-proof way here. Closes #1294.
1 parent 40e9cd8 commit 34e6772

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bazel/emscripten_deps.bzl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ def _parse_version(v):
88
BUILD_FILE_CONTENT_TEMPLATE = """
99
package(default_visibility = ['//visibility:public'])
1010
11+
filegroup(
12+
name = "all",
13+
srcs = glob(["**"]),
14+
)
15+
1116
filegroup(
1217
name = "includes",
1318
srcs = glob([

0 commit comments

Comments
 (0)