From 73045e05a4da493e39b0654d1419da180f54df2a Mon Sep 17 00:00:00 2001 From: thomasvl Date: Fri, 18 Jan 2019 12:36:37 -0500 Subject: [PATCH] Bazel trips up on visibility with @repository references. Avoiding https://github.com/bazelbuild/bazel/issues/7180 RELNOTES: None PiperOrigin-RevId: 229942617 --- BUILD | 6 +++--- test/BUILD | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/BUILD b/BUILD index 5a8aa17..731d0f2 100644 --- a/BUILD +++ b/BUILD @@ -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 diff --git a/test/BUILD b/test/BUILD index d89094f..744df57 100644 --- a/test/BUILD +++ b/test/BUILD @@ -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")