3572cf74f9
Implement stubsVersions on *llndkStubDecorator and *stubDecorator to handle the special cases in versionSelectorMutator. Test: m checkbuild Change-Id: Idc985c52f91450df42c0275b2b2acef3f2ed8868
126 lines
2.9 KiB
Go
126 lines
2.9 KiB
Go
package cc
|
|
|
|
import (
|
|
"android/soong/android"
|
|
|
|
"github.com/google/blueprint"
|
|
)
|
|
|
|
type LinkableInterface interface {
|
|
Module() android.Module
|
|
CcLibrary() bool
|
|
CcLibraryInterface() bool
|
|
|
|
OutputFile() android.OptionalPath
|
|
CoverageFiles() android.Paths
|
|
|
|
NonCcVariants() bool
|
|
|
|
StubsVersions(android.BaseMutatorContext) []string
|
|
BuildStubs() bool
|
|
SetBuildStubs()
|
|
SetStubsVersion(string)
|
|
StubsVersion() string
|
|
SetAllStubsVersions([]string)
|
|
AllStubsVersions() []string
|
|
HasStubsVariants() bool
|
|
SelectedStl() string
|
|
ApiLevel() string
|
|
|
|
BuildStaticVariant() bool
|
|
BuildSharedVariant() bool
|
|
SetStatic()
|
|
SetShared()
|
|
Static() bool
|
|
Shared() bool
|
|
Toc() android.OptionalPath
|
|
|
|
Host() bool
|
|
|
|
InRamdisk() bool
|
|
OnlyInRamdisk() bool
|
|
|
|
InRecovery() bool
|
|
OnlyInRecovery() bool
|
|
|
|
UseSdk() bool
|
|
UseVndk() bool
|
|
MustUseVendorVariant() bool
|
|
IsVndk() bool
|
|
HasVendorVariant() bool
|
|
|
|
SdkVersion() string
|
|
AlwaysSdk() bool
|
|
IsSdkVariant() bool
|
|
|
|
ToolchainLibrary() bool
|
|
NdkPrebuiltStl() bool
|
|
StubDecorator() bool
|
|
|
|
SplitPerApiLevel() bool
|
|
}
|
|
|
|
var (
|
|
CrtBeginDepTag = dependencyTag{name: "crtbegin"}
|
|
CrtEndDepTag = dependencyTag{name: "crtend"}
|
|
CoverageDepTag = dependencyTag{name: "coverage"}
|
|
)
|
|
|
|
func SharedDepTag() blueprint.DependencyTag {
|
|
return libraryDependencyTag{Kind: sharedLibraryDependency}
|
|
}
|
|
|
|
func StaticDepTag() blueprint.DependencyTag {
|
|
return libraryDependencyTag{Kind: staticLibraryDependency}
|
|
}
|
|
|
|
type SharedLibraryInfo struct {
|
|
SharedLibrary android.Path
|
|
UnstrippedSharedLibrary android.Path
|
|
|
|
TableOfContents android.OptionalPath
|
|
CoverageSharedLibrary android.OptionalPath
|
|
|
|
StaticAnalogue *StaticLibraryInfo
|
|
}
|
|
|
|
var SharedLibraryInfoProvider = blueprint.NewProvider(SharedLibraryInfo{})
|
|
|
|
type SharedLibraryImplementationStubsInfo struct {
|
|
SharedLibraryStubsInfos []SharedLibraryStubsInfo
|
|
|
|
IsLLNDK bool
|
|
}
|
|
|
|
var SharedLibraryImplementationStubsInfoProvider = blueprint.NewProvider(SharedLibraryImplementationStubsInfo{})
|
|
|
|
type SharedLibraryStubsInfo struct {
|
|
Version string
|
|
SharedLibraryInfo SharedLibraryInfo
|
|
FlagExporterInfo FlagExporterInfo
|
|
}
|
|
|
|
var SharedLibraryStubsInfoProvider = blueprint.NewProvider(SharedLibraryStubsInfo{})
|
|
|
|
type StaticLibraryInfo struct {
|
|
StaticLibrary android.Path
|
|
Objects Objects
|
|
ReuseObjects Objects
|
|
|
|
// This isn't the actual transitive DepSet, shared library dependencies have been
|
|
// converted into static library analogues. It is only used to order the static
|
|
// library dependencies that were specified for the current module.
|
|
TransitiveStaticLibrariesForOrdering *android.DepSet
|
|
}
|
|
|
|
var StaticLibraryInfoProvider = blueprint.NewProvider(StaticLibraryInfo{})
|
|
|
|
type FlagExporterInfo struct {
|
|
IncludeDirs android.Paths
|
|
SystemIncludeDirs android.Paths
|
|
Flags []string
|
|
Deps android.Paths
|
|
GeneratedHeaders android.Paths
|
|
}
|
|
|
|
var FlagExporterInfoProvider = blueprint.NewProvider(FlagExporterInfo{})
|