ceaa5328f0
This relands Ie0a945d879de4f99ce76d005aea8041719c244f7 with a fix to prevent building XMl files for multiple variants of a library. The SOONG_CC_API_XML values are needed for modules that are not exported to Make, export them from a singleton that covers all modules instead of an AndroidMkProvider that may not be called for some modules. Bug: 193819970 Test: forrest Change-Id: I54710c00901976a736e88126f406e02b1f3c3586
81 lines
2.3 KiB
Go
81 lines
2.3 KiB
Go
// Copyright 2020 Google Inc. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package cc
|
|
|
|
import (
|
|
"sort"
|
|
"strings"
|
|
|
|
"android/soong/android"
|
|
)
|
|
|
|
func init() {
|
|
// Use singleton type to gather all generated soong modules.
|
|
android.RegisterSingletonType("stublibraries", stubLibrariesSingleton)
|
|
}
|
|
|
|
type stubLibraries struct {
|
|
stubLibraryMap map[string]bool
|
|
|
|
apiListCoverageXmlPaths []string
|
|
}
|
|
|
|
// Check if the module defines stub, or itself is stub
|
|
func IsStubTarget(m *Module) bool {
|
|
return m.IsStubs() || m.HasStubsVariants()
|
|
}
|
|
|
|
// Get target file name to be installed from this module
|
|
func getInstalledFileName(m *Module) string {
|
|
for _, ps := range m.PackagingSpecs() {
|
|
if name := ps.FileName(); name != "" {
|
|
return name
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (s *stubLibraries) GenerateBuildActions(ctx android.SingletonContext) {
|
|
// Visit all generated soong modules and store stub library file names.
|
|
ctx.VisitAllModules(func(module android.Module) {
|
|
if m, ok := module.(*Module); ok {
|
|
if IsStubTarget(m) {
|
|
if name := getInstalledFileName(m); name != "" {
|
|
s.stubLibraryMap[name] = true
|
|
}
|
|
}
|
|
if m.library != nil {
|
|
if p := m.library.getAPIListCoverageXMLPath().String(); p != "" {
|
|
s.apiListCoverageXmlPaths = append(s.apiListCoverageXmlPaths, p)
|
|
}
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
func stubLibrariesSingleton() android.Singleton {
|
|
return &stubLibraries{
|
|
stubLibraryMap: make(map[string]bool),
|
|
}
|
|
}
|
|
|
|
func (s *stubLibraries) MakeVars(ctx android.MakeVarsContext) {
|
|
// Convert stub library file names into Makefile variable.
|
|
ctx.Strict("STUB_LIBRARIES", strings.Join(android.SortedStringKeys(s.stubLibraryMap), " "))
|
|
|
|
// Export the list of API XML files to Make.
|
|
sort.Strings(s.apiListCoverageXmlPaths)
|
|
ctx.Strict("SOONG_CC_API_XML", strings.Join(s.apiListCoverageXmlPaths, " "))
|
|
}
|