summaryrefslogtreecommitdiff
path: root/bp2build/testing.go
diff options
context:
space:
mode:
author Liz Kammer <eakammer@google.com> 2021-02-17 13:22:03 -0500
committer Liz Kammer <eakammer@google.com> 2021-03-15 13:09:25 -0400
commitba3ea16f14eb1017fd75aead089ca34b6f32406b (patch)
tree57158b4cdf73362469cf120ce3cd28f80a5f4043 /bp2build/testing.go
parentca5e611e0af6024892e9ca4f0de0d44e557d4944 (diff)
Use handcrafted build targets in bp2build
If both bp2build_available and label are specified, label will be preferred. Initially, we copy the entire BUILD.bazel file. Eventually we may move this to use bazel query for a more accurate result. Test: go test * Test: build/bazel/scripts/milestone-2/demo.sh full Test: GENERATE_BAZEL_FILES=true m nothing edit bionic/libc/tools/BUILD.bazel GENERATE_BAZEL_FILES=true m nothing and verify changes picked up Bug: 180516554 Change-Id: I43025583300e6b10d2c18032cd4a76237b578d59
Diffstat (limited to 'bp2build/testing.go')
-rw-r--r--bp2build/testing.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/bp2build/testing.go b/bp2build/testing.go
index bd75a8fc8..a15a4a552 100644
--- a/bp2build/testing.go
+++ b/bp2build/testing.go
@@ -175,7 +175,7 @@ func customBp2BuildMutatorFromStarlark(ctx android.TopDownMutatorContext) {
}
// Helper method for tests to easily access the targets in a dir.
-func generateBazelTargetsForDir(codegenCtx CodegenContext, dir string) BazelTargets {
+func generateBazelTargetsForDir(codegenCtx *CodegenContext, dir string) BazelTargets {
buildFileToTargets, _ := GenerateBazelTargets(codegenCtx)
return buildFileToTargets[dir]
}