2022-04-27 03:30:34 +02:00
|
|
|
// Copyright 2021 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 (
|
2022-11-28 08:47:10 +01:00
|
|
|
"regexp"
|
2022-10-25 15:59:41 +02:00
|
|
|
"strings"
|
|
|
|
|
2022-04-27 03:30:34 +02:00
|
|
|
"android/soong/android"
|
|
|
|
"android/soong/multitree"
|
|
|
|
)
|
|
|
|
|
2022-11-28 08:47:10 +01:00
|
|
|
var (
|
2023-02-06 14:08:13 +01:00
|
|
|
ndkVariantRegex = regexp.MustCompile("ndk\\.([a-zA-Z0-9]+)")
|
|
|
|
stubVariantRegex = regexp.MustCompile("apex\\.([a-zA-Z0-9]+)")
|
2022-11-28 08:47:10 +01:00
|
|
|
)
|
|
|
|
|
2022-04-27 03:30:34 +02:00
|
|
|
func init() {
|
|
|
|
RegisterLibraryStubBuildComponents(android.InitRegistrationContext)
|
|
|
|
}
|
|
|
|
|
|
|
|
func RegisterLibraryStubBuildComponents(ctx android.RegistrationContext) {
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
ctx.RegisterModuleType("cc_api_library", CcApiLibraryFactory)
|
2022-08-24 07:10:46 +02:00
|
|
|
ctx.RegisterModuleType("cc_api_headers", CcApiHeadersFactory)
|
2022-10-25 15:59:41 +02:00
|
|
|
ctx.RegisterModuleType("cc_api_variant", CcApiVariantFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
func updateImportedLibraryDependency(ctx android.BottomUpMutatorContext) {
|
|
|
|
m, ok := ctx.Module().(*Module)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiLibrary, ok := m.linker.(*apiLibraryDecorator)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-08 04:55:45 +01:00
|
|
|
if m.InVendorOrProduct() && apiLibrary.hasLLNDKStubs() {
|
2022-11-28 08:47:10 +01:00
|
|
|
// Add LLNDK variant dependency
|
|
|
|
if inList("llndk", apiLibrary.properties.Variants) {
|
|
|
|
variantName := BuildApiVariantName(m.BaseModuleName(), "llndk", "")
|
|
|
|
ctx.AddDependency(m, nil, variantName)
|
|
|
|
}
|
|
|
|
} else if m.IsSdkVariant() {
|
|
|
|
// Add NDK variant dependencies
|
|
|
|
targetVariant := "ndk." + m.StubsVersion()
|
|
|
|
if inList(targetVariant, apiLibrary.properties.Variants) {
|
|
|
|
variantName := BuildApiVariantName(m.BaseModuleName(), targetVariant, "")
|
|
|
|
ctx.AddDependency(m, nil, variantName)
|
2022-10-25 15:59:41 +02:00
|
|
|
}
|
2023-02-06 14:08:13 +01:00
|
|
|
} else if m.IsStubs() {
|
|
|
|
targetVariant := "apex." + m.StubsVersion()
|
|
|
|
if inList(targetVariant, apiLibrary.properties.Variants) {
|
|
|
|
variantName := BuildApiVariantName(m.BaseModuleName(), targetVariant, "")
|
|
|
|
ctx.AddDependency(m, nil, variantName)
|
|
|
|
}
|
2022-10-25 15:59:41 +02:00
|
|
|
}
|
2022-04-27 03:30:34 +02:00
|
|
|
}
|
|
|
|
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
// 'cc_api_library' is a module type which is from the exported API surface
|
|
|
|
// with C shared library type. The module will replace original module, and
|
|
|
|
// offer a link to the module that generates shared library object from the
|
|
|
|
// map file.
|
|
|
|
type apiLibraryProperties struct {
|
2022-10-25 15:59:41 +02:00
|
|
|
Src *string `android:"arch_variant"`
|
|
|
|
Variants []string
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type apiLibraryDecorator struct {
|
|
|
|
*libraryDecorator
|
|
|
|
properties apiLibraryProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func CcApiLibraryFactory() android.Module {
|
|
|
|
module, decorator := NewLibrary(android.DeviceSupported)
|
|
|
|
apiLibraryDecorator := &apiLibraryDecorator{
|
|
|
|
libraryDecorator: decorator,
|
|
|
|
}
|
|
|
|
apiLibraryDecorator.BuildOnlyShared()
|
|
|
|
|
|
|
|
module.stl = nil
|
|
|
|
module.sanitize = nil
|
|
|
|
decorator.disableStripping()
|
|
|
|
|
|
|
|
module.compiler = nil
|
|
|
|
module.linker = apiLibraryDecorator
|
|
|
|
module.installer = nil
|
2022-10-25 15:59:41 +02:00
|
|
|
module.library = apiLibraryDecorator
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
module.AddProperties(&module.Properties, &apiLibraryDecorator.properties)
|
|
|
|
|
|
|
|
// Prevent default system libs (libc, libm, and libdl) from being linked
|
|
|
|
if apiLibraryDecorator.baseLinker.Properties.System_shared_libs == nil {
|
|
|
|
apiLibraryDecorator.baseLinker.Properties.System_shared_libs = []string{}
|
|
|
|
}
|
|
|
|
|
2022-08-17 09:40:16 +02:00
|
|
|
apiLibraryDecorator.baseLinker.Properties.No_libcrt = BoolPtr(true)
|
|
|
|
apiLibraryDecorator.baseLinker.Properties.Nocrt = BoolPtr(true)
|
|
|
|
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
module.Init()
|
|
|
|
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiLibraryDecorator) Name(basename string) string {
|
|
|
|
return basename + multitree.GetApiImportSuffix()
|
|
|
|
}
|
|
|
|
|
2022-10-18 20:23:28 +02:00
|
|
|
// Export include dirs without checking for existence.
|
|
|
|
// The directories are not guaranteed to exist during Soong analysis.
|
|
|
|
func (d *apiLibraryDecorator) exportIncludes(ctx ModuleContext) {
|
|
|
|
exporterProps := d.flagExporter.Properties
|
|
|
|
for _, dir := range exporterProps.Export_include_dirs {
|
2022-10-21 23:52:13 +02:00
|
|
|
d.dirs = append(d.dirs, android.MaybeExistentPathForSource(ctx, ctx.ModuleDir(), dir))
|
2022-10-18 20:23:28 +02:00
|
|
|
}
|
|
|
|
// system headers
|
|
|
|
for _, dir := range exporterProps.Export_system_include_dirs {
|
2022-10-21 23:52:13 +02:00
|
|
|
d.systemDirs = append(d.systemDirs, android.MaybeExistentPathForSource(ctx, ctx.ModuleDir(), dir))
|
2022-10-18 20:23:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-28 08:47:10 +01:00
|
|
|
func (d *apiLibraryDecorator) linkerInit(ctx BaseModuleContext) {
|
|
|
|
d.baseLinker.linkerInit(ctx)
|
|
|
|
|
|
|
|
if d.hasNDKStubs() {
|
|
|
|
// Set SDK version of module as current
|
|
|
|
ctx.Module().(*Module).Properties.Sdk_version = StringPtr("current")
|
|
|
|
|
|
|
|
// Add NDK stub as NDK known libs
|
|
|
|
name := ctx.ModuleName()
|
|
|
|
|
|
|
|
ndkKnownLibsLock.Lock()
|
|
|
|
ndkKnownLibs := getNDKKnownLibs(ctx.Config())
|
|
|
|
if !inList(name, *ndkKnownLibs) {
|
|
|
|
*ndkKnownLibs = append(*ndkKnownLibs, name)
|
|
|
|
}
|
|
|
|
ndkKnownLibsLock.Unlock()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
func (d *apiLibraryDecorator) link(ctx ModuleContext, flags Flags, deps PathDeps, objects Objects) android.Path {
|
2022-10-25 15:59:41 +02:00
|
|
|
m, _ := ctx.Module().(*Module)
|
|
|
|
|
|
|
|
var in android.Path
|
|
|
|
|
2022-12-03 00:26:38 +01:00
|
|
|
// src might not exist during the beginning of soong analysis in Multi-tree
|
2022-11-28 08:47:10 +01:00
|
|
|
if src := String(d.properties.Src); src != "" {
|
2022-12-03 00:26:38 +01:00
|
|
|
in = android.MaybeExistentPathForSource(ctx, ctx.ModuleDir(), src)
|
2022-10-25 15:59:41 +02:00
|
|
|
}
|
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
libName := m.BaseModuleName() + multitree.GetApiImportSuffix()
|
2022-10-25 15:59:41 +02:00
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
load_cc_variant := func(apiVariantModule string) {
|
2022-10-25 15:59:41 +02:00
|
|
|
var mod android.Module
|
|
|
|
|
|
|
|
ctx.VisitDirectDeps(func(depMod android.Module) {
|
|
|
|
if depMod.Name() == apiVariantModule {
|
|
|
|
mod = depMod
|
2023-02-06 14:08:13 +01:00
|
|
|
libName = apiVariantModule
|
2022-10-25 15:59:41 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
if mod != nil {
|
|
|
|
variantMod, ok := mod.(*CcApiVariant)
|
|
|
|
if ok {
|
|
|
|
in = variantMod.Src()
|
|
|
|
|
|
|
|
// Copy LLDNK properties to cc_api_library module
|
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_include_dirs = append(
|
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_include_dirs,
|
2022-12-02 02:20:55 +01:00
|
|
|
variantMod.exportProperties.Export_include_dirs...)
|
2022-10-25 15:59:41 +02:00
|
|
|
|
|
|
|
// Export headers as system include dirs if specified. Mostly for libc
|
2022-11-28 08:47:10 +01:00
|
|
|
if Bool(variantMod.exportProperties.Export_headers_as_system) {
|
2022-10-25 15:59:41 +02:00
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_system_include_dirs = append(
|
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_system_include_dirs,
|
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_include_dirs...)
|
|
|
|
d.libraryDecorator.flagExporter.Properties.Export_include_dirs = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-06 14:08:13 +01:00
|
|
|
}
|
|
|
|
|
2024-01-08 04:55:45 +01:00
|
|
|
if m.InVendorOrProduct() && d.hasLLNDKStubs() {
|
2023-02-06 14:08:13 +01:00
|
|
|
// LLNDK variant
|
|
|
|
load_cc_variant(BuildApiVariantName(m.BaseModuleName(), "llndk", ""))
|
2022-11-28 08:47:10 +01:00
|
|
|
} else if m.IsSdkVariant() {
|
|
|
|
// NDK Variant
|
2023-02-06 14:08:13 +01:00
|
|
|
load_cc_variant(BuildApiVariantName(m.BaseModuleName(), "ndk", m.StubsVersion()))
|
|
|
|
} else if m.IsStubs() {
|
|
|
|
// APEX Variant
|
|
|
|
load_cc_variant(BuildApiVariantName(m.BaseModuleName(), "apex", m.StubsVersion()))
|
2022-08-24 07:10:46 +02:00
|
|
|
}
|
|
|
|
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
// Flags reexported from dependencies. (e.g. vndk_prebuilt_shared)
|
2022-10-18 20:23:28 +02:00
|
|
|
d.exportIncludes(ctx)
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
d.libraryDecorator.reexportDirs(deps.ReexportedDirs...)
|
|
|
|
d.libraryDecorator.reexportSystemDirs(deps.ReexportedSystemDirs...)
|
|
|
|
d.libraryDecorator.reexportFlags(deps.ReexportedFlags...)
|
|
|
|
d.libraryDecorator.reexportDeps(deps.ReexportedDeps...)
|
|
|
|
d.libraryDecorator.addExportedGeneratedHeaders(deps.ReexportedGeneratedHeaders...)
|
|
|
|
|
2022-10-25 15:59:41 +02:00
|
|
|
if in == nil {
|
|
|
|
ctx.PropertyErrorf("src", "Unable to locate source property")
|
|
|
|
return nil
|
2022-10-18 20:23:28 +02:00
|
|
|
}
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
|
2022-10-26 22:54:32 +02:00
|
|
|
// Make the _compilation_ of rdeps have an order-only dep on cc_api_library.src (an .so file)
|
|
|
|
// The .so file itself has an order-only dependency on the headers contributed by this library.
|
|
|
|
// Creating this dependency ensures that the headers are assembled before compilation of rdeps begins.
|
|
|
|
d.libraryDecorator.reexportDeps(in)
|
|
|
|
d.libraryDecorator.flagExporter.setProvider(ctx)
|
|
|
|
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
d.unstrippedOutputFile = in
|
2023-02-06 14:08:13 +01:00
|
|
|
libName += flags.Toolchain.ShlibSuffix()
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
|
|
|
|
tocFile := android.PathForModuleOut(ctx, libName+".toc")
|
|
|
|
d.tocFile = android.OptionalPathForPath(tocFile)
|
|
|
|
TransformSharedObjectToToc(ctx, in, tocFile)
|
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
outputFile := android.PathForModuleOut(ctx, libName)
|
|
|
|
|
|
|
|
// TODO(b/270485584) This copies with a new name, just to avoid conflict with prebuilts.
|
|
|
|
// We can just use original input if there is any way to avoid name conflict without copy.
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
|
|
|
Description: "API surface imported library",
|
|
|
|
Input: in,
|
|
|
|
Output: outputFile,
|
|
|
|
Args: map[string]string{
|
|
|
|
"cpFlags": "-L",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2023-12-14 00:19:49 +01:00
|
|
|
android.SetProvider(ctx, SharedLibraryInfoProvider, SharedLibraryInfo{
|
2023-02-06 14:08:13 +01:00
|
|
|
SharedLibrary: outputFile,
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
Target: ctx.Target(),
|
|
|
|
|
|
|
|
TableOfContents: d.tocFile,
|
|
|
|
})
|
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
d.shareStubs(ctx)
|
|
|
|
|
|
|
|
return outputFile
|
|
|
|
}
|
|
|
|
|
|
|
|
// Share additional information about stub libraries with provider
|
|
|
|
func (d *apiLibraryDecorator) shareStubs(ctx ModuleContext) {
|
|
|
|
stubs := ctx.GetDirectDepsWithTag(stubImplDepTag)
|
|
|
|
if len(stubs) > 0 {
|
|
|
|
var stubsInfo []SharedStubLibrary
|
|
|
|
for _, stub := range stubs {
|
2023-12-13 22:47:44 +01:00
|
|
|
stubInfo, _ := android.OtherModuleProvider(ctx, stub, SharedLibraryInfoProvider)
|
|
|
|
flagInfo, _ := android.OtherModuleProvider(ctx, stub, FlagExporterInfoProvider)
|
2023-02-06 14:08:13 +01:00
|
|
|
stubsInfo = append(stubsInfo, SharedStubLibrary{
|
|
|
|
Version: moduleLibraryInterface(stub).stubsVersion(),
|
|
|
|
SharedLibraryInfo: stubInfo,
|
|
|
|
FlagExporterInfo: flagInfo,
|
|
|
|
})
|
|
|
|
}
|
2023-12-14 00:19:49 +01:00
|
|
|
android.SetProvider(ctx, SharedLibraryStubsProvider, SharedLibraryStubsInfo{
|
2023-02-06 14:08:13 +01:00
|
|
|
SharedStubLibraries: stubsInfo,
|
|
|
|
|
|
|
|
IsLLNDK: ctx.IsLlndk(),
|
|
|
|
})
|
|
|
|
}
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiLibraryDecorator) availableFor(what string) bool {
|
|
|
|
// Stub from API surface should be available for any APEX.
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
func (d *apiLibraryDecorator) hasApexStubs() bool {
|
|
|
|
for _, variant := range d.properties.Variants {
|
|
|
|
if strings.HasPrefix(variant, "apex") {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiLibraryDecorator) hasStubsVariants() bool {
|
|
|
|
return d.hasApexStubs()
|
|
|
|
}
|
|
|
|
|
2022-10-25 15:59:41 +02:00
|
|
|
func (d *apiLibraryDecorator) stubsVersions(ctx android.BaseMutatorContext) []string {
|
|
|
|
m, ok := ctx.Module().(*Module)
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(b/244244438) Create more version information for NDK and APEX variations
|
|
|
|
// NDK variants
|
2022-11-28 08:47:10 +01:00
|
|
|
if m.IsSdkVariant() {
|
|
|
|
// TODO(b/249193999) Do not check if module has NDK stubs once all NDK cc_api_library contains ndk variant of cc_api_variant.
|
|
|
|
if d.hasNDKStubs() {
|
|
|
|
return d.getNdkVersions()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-08 04:55:45 +01:00
|
|
|
if d.hasLLNDKStubs() && m.InVendorOrProduct() {
|
2023-02-06 14:08:13 +01:00
|
|
|
// LLNDK libraries only need a single stubs variant.
|
|
|
|
return []string{android.FutureApiLevel.String()}
|
|
|
|
}
|
|
|
|
|
|
|
|
stubsVersions := d.getStubVersions()
|
|
|
|
|
|
|
|
if len(stubsVersions) != 0 {
|
|
|
|
return stubsVersions
|
|
|
|
}
|
|
|
|
|
2022-10-25 15:59:41 +02:00
|
|
|
if m.MinSdkVersion() == "" {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
firstVersion, err := nativeApiLevelFromUser(ctx,
|
|
|
|
m.MinSdkVersion())
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return ndkLibraryVersions(ctx, firstVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiLibraryDecorator) hasLLNDKStubs() bool {
|
2022-11-28 08:47:10 +01:00
|
|
|
return inList("llndk", d.properties.Variants)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiLibraryDecorator) hasNDKStubs() bool {
|
2022-10-25 15:59:41 +02:00
|
|
|
for _, variant := range d.properties.Variants {
|
2022-11-28 08:47:10 +01:00
|
|
|
if ndkVariantRegex.MatchString(variant) {
|
2022-10-25 15:59:41 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-11-28 08:47:10 +01:00
|
|
|
func (d *apiLibraryDecorator) getNdkVersions() []string {
|
|
|
|
ndkVersions := []string{}
|
|
|
|
|
|
|
|
for _, variant := range d.properties.Variants {
|
|
|
|
if match := ndkVariantRegex.FindStringSubmatch(variant); len(match) == 2 {
|
|
|
|
ndkVersions = append(ndkVersions, match[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ndkVersions
|
|
|
|
}
|
|
|
|
|
2023-02-06 14:08:13 +01:00
|
|
|
func (d *apiLibraryDecorator) getStubVersions() []string {
|
|
|
|
stubVersions := []string{}
|
|
|
|
|
|
|
|
for _, variant := range d.properties.Variants {
|
|
|
|
if match := stubVariantRegex.FindStringSubmatch(variant); len(match) == 2 {
|
|
|
|
stubVersions = append(stubVersions, match[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return stubVersions
|
|
|
|
}
|
|
|
|
|
2022-08-24 07:10:46 +02:00
|
|
|
// 'cc_api_headers' is similar with 'cc_api_library', but which replaces
|
|
|
|
// header libraries. The module will replace any dependencies to existing
|
|
|
|
// original header libraries.
|
|
|
|
type apiHeadersDecorator struct {
|
|
|
|
*libraryDecorator
|
|
|
|
}
|
|
|
|
|
|
|
|
func CcApiHeadersFactory() android.Module {
|
|
|
|
module, decorator := NewLibrary(android.DeviceSupported)
|
|
|
|
apiHeadersDecorator := &apiHeadersDecorator{
|
|
|
|
libraryDecorator: decorator,
|
|
|
|
}
|
|
|
|
apiHeadersDecorator.HeaderOnly()
|
|
|
|
|
|
|
|
module.stl = nil
|
|
|
|
module.sanitize = nil
|
|
|
|
decorator.disableStripping()
|
|
|
|
|
|
|
|
module.compiler = nil
|
|
|
|
module.linker = apiHeadersDecorator
|
|
|
|
module.installer = nil
|
|
|
|
|
|
|
|
// Prevent default system libs (libc, libm, and libdl) from being linked
|
|
|
|
if apiHeadersDecorator.baseLinker.Properties.System_shared_libs == nil {
|
|
|
|
apiHeadersDecorator.baseLinker.Properties.System_shared_libs = []string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
apiHeadersDecorator.baseLinker.Properties.No_libcrt = BoolPtr(true)
|
|
|
|
apiHeadersDecorator.baseLinker.Properties.Nocrt = BoolPtr(true)
|
|
|
|
|
|
|
|
module.Init()
|
|
|
|
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiHeadersDecorator) Name(basename string) string {
|
|
|
|
return basename + multitree.GetApiImportSuffix()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *apiHeadersDecorator) availableFor(what string) bool {
|
|
|
|
// Stub from API surface should be available for any APEX.
|
|
|
|
return true
|
Introduce cc_api_library
Introduce cc_api_library, which reflects imported API from other
inner-tree. This cc_api_library module type will later refer from
the other ninja module which generates stub library from the interface
description.
Tested environment :
* original libc definition has been removed temporarily, to ensure that
imported api stub library is being used from build
* Added new definition of libc as below
cc_api_library {
name: "libc",
arch: {
x86: {
src: "libs/x86/libc.so",
},
x86_64: {
src: "libs/x86_64/libc.so",
},
},
header_libs: [
"libc_headers",
],
export_header_lib_headers: ["libc_headers"],
min_sdk_version: "9",
vendor_available: true,
}
Bug: 236087698
Test: `ALLOW_MISSING_DEPENDENCIES=true m vendorimage` succeeded
Change-Id: I67070b0f3561aa2afd73b6c1c0fdf4255218baac
2022-07-26 02:48:22 +02:00
|
|
|
}
|
2022-10-25 15:59:41 +02:00
|
|
|
|
|
|
|
type ccApiexportProperties struct {
|
|
|
|
Src *string `android:"arch_variant"`
|
|
|
|
Variant *string
|
|
|
|
Version *string
|
|
|
|
}
|
|
|
|
|
|
|
|
type variantExporterProperties struct {
|
2022-11-11 04:35:01 +01:00
|
|
|
// Header directory to export
|
2022-12-02 02:20:55 +01:00
|
|
|
Export_include_dirs []string `android:"arch_variant"`
|
2022-10-25 15:59:41 +02:00
|
|
|
|
|
|
|
// Export all headers as system include
|
|
|
|
Export_headers_as_system *bool
|
|
|
|
}
|
|
|
|
|
|
|
|
type CcApiVariant struct {
|
|
|
|
android.ModuleBase
|
|
|
|
|
|
|
|
properties ccApiexportProperties
|
|
|
|
exportProperties variantExporterProperties
|
|
|
|
|
|
|
|
src android.Path
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ android.Module = (*CcApiVariant)(nil)
|
|
|
|
var _ android.ImageInterface = (*CcApiVariant)(nil)
|
|
|
|
|
|
|
|
func CcApiVariantFactory() android.Module {
|
|
|
|
module := &CcApiVariant{}
|
|
|
|
|
|
|
|
module.AddProperties(&module.properties)
|
|
|
|
module.AddProperties(&module.exportProperties)
|
|
|
|
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibBoth)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *CcApiVariant) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
// No need to build
|
|
|
|
|
2022-11-28 08:47:10 +01:00
|
|
|
if String(v.properties.Src) == "" {
|
2022-10-25 15:59:41 +02:00
|
|
|
ctx.PropertyErrorf("src", "src is a required property")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip the existence check of the stub prebuilt file.
|
|
|
|
// The file is not guaranteed to exist during Soong analysis.
|
|
|
|
// Build orchestrator will be responsible for creating a connected ninja graph.
|
2022-11-28 08:47:10 +01:00
|
|
|
v.src = android.MaybeExistentPathForSource(ctx, ctx.ModuleDir(), String(v.properties.Src))
|
2022-10-25 15:59:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v *CcApiVariant) Name() string {
|
2022-11-28 08:47:10 +01:00
|
|
|
version := String(v.properties.Version)
|
2022-10-25 15:59:41 +02:00
|
|
|
return BuildApiVariantName(v.BaseModuleName(), *v.properties.Variant, version)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *CcApiVariant) Src() android.Path {
|
|
|
|
return v.src
|
|
|
|
}
|
|
|
|
|
|
|
|
func BuildApiVariantName(baseName string, variant string, version string) string {
|
|
|
|
names := []string{baseName, variant}
|
|
|
|
if version != "" {
|
|
|
|
names = append(names, version)
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(names[:], ".") + multitree.GetApiImportSuffix()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implement ImageInterface to generate image variants
|
2022-11-28 08:47:10 +01:00
|
|
|
func (v *CcApiVariant) ImageMutatorBegin(ctx android.BaseModuleContext) {}
|
|
|
|
func (v *CcApiVariant) CoreVariantNeeded(ctx android.BaseModuleContext) bool {
|
2023-02-06 14:08:13 +01:00
|
|
|
return inList(String(v.properties.Variant), []string{"ndk", "apex"})
|
2022-11-28 08:47:10 +01:00
|
|
|
}
|
2022-10-25 15:59:41 +02:00
|
|
|
func (v *CcApiVariant) RamdiskVariantNeeded(ctx android.BaseModuleContext) bool { return false }
|
|
|
|
func (v *CcApiVariant) VendorRamdiskVariantNeeded(ctx android.BaseModuleContext) bool { return false }
|
|
|
|
func (v *CcApiVariant) DebugRamdiskVariantNeeded(ctx android.BaseModuleContext) bool { return false }
|
|
|
|
func (v *CcApiVariant) RecoveryVariantNeeded(ctx android.BaseModuleContext) bool { return false }
|
|
|
|
func (v *CcApiVariant) ExtraImageVariations(ctx android.BaseModuleContext) []string {
|
|
|
|
var variations []string
|
|
|
|
platformVndkVersion := ctx.DeviceConfig().PlatformVndkVersion()
|
|
|
|
|
2022-11-28 08:47:10 +01:00
|
|
|
if String(v.properties.Variant) == "llndk" {
|
2022-10-25 15:59:41 +02:00
|
|
|
variations = append(variations, VendorVariationPrefix+platformVndkVersion)
|
|
|
|
variations = append(variations, ProductVariationPrefix+platformVndkVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
return variations
|
|
|
|
}
|
|
|
|
func (v *CcApiVariant) SetImageVariation(ctx android.BaseModuleContext, variation string, module android.Module) {
|
|
|
|
}
|