2015-07-09 03:13:11 +02:00
|
|
|
// Copyright 2015 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 (
|
2016-02-10 02:43:51 +01:00
|
|
|
"fmt"
|
2015-07-09 03:13:11 +02:00
|
|
|
"io"
|
2016-03-24 21:14:12 +01:00
|
|
|
"path/filepath"
|
2015-07-09 03:13:11 +02:00
|
|
|
"strings"
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2022-08-17 09:40:16 +02:00
|
|
|
"android/soong/multitree"
|
2015-07-09 03:13:11 +02:00
|
|
|
)
|
|
|
|
|
2017-07-18 06:23:39 +02:00
|
|
|
var (
|
2021-05-27 20:09:11 +02:00
|
|
|
NativeBridgeSuffix = ".native_bridge"
|
2021-05-27 19:01:36 +02:00
|
|
|
ProductSuffix = ".product"
|
2021-02-05 16:57:43 +01:00
|
|
|
VendorSuffix = ".vendor"
|
2021-07-13 23:12:37 +02:00
|
|
|
RamdiskSuffix = ".ramdisk"
|
2021-02-05 16:57:43 +01:00
|
|
|
VendorRamdiskSuffix = ".vendor_ramdisk"
|
2021-02-11 21:31:46 +01:00
|
|
|
RecoverySuffix = ".recovery"
|
2020-10-22 00:17:56 +02:00
|
|
|
sdkSuffix = ".sdk"
|
2017-07-18 06:23:39 +02:00
|
|
|
)
|
|
|
|
|
2016-07-14 01:50:22 +02:00
|
|
|
type AndroidMkContext interface {
|
2020-10-14 03:43:54 +02:00
|
|
|
BaseModuleName() string
|
2016-07-14 01:50:22 +02:00
|
|
|
Target() android.Target
|
2020-02-24 21:01:37 +01:00
|
|
|
subAndroidMk(*android.AndroidMkEntries, interface{})
|
2019-01-15 20:53:23 +01:00
|
|
|
Arch() android.Arch
|
|
|
|
Os() android.OsType
|
|
|
|
Host() bool
|
2019-10-18 23:49:46 +02:00
|
|
|
UseVndk() bool
|
2019-11-18 11:52:14 +01:00
|
|
|
VndkVersion() string
|
2018-12-20 14:10:17 +01:00
|
|
|
static() bool
|
2020-01-22 00:53:22 +01:00
|
|
|
InRamdisk() bool
|
2020-10-22 00:17:56 +02:00
|
|
|
InVendorRamdisk() bool
|
2019-10-18 23:49:46 +02:00
|
|
|
InRecovery() bool
|
2020-12-09 13:18:56 +01:00
|
|
|
NotInPlatform() bool
|
2024-01-08 04:55:45 +01:00
|
|
|
InVendorOrProduct() bool
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type subAndroidMkProvider interface {
|
2020-02-24 21:01:37 +01:00
|
|
|
AndroidMkEntries(AndroidMkContext, *android.AndroidMkEntries)
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (c *Module) subAndroidMk(entries *android.AndroidMkEntries, obj interface{}) {
|
2016-07-30 02:28:03 +02:00
|
|
|
if c.subAndroidMkOnce == nil {
|
|
|
|
c.subAndroidMkOnce = make(map[subAndroidMkProvider]bool)
|
|
|
|
}
|
|
|
|
if androidmk, ok := obj.(subAndroidMkProvider); ok {
|
|
|
|
if !c.subAndroidMkOnce[androidmk] {
|
|
|
|
c.subAndroidMkOnce[androidmk] = true
|
2020-02-24 21:01:37 +01:00
|
|
|
androidmk.AndroidMkEntries(c, entries)
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
|
|
|
}
|
2016-07-14 01:50:22 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (c *Module) AndroidMkEntries() []android.AndroidMkEntries {
|
2020-09-16 03:30:11 +02:00
|
|
|
if c.hideApexVariantFromMake || c.Properties.HideFromMake {
|
2020-02-24 21:01:37 +01:00
|
|
|
return []android.AndroidMkEntries{{
|
2017-08-11 02:00:19 +02:00
|
|
|
Disabled: true,
|
2020-02-24 21:01:37 +01:00
|
|
|
}}
|
2016-05-25 00:39:04 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
entries := android.AndroidMkEntries{
|
2017-08-11 02:00:19 +02:00
|
|
|
OutputFile: c.outputFile,
|
2020-10-12 16:10:36 +02:00
|
|
|
// TODO(jiyong): add the APEXes providing shared libs to the required
|
|
|
|
// modules Currently, adding c.Properties.ApexesProvidingSharedLibs is
|
|
|
|
// causing multiple ART APEXes (com.android.art and com.android.art.debug)
|
|
|
|
// to be installed. And this is breaking some older devices (like marlin)
|
|
|
|
// where system.img is small.
|
2024-01-19 01:22:22 +01:00
|
|
|
Required: c.Properties.AndroidMkRuntimeLibs,
|
|
|
|
OverrideName: c.BaseModuleName(),
|
|
|
|
Include: "$(BUILD_SYSTEM)/soong_cc_rust_prebuilt.mk",
|
2017-12-19 18:17:32 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
ExtraEntries: []android.AndroidMkExtraEntriesFunc{
|
2020-07-03 22:18:24 +02:00
|
|
|
func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2017-12-08 00:28:59 +01:00
|
|
|
if len(c.Properties.Logtags) > 0 {
|
2024-04-29 08:54:44 +02:00
|
|
|
entries.AddStrings("LOCAL_SOONG_LOGTAGS_FILES", c.logtagsPaths.Strings()...)
|
2017-12-08 00:28:59 +01:00
|
|
|
}
|
2020-09-22 12:45:04 +02:00
|
|
|
// Note: Pass the exact value of AndroidMkSystemSharedLibs to the Make
|
|
|
|
// world, even if it is an empty list. In the Make world,
|
|
|
|
// LOCAL_SYSTEM_SHARED_LIBRARIES defaults to "none", which is expanded
|
|
|
|
// to the default list of system shared libs by the build system.
|
|
|
|
// Soong computes the exact list of system shared libs, so we have to
|
|
|
|
// override the default value when the list of libs is actually empty.
|
|
|
|
entries.SetString("LOCAL_SYSTEM_SHARED_LIBRARIES", strings.Join(c.Properties.AndroidMkSystemSharedLibs, " "))
|
2017-08-11 02:00:19 +02:00
|
|
|
if len(c.Properties.AndroidMkSharedLibs) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.AddStrings("LOCAL_SHARED_LIBRARIES", c.Properties.AndroidMkSharedLibs...)
|
2017-08-11 02:00:19 +02:00
|
|
|
}
|
2022-02-08 09:14:25 +01:00
|
|
|
if len(c.Properties.AndroidMkRuntimeLibs) > 0 {
|
|
|
|
entries.AddStrings("LOCAL_RUNTIME_LIBRARIES", c.Properties.AndroidMkRuntimeLibs...)
|
|
|
|
}
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_LINK_TYPE", c.makeLinkType)
|
2024-01-11 08:03:13 +01:00
|
|
|
if c.InVendorOrProduct() {
|
2019-10-18 23:49:46 +02:00
|
|
|
if c.IsVndk() && !c.static() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_VNDK_VERSION", c.VndkVersion())
|
2019-10-28 21:24:42 +01:00
|
|
|
// VNDK libraries available to vendor are not installed because
|
|
|
|
// they are packaged in VNDK APEX and installed by APEX packages (apex/apex.go)
|
2020-12-02 15:00:51 +01:00
|
|
|
if !c.IsVndkExt() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
|
2019-10-28 21:24:42 +01:00
|
|
|
}
|
2019-05-20 11:49:10 +02:00
|
|
|
}
|
2017-08-11 02:00:19 +02:00
|
|
|
}
|
2024-02-05 02:17:48 +01:00
|
|
|
if c.InVendor() {
|
|
|
|
entries.SetBool("LOCAL_IN_VENDOR", true)
|
|
|
|
} else if c.InProduct() {
|
|
|
|
entries.SetBool("LOCAL_IN_PRODUCT", true)
|
|
|
|
}
|
Don't install sdk variants, not platform variants
Background: if a lib has `sdk_version` set, it is mutated into two
variants: platform and sdk. The latter is for the inclusion into
unbundled APKs which can be installed on older platforms. The former is
what is installed to the platform.
So far, for unbundled app builds, (1) the platform variant was marked as
uninstallable, (2) while the sdk variant was left installable. (1) is
causing a problem (b/339262059) when an APEX containing a filesystem
module is built as unbundled. The filesystem skips installing the
platform variant. (2) is not causing a problem, but is unnecessary
because the sdk variant is not something to be installed (on the
platform). It is built into the APK via the jni_libs property. It's not
considered an installation.
This change fixes (1) and (2). For (1), the platform variant is always
marked installable even for unbundled build. For (2), the sdk variant is
always marked non-installable.. because, again, it's not designed to be
installed to the platform.
Bug: 339262059
Test: banchan com.android.virt aosp_arm64
UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true m apps_only dist
check libc++.so, libcrypto.so are in the microdroid image in the APEX.
Change-Id: I8999b724926cd9ab6d56796133e218fefcc1910b
2024-05-08 04:22:38 +02:00
|
|
|
if c.Properties.SdkAndPlatformVariantVisibleToMake {
|
2023-04-25 20:30:51 +02:00
|
|
|
// Add the unsuffixed name to SOONG_SDK_VARIANT_MODULES so that Make can rewrite
|
|
|
|
// dependencies to the .sdk suffix when building a module that uses the SDK.
|
|
|
|
entries.SetString("SOONG_SDK_VARIANT_MODULES",
|
|
|
|
"$(SOONG_SDK_VARIANT_MODULES) $(patsubst %.sdk,%,$(LOCAL_MODULE))")
|
2020-04-07 18:50:32 +02:00
|
|
|
}
|
Don't install sdk variants, not platform variants
Background: if a lib has `sdk_version` set, it is mutated into two
variants: platform and sdk. The latter is for the inclusion into
unbundled APKs which can be installed on older platforms. The former is
what is installed to the platform.
So far, for unbundled app builds, (1) the platform variant was marked as
uninstallable, (2) while the sdk variant was left installable. (1) is
causing a problem (b/339262059) when an APEX containing a filesystem
module is built as unbundled. The filesystem skips installing the
platform variant. (2) is not causing a problem, but is unnecessary
because the sdk variant is not something to be installed (on the
platform). It is built into the APK via the jni_libs property. It's not
considered an installation.
This change fixes (1) and (2). For (1), the platform variant is always
marked installable even for unbundled build. For (2), the sdk variant is
always marked non-installable.. because, again, it's not designed to be
installed to the platform.
Bug: 339262059
Test: banchan com.android.virt aosp_arm64
UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true m apps_only dist
check libc++.so, libcrypto.so are in the microdroid image in the APEX.
Change-Id: I8999b724926cd9ab6d56796133e218fefcc1910b
2024-05-08 04:22:38 +02:00
|
|
|
entries.SetBoolIfTrue("LOCAL_UNINSTALLABLE_MODULE", c.IsSkipInstall())
|
2020-04-07 18:50:32 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
ExtraFooters: []android.AndroidMkExtraFootersFunc{
|
2020-12-07 19:23:54 +01:00
|
|
|
func(w io.Writer, name, prefix, moduleDir string) {
|
2020-04-07 18:50:32 +02:00
|
|
|
if c.Properties.IsSdkVariant && c.Properties.SdkAndPlatformVariantVisibleToMake &&
|
|
|
|
c.CcLibraryInterface() && c.Shared() {
|
|
|
|
// Using the SDK variant as a JNI library needs a copy of the .so that
|
|
|
|
// is not named .sdk.so so that it can be packaged into the APK with
|
|
|
|
// the right name.
|
|
|
|
fmt.Fprintln(w, "$(eval $(call copy-one-file,",
|
|
|
|
"$(LOCAL_BUILT_MODULE),",
|
|
|
|
"$(patsubst %.sdk.so,%.so,$(LOCAL_BUILT_MODULE))))")
|
|
|
|
}
|
2017-08-11 02:00:19 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-01-04 23:34:37 +01:00
|
|
|
|
|
|
|
for _, feature := range c.features {
|
2020-02-24 21:01:37 +01:00
|
|
|
c.subAndroidMk(&entries, feature)
|
2016-01-04 23:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
c.subAndroidMk(&entries, c.compiler)
|
|
|
|
c.subAndroidMk(&entries, c.linker)
|
2017-05-08 22:44:11 +02:00
|
|
|
if c.sanitize != nil {
|
2020-02-24 21:01:37 +01:00
|
|
|
c.subAndroidMk(&entries, c.sanitize)
|
2017-05-08 22:44:11 +02:00
|
|
|
}
|
2020-02-24 21:01:37 +01:00
|
|
|
c.subAndroidMk(&entries, c.installer)
|
2016-01-04 23:34:37 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SubName += c.Properties.SubName
|
Split /system and /vendor modules, allow multi-installation
Nothing changes if BOARD_VNDK_VERSION isn't set.
When the VNDK is enabled (BOARD_VNDK_VERSION in Make), this will split
/system and /vendor modules into two different variant spaces that can't
link to each other. There are a few interfaces between the two variant
spaces:
The `llndk_library` stubs will be available in the /vendor variant, but
won't be installed, so at runtime the /system variant will be used.
Setting `vendor_available: true` will split a module into both variants.
The /system (or "core") variant will compile just like today. The
/vendor ("vendor") variant will compile against everything else in the
vendor space (so LL-NDK instead of libc/liblog/etc). There will be two
copies of these libraries installed onto the final device.
Since the available runtime interfaces for vendor modules may be
reduced, and your dependencies may not expose their private interfaces,
we allow the vendor variants to reduce their compilation set, and export
a different set of headers:
cc_library {
name: "libfoo",
srcs: ["common.cpp", "private_impl.cpp"],
export_include_dirs: ["include"],
target: {
vendor: {
export_include_dirs: ["include_vndk"],
exclude_srcs: ["private_impl.cpp"],
srcs: ["vendor_only.cpp"],
},
},
}
So the "core" variant would compile with both "common.cpp" and
"private_impl.cpp", and export "include".
The "vendor" variant would compile "common.cpp" and "vendor_only.cpp",
and export "include_vndk".
Bug: 36426473
Bug: 36079834
Test: out/soong/build.ninja, out/soong/Android- only changes due to _core addition and
.llndk -> .vendor
Test: attempt to compile with BOARD_VNDK_VERSION:=current
Change-Id: Idef28764043bf6c33dc0d2e7e2026c38867ff769
2017-04-06 21:43:22 +02:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
return []android.AndroidMkEntries{entries}
|
2016-01-04 23:34:37 +01:00
|
|
|
}
|
|
|
|
|
2020-08-15 21:24:26 +02:00
|
|
|
func androidMkWriteExtraTestConfigs(extraTestConfigs android.Paths, entries *android.AndroidMkEntries) {
|
|
|
|
if len(extraTestConfigs) > 0 {
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries,
|
|
|
|
func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.AddStrings("LOCAL_EXTRA_FULL_TEST_CONFIGS", extraTestConfigs.Strings()...)
|
|
|
|
})
|
2020-08-15 21:24:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-20 16:16:47 +02:00
|
|
|
func makeOverrideModuleNames(ctx AndroidMkContext, overrides []string) []string {
|
|
|
|
if ctx.Target().NativeBridge == android.NativeBridgeEnabled {
|
|
|
|
var result []string
|
|
|
|
for _, override := range overrides {
|
2021-05-27 20:09:11 +02:00
|
|
|
result = append(result, override+NativeBridgeSuffix)
|
2019-05-20 16:16:47 +02:00
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
|
|
|
return overrides
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (library *libraryDecorator) androidMkWriteExportedFlags(entries *android.AndroidMkEntries) {
|
2021-04-12 21:42:51 +02:00
|
|
|
var exportedFlags []string
|
|
|
|
var includeDirs android.Paths
|
|
|
|
var systemIncludeDirs android.Paths
|
|
|
|
var exportedDeps android.Paths
|
|
|
|
|
|
|
|
if library.flagExporterInfo != nil {
|
|
|
|
exportedFlags = library.flagExporterInfo.Flags
|
|
|
|
includeDirs = library.flagExporterInfo.IncludeDirs
|
|
|
|
systemIncludeDirs = library.flagExporterInfo.SystemIncludeDirs
|
|
|
|
exportedDeps = library.flagExporterInfo.Deps
|
|
|
|
} else {
|
|
|
|
exportedFlags = library.flagExporter.flags
|
|
|
|
includeDirs = library.flagExporter.dirs
|
|
|
|
systemIncludeDirs = library.flagExporter.systemDirs
|
|
|
|
exportedDeps = library.flagExporter.deps
|
|
|
|
}
|
|
|
|
for _, dir := range includeDirs {
|
2019-10-22 13:19:51 +02:00
|
|
|
exportedFlags = append(exportedFlags, "-I"+dir.String())
|
2019-06-03 12:10:47 +02:00
|
|
|
}
|
2021-04-12 21:42:51 +02:00
|
|
|
for _, dir := range systemIncludeDirs {
|
2019-10-22 13:19:51 +02:00
|
|
|
exportedFlags = append(exportedFlags, "-isystem "+dir.String())
|
2019-06-03 12:10:47 +02:00
|
|
|
}
|
2017-03-19 21:44:32 +01:00
|
|
|
if len(exportedFlags) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.AddStrings("LOCAL_EXPORT_CFLAGS", exportedFlags...)
|
2017-03-19 21:44:32 +01:00
|
|
|
}
|
2019-06-03 12:10:47 +02:00
|
|
|
if len(exportedDeps) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.AddStrings("LOCAL_EXPORT_C_INCLUDE_DEPS", exportedDeps.Strings()...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-05 11:49:50 +02:00
|
|
|
func (library *libraryDecorator) androidMkEntriesWriteAdditionalDependenciesForSourceAbiDiff(entries *android.AndroidMkEntries) {
|
2022-10-27 08:55:42 +02:00
|
|
|
if !library.static() {
|
|
|
|
entries.AddPaths("LOCAL_ADDITIONAL_DEPENDENCIES", library.sAbiDiff)
|
|
|
|
}
|
2017-03-19 21:44:32 +01:00
|
|
|
}
|
2017-02-16 01:15:21 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
// TODO(ccross): remove this once apex/androidmk.go is converted to AndroidMkEntries
|
2019-04-10 07:33:58 +02:00
|
|
|
func (library *libraryDecorator) androidMkWriteAdditionalDependenciesForSourceAbiDiff(w io.Writer) {
|
2022-10-27 08:55:42 +02:00
|
|
|
if !library.static() {
|
|
|
|
fmt.Fprintln(w, "LOCAL_ADDITIONAL_DEPENDENCIES +=", strings.Join(library.sAbiDiff.Strings(), " "))
|
|
|
|
}
|
2019-04-10 07:33:58 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (library *libraryDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
2017-02-16 01:15:21 +01:00
|
|
|
if library.static() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "STATIC_LIBRARIES"
|
2017-02-16 01:15:21 +01:00
|
|
|
} else if library.shared() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "SHARED_LIBRARIES"
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(_ android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_TOC", library.toc().String())
|
2021-10-05 19:43:23 +02:00
|
|
|
if !library.buildStubs() && library.unstrippedOutputFile != nil {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_UNSTRIPPED_BINARY", library.unstrippedOutputFile.String())
|
2019-02-05 14:33:10 +01:00
|
|
|
}
|
2018-11-07 13:43:34 +01:00
|
|
|
if len(library.Properties.Overrides) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_OVERRIDES_MODULES", strings.Join(makeOverrideModuleNames(ctx, library.Properties.Overrides), " "))
|
2018-11-07 13:43:34 +01:00
|
|
|
}
|
2020-12-21 18:11:10 +01:00
|
|
|
if len(library.postInstallCmds) > 0 {
|
|
|
|
entries.SetString("LOCAL_POST_INSTALL_CMD", strings.Join(library.postInstallCmds, "&& "))
|
2019-02-25 03:05:47 +01:00
|
|
|
}
|
2018-09-05 01:28:17 +02:00
|
|
|
})
|
2017-02-16 01:15:21 +01:00
|
|
|
} else if library.header() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "HEADER_LIBRARIES"
|
2017-02-16 01:15:21 +01:00
|
|
|
}
|
|
|
|
|
2020-06-15 07:24:19 +02:00
|
|
|
if library.distFile != nil {
|
|
|
|
entries.DistFiles = android.MakeDefaultDistFiles(library.distFile)
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
library.androidMkWriteExportedFlags(entries)
|
|
|
|
library.androidMkEntriesWriteAdditionalDependenciesForSourceAbiDiff(entries)
|
2015-07-09 03:13:11 +02:00
|
|
|
|
2021-11-23 02:24:06 +01:00
|
|
|
if entries.OutputFile.Valid() {
|
|
|
|
_, _, ext := android.SplitFileExt(entries.OutputFile.Path().Base())
|
|
|
|
entries.SetString("LOCAL_BUILT_MODULE_STEM", "$(LOCAL_MODULE)"+ext)
|
|
|
|
}
|
2015-07-09 03:13:11 +02:00
|
|
|
|
2017-02-10 01:16:31 +01:00
|
|
|
if library.coverageOutputFile.Valid() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_PREBUILT_COVERAGE_ARCHIVE", library.coverageOutputFile.String())
|
2017-02-10 01:16:31 +01:00
|
|
|
}
|
2016-01-04 23:34:37 +01:00
|
|
|
})
|
2016-07-30 02:28:03 +02:00
|
|
|
|
2018-12-20 14:10:17 +01:00
|
|
|
if library.shared() && !library.buildStubs() {
|
2020-02-24 21:01:37 +01:00
|
|
|
ctx.subAndroidMk(entries, library.baseInstaller)
|
2018-09-05 01:28:17 +02:00
|
|
|
} else {
|
2020-12-17 01:46:01 +01:00
|
|
|
if library.buildStubs() && library.stubsVersion() != "" {
|
2020-02-27 09:56:44 +01:00
|
|
|
entries.SubName = "." + library.stubsVersion()
|
|
|
|
}
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-12-16 19:20:23 +01:00
|
|
|
// library.makeUninstallable() depends on this to bypass HideFromMake() for
|
2020-08-06 23:34:42 +02:00
|
|
|
// static libraries.
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
|
2018-12-20 14:10:17 +01:00
|
|
|
if library.buildStubs() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_NO_NOTICE_FILE", true)
|
2021-08-17 07:54:00 +02:00
|
|
|
}
|
2018-09-05 01:28:17 +02:00
|
|
|
})
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
2020-12-09 13:18:56 +01:00
|
|
|
// If a library providing a stub is included in an APEX, the private APIs of the library
|
|
|
|
// is accessible only inside the APEX. From outside of the APEX, clients can only use the
|
|
|
|
// public APIs via the stub. To enforce this, the (latest version of the) stub gets the
|
|
|
|
// name of the library. The impl library instead gets the `.bootstrap` suffix to so that
|
|
|
|
// they can be exceptionally used directly when APEXes are not available (e.g. during the
|
|
|
|
// very early stage in the boot process).
|
|
|
|
if len(library.Properties.Stubs.Versions) > 0 && !ctx.Host() && ctx.NotInPlatform() &&
|
2024-01-08 04:55:45 +01:00
|
|
|
!ctx.InRamdisk() && !ctx.InVendorRamdisk() && !ctx.InRecovery() && !ctx.InVendorOrProduct() && !ctx.static() {
|
2020-02-27 09:56:44 +01:00
|
|
|
if library.buildStubs() && library.isLatestStubVersion() {
|
|
|
|
entries.SubName = ""
|
|
|
|
}
|
2018-12-20 14:10:17 +01:00
|
|
|
if !library.buildStubs() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SubName = ".bootstrap"
|
2018-12-20 14:10:17 +01:00
|
|
|
}
|
|
|
|
}
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (object *objectLinker) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.Class = "STATIC_LIBRARIES"
|
|
|
|
entries.ExtraFooters = append(entries.ExtraFooters,
|
2020-12-07 19:23:54 +01:00
|
|
|
func(w io.Writer, name, prefix, moduleDir string) {
|
2020-02-24 21:01:37 +01:00
|
|
|
out := entries.OutputFile.Path()
|
|
|
|
varname := fmt.Sprintf("SOONG_%sOBJECT_%s%s", prefix, name, entries.SubName)
|
2015-07-09 03:13:11 +02:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
fmt.Fprintf(w, "\n%s := %s\n", varname, out.String())
|
|
|
|
fmt.Fprintln(w, ".KATI_READONLY: "+varname)
|
|
|
|
})
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
|
|
|
|
2022-03-24 22:06:14 +01:00
|
|
|
func (test *testDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
if len(test.InstallerProperties.Test_suites) > 0 {
|
|
|
|
entries.AddCompatibilityTestSuites(test.InstallerProperties.Test_suites...)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (binary *binaryDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, binary.baseInstaller)
|
2016-06-11 02:20:30 +02:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "EXECUTABLES"
|
2020-06-15 07:24:19 +02:00
|
|
|
entries.DistFiles = binary.distFiles
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(_ android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_UNSTRIPPED_BINARY", binary.unstrippedOutputFile.String())
|
2016-12-07 22:37:42 +01:00
|
|
|
if len(binary.symlinks) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.AddStrings("LOCAL_MODULE_SYMLINKS", binary.symlinks...)
|
2016-12-07 22:37:42 +01:00
|
|
|
}
|
|
|
|
|
2017-02-10 01:16:31 +01:00
|
|
|
if binary.coverageOutputFile.Valid() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_PREBUILT_COVERAGE_ARCHIVE", binary.coverageOutputFile.String())
|
2017-02-10 01:16:31 +01:00
|
|
|
}
|
2018-04-03 22:22:50 +02:00
|
|
|
|
|
|
|
if len(binary.Properties.Overrides) > 0 {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_OVERRIDES_MODULES", strings.Join(makeOverrideModuleNames(ctx, binary.Properties.Overrides), " "))
|
2018-04-03 22:22:50 +02:00
|
|
|
}
|
2020-12-21 18:11:10 +01:00
|
|
|
if len(binary.postInstallCmds) > 0 {
|
|
|
|
entries.SetString("LOCAL_POST_INSTALL_CMD", strings.Join(binary.postInstallCmds, "&& "))
|
2019-02-25 03:05:47 +01:00
|
|
|
}
|
2016-01-04 23:34:37 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (benchmark *benchmarkDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, benchmark.binaryDecorator)
|
|
|
|
entries.Class = "NATIVE_TESTS"
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2017-04-25 03:10:29 +02:00
|
|
|
if len(benchmark.Properties.Test_suites) > 0 {
|
2020-11-24 21:42:58 +01:00
|
|
|
entries.AddCompatibilityTestSuites(benchmark.Properties.Test_suites...)
|
2017-04-25 03:10:29 +02:00
|
|
|
}
|
2018-08-08 01:49:25 +02:00
|
|
|
if benchmark.testConfig != nil {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String())
|
2018-08-03 00:00:46 +02:00
|
|
|
}
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_NATIVE_BENCHMARK", true)
|
2020-01-07 00:47:57 +01:00
|
|
|
if !BoolDefault(benchmark.Properties.Auto_gen_config, true) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", true)
|
2020-01-07 00:47:57 +01:00
|
|
|
}
|
2017-04-25 03:10:29 +02:00
|
|
|
})
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (test *testBinary) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, test.binaryDecorator)
|
2022-03-24 22:06:14 +01:00
|
|
|
ctx.subAndroidMk(entries, test.testDecorator)
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "NATIVE_TESTS"
|
2016-07-30 02:28:03 +02:00
|
|
|
if Bool(test.Properties.Test_per_src) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SubName = "_" + String(test.binaryDecorator.Properties.Stem)
|
2016-03-24 21:14:12 +01:00
|
|
|
}
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2018-08-08 01:49:25 +02:00
|
|
|
if test.testConfig != nil {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_FULL_TEST_CONFIG", test.testConfig.String())
|
2018-08-03 00:00:46 +02:00
|
|
|
}
|
2020-01-07 00:47:57 +01:00
|
|
|
if !BoolDefault(test.Properties.Auto_gen_config, true) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_DISABLE_AUTO_GENERATE_TEST_CONFIG", true)
|
2020-01-07 00:47:57 +01:00
|
|
|
}
|
2020-08-17 12:46:00 +02:00
|
|
|
entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", test.Properties.Test_mainline_modules...)
|
2021-09-25 00:47:17 +02:00
|
|
|
|
|
|
|
entries.SetBoolIfTrue("LOCAL_COMPATIBILITY_PER_TESTCASE_DIRECTORY", Bool(test.Properties.Per_testcase_directory))
|
2022-02-11 11:06:07 +01:00
|
|
|
if len(test.Properties.Data_bins) > 0 {
|
|
|
|
entries.AddStrings("LOCAL_TEST_DATA_BINS", test.Properties.Data_bins...)
|
|
|
|
}
|
2022-08-12 12:49:20 +02:00
|
|
|
|
|
|
|
test.Properties.Test_options.CommonTestOptions.SetAndroidMkEntries(entries)
|
2017-03-28 01:27:50 +02:00
|
|
|
})
|
|
|
|
|
2020-08-15 21:24:26 +02:00
|
|
|
androidMkWriteExtraTestConfigs(test.extraTestConfigs, entries)
|
2016-03-24 21:14:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (fuzz *fuzzBinary) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, fuzz.binaryDecorator)
|
2019-09-14 02:32:50 +02:00
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_IS_FUZZ_TARGET", true)
|
2019-10-18 04:20:41 +02:00
|
|
|
if fuzz.installedSharedDeps != nil {
|
2023-11-15 21:39:40 +01:00
|
|
|
// TOOD: move to install dep
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.AddStrings("LOCAL_FUZZ_INSTALLED_SHARED_DEPS", fuzz.installedSharedDeps...)
|
2019-10-18 04:20:41 +02:00
|
|
|
}
|
2019-09-14 02:32:50 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (test *testLibrary) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, test.libraryDecorator)
|
2022-03-24 22:06:14 +01:00
|
|
|
ctx.subAndroidMk(entries, test.testDecorator)
|
2016-07-30 02:28:03 +02:00
|
|
|
}
|
2016-05-17 00:56:53 +02:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (installer *baseInstaller) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
2020-04-07 18:50:32 +02:00
|
|
|
if installer.path == (android.InstallPath{}) {
|
|
|
|
return
|
|
|
|
}
|
2016-09-29 21:17:49 +02:00
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2021-11-12 03:59:15 +01:00
|
|
|
path, file := filepath.Split(installer.path.String())
|
2019-09-10 05:29:31 +02:00
|
|
|
stem, suffix, _ := android.SplitFileExt(file)
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_MODULE_SUFFIX", suffix)
|
|
|
|
entries.SetString("LOCAL_MODULE_PATH", path)
|
|
|
|
entries.SetString("LOCAL_MODULE_STEM", stem)
|
2016-03-24 21:14:12 +01:00
|
|
|
})
|
2015-07-09 03:13:11 +02:00
|
|
|
}
|
2016-06-18 01:45:24 +02:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (c *stubDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
Replace stringly-typed API levels.
Handling of API levels within Soong is currently fairly difficult
since it isn't always clear based on context what kind of API level a
given string represents, how much canonicalizing and error checking
the code receiving the string are expected to do, or how those errors
should be treated.
The API level struct does not export its raw data, so as to keep its
"constructor" private to the android package, and to prevent misuse of
the `number` field, which is only an implementation detail for preview
API levels. API levels can be parsed with either
`android.ApiLevelFromUser`, which returns any errors to the caller, or
`android.ApiLevelOrPanic`, which is used in the case where the input
is trusted and any errors in parsing should panic. Even within the
`android` package, these APIs should be preferred over direct
construction.
For cases where there are context specific parsing requirements, such
as handling the "minimum" alias in the cc module,
`nativeApiLevelFromUser` and `nativeApiLevelOrPanic` should be used
instead.
Test: treehugger
Bug: http://b/154667674
Change-Id: Id52921fda32cb437fb1775ac2183299dedc0cf20
2020-07-06 23:49:35 +02:00
|
|
|
entries.SubName = ndkLibrarySuffix + "." + c.apiLevel.String()
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.Class = "SHARED_LIBRARIES"
|
2016-06-18 01:45:24 +02:00
|
|
|
|
2020-09-30 20:41:33 +02:00
|
|
|
if !c.buildStubs() {
|
|
|
|
entries.Disabled = true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2017-11-29 02:34:01 +01:00
|
|
|
path, file := filepath.Split(c.installPath.String())
|
2019-09-10 05:29:31 +02:00
|
|
|
stem, suffix, _ := android.SplitFileExt(file)
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_MODULE_SUFFIX", suffix)
|
|
|
|
entries.SetString("LOCAL_MODULE_PATH", path)
|
|
|
|
entries.SetString("LOCAL_MODULE_STEM", stem)
|
|
|
|
entries.SetBool("LOCAL_NO_NOTICE_FILE", true)
|
2020-05-29 22:37:12 +02:00
|
|
|
if c.parsedCoverageXmlPath.String() != "" {
|
|
|
|
entries.SetString("SOONG_NDK_API_XML", "$(SOONG_NDK_API_XML) "+c.parsedCoverageXmlPath.String())
|
|
|
|
}
|
2024-04-04 23:25:51 +02:00
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true) // Stubs should not be installed
|
2016-06-18 01:45:24 +02:00
|
|
|
})
|
|
|
|
}
|
2017-03-19 21:44:32 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (c *vndkPrebuiltLibraryDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.Class = "SHARED_LIBRARIES"
|
Install VNDK snapshot libraries for system build
When BOARD_VNDK_VERSION := <VNDK version>, or
PRODUCT_EXTRA_VNDK_VERSIONS includes the needed <VNDK version> list,
the prebuilt VNDK libs in prebuilts/vndk/ directory will be
installed.
Each prebuilt VNDK module uses "vndk_prebuilt_shared" for shared
VNDK/VNDK-SP libs.
Following is the sample configuration of a vndk snapshot module:
vndk_prebuilt_shared {
name: "libfoo",
version: "27",
vendor_available: true,
vndk: {
enabled: true,
},
arch: {
arm64: {
srcs: ["arm/lib64/libfoo.so"],
},
arm: {
srcs: ["arm/lib/libfoo.so"],
},
},
}
The Android.bp for the snapshot modules will be auto-generated by a
script.
Bug: 38304393
Bug: 65377115
Bug: 68123344
Test: set BOARD_VNDK_VERSION := 27
copy a snapshot for v27
build with make command
Change-Id: Ib93107530dbabb4a24583f4d6e4f0c513c9adfec
2017-11-17 04:10:28 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SubName = c.androidMkSuffix
|
Install VNDK snapshot libraries for system build
When BOARD_VNDK_VERSION := <VNDK version>, or
PRODUCT_EXTRA_VNDK_VERSIONS includes the needed <VNDK version> list,
the prebuilt VNDK libs in prebuilts/vndk/ directory will be
installed.
Each prebuilt VNDK module uses "vndk_prebuilt_shared" for shared
VNDK/VNDK-SP libs.
Following is the sample configuration of a vndk snapshot module:
vndk_prebuilt_shared {
name: "libfoo",
version: "27",
vendor_available: true,
vndk: {
enabled: true,
},
arch: {
arm64: {
srcs: ["arm/lib64/libfoo.so"],
},
arm: {
srcs: ["arm/lib/libfoo.so"],
},
},
}
The Android.bp for the snapshot modules will be auto-generated by a
script.
Bug: 38304393
Bug: 65377115
Bug: 68123344
Test: set BOARD_VNDK_VERSION := 27
copy a snapshot for v27
build with make command
Change-Id: Ib93107530dbabb4a24583f4d6e4f0c513c9adfec
2017-11-17 04:10:28 +01:00
|
|
|
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
c.libraryDecorator.androidMkWriteExportedFlags(entries)
|
Install VNDK snapshot libraries for system build
When BOARD_VNDK_VERSION := <VNDK version>, or
PRODUCT_EXTRA_VNDK_VERSIONS includes the needed <VNDK version> list,
the prebuilt VNDK libs in prebuilts/vndk/ directory will be
installed.
Each prebuilt VNDK module uses "vndk_prebuilt_shared" for shared
VNDK/VNDK-SP libs.
Following is the sample configuration of a vndk snapshot module:
vndk_prebuilt_shared {
name: "libfoo",
version: "27",
vendor_available: true,
vndk: {
enabled: true,
},
arch: {
arm64: {
srcs: ["arm/lib64/libfoo.so"],
},
arm: {
srcs: ["arm/lib/libfoo.so"],
},
},
}
The Android.bp for the snapshot modules will be auto-generated by a
script.
Bug: 38304393
Bug: 65377115
Bug: 68123344
Test: set BOARD_VNDK_VERSION := 27
copy a snapshot for v27
build with make command
Change-Id: Ib93107530dbabb4a24583f4d6e4f0c513c9adfec
2017-11-17 04:10:28 +01:00
|
|
|
|
2020-10-23 07:36:11 +02:00
|
|
|
// Specifying stem is to pass check_elf_files when vendor modules link against vndk prebuilt.
|
|
|
|
// We can't use install path because VNDKs are not installed. Instead, Srcs is directly used.
|
|
|
|
_, file := filepath.Split(c.properties.Srcs[0])
|
|
|
|
stem, suffix, ext := android.SplitFileExt(file)
|
|
|
|
entries.SetString("LOCAL_BUILT_MODULE_STEM", "$(LOCAL_MODULE)"+ext)
|
|
|
|
entries.SetString("LOCAL_MODULE_SUFFIX", suffix)
|
|
|
|
entries.SetString("LOCAL_MODULE_STEM", stem)
|
|
|
|
|
2020-01-22 03:11:29 +01:00
|
|
|
if c.tocFile.Valid() {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetString("LOCAL_SOONG_TOC", c.tocFile.String())
|
2020-01-22 03:11:29 +01:00
|
|
|
}
|
2020-10-23 07:36:11 +02:00
|
|
|
|
|
|
|
// VNDK libraries available to vendor are not installed because
|
|
|
|
// they are packaged in VNDK APEX and installed by APEX packages (apex/apex.go)
|
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
|
2020-01-22 03:11:29 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (c *ndkPrebuiltStlLinker) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.Class = "SHARED_LIBRARIES"
|
2017-12-14 22:23:15 +01:00
|
|
|
}
|
Allow platform modules to link to vendor public libraries
Normally, when building with VNDK, platform modules are not allowed to
link against vendor libraries, because the ABI of the vendor libraries
are not guaranteed to be stable and may differ across multiple vendor
images.
However, the vendor public libraries are the exceptions. Vendor public
libraries are vendor libraries that are exposed to 3rd party apps and
listed in /vendor/etc/public.libraries.txt. Since they are intended to
be exposed to public, their ABI stability is guaranteed (by definition,
though it is up to the vendor to actually guarantee it).
This change provides a way to make a vendor lib as public by defining a
module of type 'vendor_public_library' with a map file that enumerates
public symbols that are publicized:
cc_library {
name: "libvendor",
proprietary: true,
...
}
vendor_public_library {
name: "libvendor",
symbol_file: "libvendor.map.txt",
}
This defines a stub library module named libvendor.vendorpublic from the
map file. `shared_libs: ["libvendor"]` is redirected to the stub library
when it is from the outside of the vendor partition.
Bug: 74275385
Test: m -j
Test: cc_test.go passes
Change-Id: I5bed94d7c4282b777632ab2f0fb63c203ee313ba
2018-03-19 10:23:01 +01:00
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (p *prebuiltLinker) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2018-11-20 04:59:08 +01:00
|
|
|
if p.properties.Check_elf_files != nil {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_CHECK_ELF_FILES", *p.properties.Check_elf_files)
|
2018-11-20 04:59:08 +01:00
|
|
|
} else {
|
2021-11-12 19:27:58 +01:00
|
|
|
// soong_cc_rust_prebuilt.mk does not include check_elf_file.mk by default
|
|
|
|
// because cc_library_shared and cc_binary use soong_cc_rust_prebuilt.mk as well.
|
2018-11-20 04:59:08 +01:00
|
|
|
// In order to turn on prebuilt ABI checker, set `LOCAL_CHECK_ELF_FILES` to
|
|
|
|
// true if `p.properties.Check_elf_files` is not specified.
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_CHECK_ELF_FILES", true)
|
2018-11-20 04:59:08 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (p *prebuiltLibraryLinker) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, p.libraryDecorator)
|
2018-11-20 04:59:08 +01:00
|
|
|
if p.shared() {
|
2020-02-24 21:01:37 +01:00
|
|
|
ctx.subAndroidMk(entries, &p.prebuiltLinker)
|
2024-06-04 03:22:40 +02:00
|
|
|
androidMkWritePrebuiltOptions(p.baseLinker, entries)
|
2018-11-20 04:59:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-24 21:01:37 +01:00
|
|
|
func (p *prebuiltBinaryLinker) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
ctx.subAndroidMk(entries, p.binaryDecorator)
|
|
|
|
ctx.subAndroidMk(entries, &p.prebuiltLinker)
|
2024-06-04 03:22:40 +02:00
|
|
|
androidMkWritePrebuiltOptions(p.baseLinker, entries)
|
2018-11-20 04:59:08 +01:00
|
|
|
}
|
|
|
|
|
2022-08-17 09:40:16 +02:00
|
|
|
func (a *apiLibraryDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.Class = "SHARED_LIBRARIES"
|
|
|
|
entries.SubName += multitree.GetApiImportSuffix()
|
|
|
|
|
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(_ android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
a.libraryDecorator.androidMkWriteExportedFlags(entries)
|
|
|
|
src := *a.properties.Src
|
|
|
|
path, file := filepath.Split(src)
|
|
|
|
stem, suffix, ext := android.SplitFileExt(file)
|
|
|
|
entries.SetString("LOCAL_BUILT_MODULE_STEM", "$(LOCAL_MODULE)"+ext)
|
|
|
|
entries.SetString("LOCAL_MODULE_SUFFIX", suffix)
|
|
|
|
entries.SetString("LOCAL_MODULE_STEM", stem)
|
|
|
|
entries.SetString("LOCAL_MODULE_PATH", path)
|
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
|
|
|
|
entries.SetString("LOCAL_SOONG_TOC", a.toc().String())
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-08-24 07:10:46 +02:00
|
|
|
func (a *apiHeadersDecorator) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.Class = "HEADER_LIBRARIES"
|
|
|
|
entries.SubName += multitree.GetApiImportSuffix()
|
|
|
|
|
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(_ android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
a.libraryDecorator.androidMkWriteExportedFlags(entries)
|
|
|
|
entries.SetBool("LOCAL_UNINSTALLABLE_MODULE", true)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2024-06-04 03:22:40 +02:00
|
|
|
func androidMkWritePrebuiltOptions(linker *baseLinker, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
allow := linker.Properties.Allow_undefined_symbols
|
|
|
|
if allow != nil {
|
2020-07-03 22:18:24 +02:00
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
2020-02-24 21:01:37 +01:00
|
|
|
entries.SetBool("LOCAL_ALLOW_UNDEFINED_SYMBOLS", *allow)
|
|
|
|
})
|
|
|
|
}
|
2024-06-04 03:22:40 +02:00
|
|
|
ignore := linker.Properties.Ignore_max_page_size
|
|
|
|
if ignore != nil {
|
|
|
|
entries.ExtraEntries = append(entries.ExtraEntries, func(ctx android.AndroidMkExtraEntriesContext, entries *android.AndroidMkEntries) {
|
|
|
|
entries.SetBool("LOCAL_IGNORE_MAX_PAGE_SIZE", *ignore)
|
|
|
|
})
|
|
|
|
}
|
2018-11-20 04:59:08 +01:00
|
|
|
}
|