Merge "mixed builds: add cc_test bazel handler, and add adbd_test to staging allowlist."

This commit is contained in:
Treehugger Robot
2022-12-20 03:12:53 +00:00
committed by Gerrit Code Review
5 changed files with 56 additions and 5 deletions

View File

@@ -667,10 +667,12 @@ load(":main.bzl", "config_node", "mixed_build_root", "phony_root")
mixed_build_root(name = "buildroot",
deps = [%s],
testonly = True, # Unblocks testonly deps.
)
phony_root(name = "phonyroot",
deps = [":buildroot"],
testonly = True, # Unblocks testonly deps.
)
`
configNodeFormatString := `
@@ -678,6 +680,7 @@ config_node(name = "%s",
arch = "%s",
os = "%s",
deps = [%s],
testonly = True, # Unblocks testonly deps.
)
`