Skip to content

Commit

Permalink
Bazel trips up on visibility with @repository references.
Browse files Browse the repository at this point in the history
Avoiding bazelbuild/bazel#7180

RELNOTES: None
PiperOrigin-RevId: 229942617
  • Loading branch information
thomasvl authored and sergiocampama committed Jan 18, 2019
1 parent bb85371 commit 77c9d53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ filegroup(
testonly = 1,
srcs = [
"WORKSPACE",
"@build_bazel_apple_support//lib:for_bazel_tests",
"@build_bazel_apple_support//rules:for_bazel_tests",
"@build_bazel_apple_support//tools:for_bazel_tests",
"//lib:for_bazel_tests",
"//rules:for_bazel_tests",
"//tools:for_bazel_tests",
],
# Exposed publicly just so other rules can use this if they set up
# integration tests that need to copy all the support files into
Expand Down
2 changes: 1 addition & 1 deletion test/BUILD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("@build_bazel_apple_support//rules:apple_genrule.bzl", "apple_genrule")
load("//rules:apple_genrule.bzl", "apple_genrule")
load(":apple_support_test.bzl", "apple_support_test")
load(":xcode_support_test.bzl", "xcode_support_test")

Expand Down

0 comments on commit 77c9d53

Please sign in to comment.