Remove the NO_EXPORTING handling of libprofile-clang-extras.

This is no longer necessary after we reduce the exported static libs in
roboleaf.

Bug: None
Test: b build adbd with coverage enabled.
Change-Id: Ia049138c4cdd536670371b4fc9a54fca40d16d20
This commit is contained in:
Yu Liu
2023-03-06 11:09:47 -08:00
parent 6bc5e2cefa
commit 9cc34a7142

View File

@@ -2951,12 +2951,6 @@ func sharedOrStaticLibraryBp2Build(ctx android.TopDownMutatorContext, module *Mo
tags := android.ApexAvailableTags(module)
// This lib needs some special handling in bazel, so add this tag to the build
// file.
if module.Name() == "libprofile-clang-extras" {
tags.Append(bazel.MakeStringListAttribute([]string{"NO_EXPORTING"}))
}
ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: module.Name(), Tags: tags}, attrs)
}