Skip to content

Commit bbbacf4

Browse files
authored
Remove for_bazel_tests (#609)
Doesn't seem like we need these anymore. Downstream repos don't use them either
1 parent 8e5ec32 commit bbbacf4

15 files changed

Lines changed: 0 additions & 141 deletions

File tree

BUILD

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,3 @@ bzl_library(
1717
"//rules:apple_genrule",
1818
],
1919
)
20-
21-
# Consumed by bazel tests.
22-
filegroup(
23-
name = "for_bazel_tests",
24-
testonly = 1,
25-
srcs = [
26-
"BUILD",
27-
"LICENSE",
28-
"//build_settings:for_bazel_tests",
29-
"//configs:for_bazel_tests",
30-
"//constraints:for_bazel_tests",
31-
"//crosstool:for_bazel_tests",
32-
"//lib:for_bazel_tests",
33-
"//platforms:for_bazel_tests",
34-
"//rules:for_bazel_tests",
35-
"//tools:for_bazel_tests",
36-
"//xcode:for_bazel_tests",
37-
],
38-
# Exposed publicly just so other rules can use this if they set up
39-
# integration tests that need to copy all the support files into
40-
# a temporary workspace for the tests.
41-
visibility = ["//visibility:public"],
42-
)

build_settings/BUILD

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,3 @@ bzl_library(
1212
srcs = ["build_settings.bzl"],
1313
deps = ["@bazel_skylib//rules:common_settings"],
1414
)
15-
16-
filegroup(
17-
name = "for_bazel_tests",
18-
testonly = 1,
19-
srcs = glob(["**"]),
20-
visibility = ["//:__pkg__"],
21-
)

configs/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,3 @@ bzl_library(
3737
srcs = ["platforms.bzl"],
3838
visibility = ["//visibility:public"],
3939
)
40-
41-
# Consumed by bazel tests.
42-
filegroup(
43-
name = "for_bazel_tests",
44-
testonly = True,
45-
srcs = glob(["**"]),
46-
visibility = ["//:__pkg__"],
47-
)

constraints/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,3 @@ constraint_value(
6161
name = "pointer_authentication",
6262
constraint_setting = ":pointer_authentication_setting",
6363
)
64-
65-
# Consumed by bazel tests.
66-
filegroup(
67-
name = "for_bazel_tests",
68-
testonly = True,
69-
srcs = glob(["**"]),
70-
visibility = ["//:__pkg__"],
71-
)

crosstool/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,3 @@ force_exec(
7676
name = "exec_llvm_cov",
7777
target = ":exec_llvm_cov.target_config",
7878
)
79-
80-
# Consumed by bazel tests.
81-
filegroup(
82-
name = "for_bazel_tests",
83-
testonly = True,
84-
srcs = glob(["**"]),
85-
visibility = ["//:__pkg__"],
86-
)

lib/BUILD

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,3 @@ bzl_library(
7474
srcs = ["xcode_support.bzl"],
7575
deps = ["//xcode:providers"],
7676
)
77-
78-
# Consumed by bazel tests.
79-
filegroup(
80-
name = "for_bazel_tests",
81-
testonly = 1,
82-
srcs = glob(["**"]) + [
83-
"//lib/private:for_bazel_tests",
84-
],
85-
visibility = ["//:__pkg__"],
86-
)

lib/private/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,3 @@ bzl_library(
1414
"//test:__pkg__",
1515
],
1616
)
17-
18-
# Consumed by bazel tests.
19-
filegroup(
20-
name = "for_bazel_tests",
21-
testonly = 1,
22-
srcs = glob(["**"]),
23-
visibility = ["//lib:__pkg__"],
24-
)

platforms/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,3 @@ alias(
3838
)
3939
for platform in CPU_TO_DEFAULT_PLATFORM_NAME.values()
4040
]
41-
42-
# Consumed by bazel tests.
43-
filegroup(
44-
name = "for_bazel_tests",
45-
testonly = True,
46-
srcs = glob(["**"]),
47-
visibility = ["//:__pkg__"],
48-
)

rules/BUILD

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,3 @@ bzl_library(
4141
"//rules/private:apple_genrule",
4242
],
4343
)
44-
45-
# Consumed by bazel tests.
46-
filegroup(
47-
name = "for_bazel_tests",
48-
testonly = 1,
49-
srcs = glob(["**"]) + [
50-
"//rules/private:for_bazel_tests",
51-
],
52-
visibility = ["//:__pkg__"],
53-
)

rules/private/BUILD

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,3 @@ bzl_library(
1111
],
1212
deps = ["//lib:apple_support"],
1313
)
14-
15-
# Consumed by bazel tests.
16-
filegroup(
17-
name = "for_bazel_tests",
18-
testonly = 1,
19-
srcs = glob(["**"]),
20-
visibility = ["//rules:__pkg__"],
21-
)

0 commit comments

Comments
 (0)