diff options
Diffstat (limited to 'bp2build/testing.go')
-rw-r--r-- | bp2build/testing.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bp2build/testing.go b/bp2build/testing.go index 690748756..3e2c296e8 100644 --- a/bp2build/testing.go +++ b/bp2build/testing.go @@ -693,11 +693,11 @@ func makeBazelTargetHostOrDevice(typ, name string, attrs AttrNameToString, hod a switch hod { case android.HostSupported: attrs["target_compatible_with"] = `select({ - "//build/bazel/platforms/os:android": ["@platforms//:incompatible"], + "//build/bazel_common_rules/platforms/os:android": ["@platforms//:incompatible"], "//conditions:default": [], })` case android.DeviceSupported: - attrs["target_compatible_with"] = `["//build/bazel/platforms/os:android"]` + attrs["target_compatible_with"] = `["//build/bazel_common_rules/platforms/os:android"]` } } |