-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
44 lines (41 loc) · 1.04 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package(
default_visibility = ["//visibility:public"],
)
ALL_PACKAGES = [
"//examples",
"//examples/snake",
"//libraries",
"//libraries/algorithms",
"//libraries/code-http-server",
"//libraries/core-language",
"//libraries/core-language/examples",
"//libraries/data",
"//libraries/database",
"//libraries/os",
"//libraries/prim-language",
"//libraries/prim-language/examples",
"//libraries/protocols/http",
"//libraries/yaspl",
"//libraries/yaspl/conversions",
"//libraries/yaspl/frontend",
"//libraries/yaspl/interpreter",
"//libraries/yaspl/languages",
"//libraries/yaspl/runtime",
"//rules",
"//tools",
"//tools/doc-server",
"//tools/gcs-server",
"//tools/objdump",
"//tools/shell",
"//tools/web-calculator",
"//web-assembly",
]
test_suite(
name = "all_tests",
testonly = 0,
tests = [pkg + ":package_tests" for pkg in ALL_PACKAGES],
)
filegroup(
name = "all_binaries",
srcs = [pkg + ":package_binaries" for pkg in ALL_PACKAGES],
)