File tree Expand file tree Collapse file tree 8 files changed +49
-0
lines changed Expand file tree Collapse file tree 8 files changed +49
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ filegroup(
32
32
"WORKSPACE" ,
33
33
"internal_deps.bzl" ,
34
34
"internal_setup.bzl" ,
35
+ "//gazelle:distribution" ,
35
36
"//python:distribution" ,
36
37
"//python/pip_install:distribution" ,
37
38
"//third_party/github.com/bazelbuild/bazel-skylib/lib:distribution" ,
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ package(default_visibility = ["//visibility:public"])
17
17
18
18
licenses (["notice" ]) # Apache 2.0
19
19
20
+ bazel_integration_test (
21
+ name = "build_file_generation_example" ,
22
+ timeout = "long" ,
23
+ )
24
+
20
25
bazel_integration_test (
21
26
name = "pip_install_example" ,
22
27
timeout = "long" ,
Original file line number Diff line number Diff line change @@ -69,3 +69,13 @@ gazelle_binary(
69
69
languages = ["//gazelle" ],
70
70
visibility = ["//visibility:public" ],
71
71
)
72
+
73
+ filegroup (
74
+ name = "distribution" ,
75
+ srcs = glob (["**" ]) + [
76
+ "//gazelle/manifest:distribution" ,
77
+ "//gazelle/modules_mapping:distribution" ,
78
+ "//gazelle/pythonconfig:distribution" ,
79
+ ],
80
+ visibility = ["//:__pkg__" ],
81
+ )
Original file line number Diff line number Diff line change @@ -17,3 +17,12 @@ go_test(
17
17
data = glob (["testdata/**" ]),
18
18
deps = [":manifest" ],
19
19
)
20
+
21
+ filegroup (
22
+ name = "distribution" ,
23
+ srcs = glob (["**" ]) + [
24
+ "//gazelle/manifest/generate:distribution" ,
25
+ "//gazelle/manifest/test:distribution" ,
26
+ ],
27
+ visibility = ["//gazelle:__pkg__" ],
28
+ )
Original file line number Diff line number Diff line change @@ -13,3 +13,9 @@ go_binary(
13
13
embed = [":generate_lib" ],
14
14
visibility = ["//visibility:public" ],
15
15
)
16
+
17
+ filegroup (
18
+ name = "distribution" ,
19
+ srcs = glob (["**" ]),
20
+ visibility = ["//gazelle/manifest:__pkg__" ],
21
+ )
Original file line number Diff line number Diff line change @@ -15,3 +15,9 @@ go_binary(
15
15
)
16
16
17
17
exports_files (["run.sh" ])
18
+
19
+ filegroup (
20
+ name = "distribution" ,
21
+ srcs = glob (["**" ]),
22
+ visibility = ["//gazelle/manifest:__pkg__" ],
23
+ )
Original file line number Diff line number Diff line change @@ -5,3 +5,9 @@ py_binary(
5
5
srcs = ["generator.py" ],
6
6
visibility = ["//visibility:public" ],
7
7
)
8
+
9
+ filegroup (
10
+ name = "distribution" ,
11
+ srcs = glob (["**" ]),
12
+ visibility = ["//gazelle:__pkg__" ],
13
+ )
Original file line number Diff line number Diff line change @@ -14,3 +14,9 @@ go_library(
14
14
"@com_github_emirpasic_gods//lists/singlylinkedlist" ,
15
15
],
16
16
)
17
+
18
+ filegroup (
19
+ name = "distribution" ,
20
+ srcs = glob (["**" ]),
21
+ visibility = ["//gazelle:__pkg__" ],
22
+ )
You can’t perform that action at this time.
0 commit comments