aboutsummaryrefslogtreecommitdiff
path: root/cc/library_headers.go
diff options
context:
space:
mode:
authorSpandan Das <spandandas@google.com>2023-04-12 19:05:49 +0000
committerSpandan Das <spandandas@google.com>2023-04-27 23:24:49 +0000
commit39b6cc53369a6ec132b58d99514cd7a2ea499efd (patch)
tree4c211ebfe39e2ea60de495f6928e39532ca31320 /cc/library_headers.go
parentf57a966b6694da970e99f519919f9b845b713163 (diff)
downloadsoong-39b6cc53369a6ec132b58d99514cd7a2ea499efd.tar.gz
Ignore test apexes from bp2build generated tags
Soong does not enforce apex_available on the contents of test apex. To prevent special-casing test apexes in the apex validation aspect in Bazel, drop the test apexes from the tags altogether. ( The core problem I am trying to solve is making sure that stub libraries in Bazel have a single apex available. apex validation happens to be a nice side benefit) Bug: 277651159 Test: go test ./bp2build Change-Id: Ibb3cfedb5c0f2cda0464bf3758c70b67cb5885d1
Diffstat (limited to 'cc/library_headers.go')
-rw-r--r--cc/library_headers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/library_headers.go b/cc/library_headers.go
index 1dee72679..ce9c4aacf 100644
--- a/cc/library_headers.go
+++ b/cc/library_headers.go
@@ -151,7 +151,7 @@ func libraryHeadersBp2Build(ctx android.TopDownMutatorContext, module *Module) {
Bzl_load_location: "//build/bazel/rules/cc:cc_library_headers.bzl",
}
- tags := android.ApexAvailableTags(module)
+ tags := android.ApexAvailableTagsWithoutTestApexes(ctx, module)
ctx.CreateBazelTargetModule(props, android.CommonAttributes{
Name: module.Name(),