Skip to content

Commit

Permalink
Internal change.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 587834619
  • Loading branch information
thomasvl authored and swiple-rules-gardener committed Dec 4, 2023
1 parent 86f8c6a commit 4d951fb
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
6 changes: 3 additions & 3 deletions examples/resources/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package(default_visibility = [
"//examples:__subpackages__",
])
package(
default_visibility = ["//examples:__subpackages__"],
)

licenses(["notice"])

Expand Down
4 changes: 3 additions & 1 deletion test/testdata/binaries/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ load(
"apple_binary",
)

package(default_visibility = ["//test:__subpackages__"])
package(
default_visibility = ["//test:__subpackages__"],
)

licenses(["notice"])

Expand Down
8 changes: 5 additions & 3 deletions test/testdata/provisioning/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package(default_visibility = [
"//test:__subpackages__",
])
package(
default_visibility = [
"//test:__subpackages__",
],
)

licenses(["notice"])

Expand Down
4 changes: 3 additions & 1 deletion test/testdata/resources/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ load(
"apple_resource_bundle",
)

package(default_visibility = ["//test:__subpackages__"])
package(
default_visibility = ["//test:__subpackages__"],
)

licenses(["notice"])

Expand Down
4 changes: 3 additions & 1 deletion test/testdata/rules/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")

package(default_visibility = ["//test:__subpackages__"])
package(
default_visibility = ["//test:__subpackages__"],
)

licenses(["notice"])

Expand Down

0 comments on commit 4d951fb

Please sign in to comment.