generated from bazel-contrib/rules-template
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathBUILD.bazel
41 lines (33 loc) · 1016 Bytes
/
BUILD.bazel
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
# This load statement must be in the docs/ package rather than anything users depend on
# so that the dependency on stardoc doesn't leak to them.
load("@aspect_bazel_lib//lib:docs.bzl", "stardoc_with_diff_test", "update_docs")
stardoc_with_diff_test(
name = "rules",
bzl_library_target = "//pycross:defs",
)
stardoc_with_diff_test(
name = "workspace_rules",
bzl_library_target = "//pycross:workspace",
)
stardoc_with_diff_test(
name = "ext_environments",
bzl_library_target = "//pycross/extensions:environments",
)
stardoc_with_diff_test(
name = "ext_lock_file",
bzl_library_target = "//pycross/extensions:lock_file",
)
stardoc_with_diff_test(
name = "ext_lock_import",
bzl_library_target = "//pycross/extensions:lock_import",
)
stardoc_with_diff_test(
name = "ext_lock_repos",
bzl_library_target = "//pycross/extensions:lock_repos",
)
stardoc_with_diff_test(
name = "ext_pycross",
bzl_library_target = "//pycross/extensions:pycross",
)
update_docs(
)