2018-10-10 07:01:00 +02:00
|
|
|
// Copyright (C) 2018 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// package apex implements build rules for creating the APEX files which are container for
|
|
|
|
// lower-level system components. See https://source.android.com/devices/tech/ota/apex
|
2018-10-10 07:01:00 +02:00
|
|
|
package apex
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"path/filepath"
|
2018-10-10 07:05:29 +02:00
|
|
|
"sort"
|
2018-10-10 07:01:00 +02:00
|
|
|
"strings"
|
|
|
|
|
2020-06-01 19:45:49 +02:00
|
|
|
"github.com/google/blueprint"
|
|
|
|
"github.com/google/blueprint/bootstrap"
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
2018-10-10 07:01:00 +02:00
|
|
|
"android/soong/android"
|
2020-09-02 10:23:38 +02:00
|
|
|
"android/soong/bpf"
|
2018-10-10 07:01:00 +02:00
|
|
|
"android/soong/cc"
|
2020-06-01 19:45:49 +02:00
|
|
|
prebuilt_etc "android/soong/etc"
|
2021-01-07 07:31:24 +01:00
|
|
|
"android/soong/filesystem"
|
2018-10-10 07:01:00 +02:00
|
|
|
"android/soong/java"
|
2019-02-27 23:19:50 +01:00
|
|
|
"android/soong/python"
|
2020-11-17 14:21:02 +01:00
|
|
|
"android/soong/rust"
|
2020-06-01 19:45:49 +02:00
|
|
|
"android/soong/sh"
|
2018-10-10 07:01:00 +02:00
|
|
|
)
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func init() {
|
2021-03-09 23:34:13 +01:00
|
|
|
registerApexBuildComponents(android.InitRegistrationContext)
|
|
|
|
}
|
|
|
|
|
|
|
|
func registerApexBuildComponents(ctx android.RegistrationContext) {
|
|
|
|
ctx.RegisterModuleType("apex", BundleFactory)
|
|
|
|
ctx.RegisterModuleType("apex_test", testApexBundleFactory)
|
|
|
|
ctx.RegisterModuleType("apex_vndk", vndkApexBundleFactory)
|
|
|
|
ctx.RegisterModuleType("apex_defaults", defaultsFactory)
|
|
|
|
ctx.RegisterModuleType("prebuilt_apex", PrebuiltFactory)
|
|
|
|
ctx.RegisterModuleType("override_apex", overrideApexFactory)
|
|
|
|
ctx.RegisterModuleType("apex_set", apexSetFactory)
|
2019-10-23 09:46:38 +02:00
|
|
|
|
2021-03-09 23:34:13 +01:00
|
|
|
ctx.PreDepsMutators(RegisterPreDepsMutators)
|
|
|
|
ctx.PostDepsMutators(RegisterPostDepsMutators)
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
2020-06-12 14:46:59 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func RegisterPreDepsMutators(ctx android.RegisterMutatorsContext) {
|
|
|
|
ctx.TopDown("apex_vndk", apexVndkMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex_vndk_deps", apexVndkDepsMutator).Parallel()
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func RegisterPostDepsMutators(ctx android.RegisterMutatorsContext) {
|
2020-12-08 11:34:30 +01:00
|
|
|
ctx.TopDown("apex_info", apexInfoMutator).Parallel()
|
2020-11-19 06:37:47 +01:00
|
|
|
ctx.BottomUp("apex_unique", apexUniqueVariationsMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex_test_for_deps", apexTestForDepsMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex_test_for", apexTestForMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex", apexMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex_directly_in_any", apexDirectlyInAnyMutator).Parallel()
|
|
|
|
ctx.BottomUp("apex_flattened", apexFlattenedMutator).Parallel()
|
|
|
|
ctx.BottomUp("mark_platform_availability", markPlatformAvailability).Parallel()
|
|
|
|
}
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type apexBundleProperties struct {
|
2020-11-19 15:00:52 +01:00
|
|
|
// Json manifest file describing meta info of this APEX bundle. Refer to
|
|
|
|
// system/apex/proto/apex_manifest.proto for the schema. Default: "apex_manifest.json"
|
2020-11-19 06:37:47 +01:00
|
|
|
Manifest *string `android:"path"`
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// AndroidManifest.xml file used for the zip container of this APEX bundle. If unspecified,
|
|
|
|
// a default one is automatically generated.
|
2020-11-19 06:37:47 +01:00
|
|
|
AndroidManifest *string `android:"path"`
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Canonical name of this APEX bundle. Used to determine the path to the activated APEX on
|
|
|
|
// device (/apex/<apex_name>). If unspecified, follows the name property.
|
2020-11-19 06:37:47 +01:00
|
|
|
Apex_name *string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Determines the file contexts file for setting the security contexts to files in this APEX
|
|
|
|
// bundle. For platform APEXes, this should points to a file under /system/sepolicy Default:
|
|
|
|
// /system/sepolicy/apex/<module_name>_file_contexts.
|
2020-11-19 06:37:47 +01:00
|
|
|
File_contexts *string `android:"path"`
|
|
|
|
|
|
|
|
ApexNativeDependencies
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
Multilib apexMultilibProperties
|
|
|
|
|
2021-01-21 19:13:43 +01:00
|
|
|
// List of boot images that are embedded inside this APEX bundle.
|
|
|
|
Boot_images []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of java libraries that are embedded inside this APEX bundle.
|
2020-11-19 06:37:47 +01:00
|
|
|
Java_libs []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of prebuilt files that are embedded inside this APEX bundle.
|
2020-11-19 06:37:47 +01:00
|
|
|
Prebuilts []string
|
|
|
|
|
2021-03-15 20:32:23 +01:00
|
|
|
// List of platform_compat_config files that are embedded inside this APEX bundle.
|
|
|
|
Compat_configs []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of BPF programs inside this APEX bundle.
|
2020-11-19 06:37:47 +01:00
|
|
|
Bpfs []string
|
|
|
|
|
2021-01-07 07:31:24 +01:00
|
|
|
// List of filesystem images that are embedded inside this APEX bundle.
|
|
|
|
Filesystems []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Name of the apex_key module that provides the private key to sign this APEX bundle.
|
2020-11-19 06:37:47 +01:00
|
|
|
Key *string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Specifies the certificate and the private key to sign the zip container of this APEX. If
|
|
|
|
// this is "foo", foo.x509.pem and foo.pk8 under PRODUCT_DEFAULT_DEV_CERTIFICATE are used
|
|
|
|
// as the certificate and the private key, respectively. If this is ":module", then the
|
|
|
|
// certificate and the private key are provided from the android_app_certificate module
|
|
|
|
// named "module".
|
2020-11-19 06:37:47 +01:00
|
|
|
Certificate *string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// The minimum SDK version that this APEX must support at minimum. This is usually set to
|
|
|
|
// the SDK version that the APEX was first introduced.
|
|
|
|
Min_sdk_version *string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Whether this APEX is considered updatable or not. When set to true, this will enforce
|
|
|
|
// additional rules for making sure that the APEX is truly updatable. To be updatable,
|
|
|
|
// min_sdk_version should be set as well. This will also disable the size optimizations like
|
2021-02-16 12:40:16 +01:00
|
|
|
// symlinking to the system libs. Default is true.
|
2020-11-19 15:00:52 +01:00
|
|
|
Updatable *bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Whether this APEX is installable to one of the partitions like system, vendor, etc.
|
|
|
|
// Default: true.
|
|
|
|
Installable *bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-26 14:32:26 +01:00
|
|
|
// Whether this APEX can be compressed or not. Setting this property to false means this
|
|
|
|
// APEX will never be compressed. When set to true, APEX will be compressed if other
|
|
|
|
// conditions, e.g, target device needs to support APEX compression, are also fulfilled.
|
|
|
|
// Default: true.
|
|
|
|
Compressible *bool
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// For native libraries and binaries, use the vendor variant instead of the core (platform)
|
|
|
|
// variant. Default is false. DO NOT use this for APEXes that are installed to the system or
|
|
|
|
// system_ext partition.
|
|
|
|
Use_vendor *bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// If set true, VNDK libs are considered as stable libs and are not included in this APEX.
|
|
|
|
// Should be only used in non-system apexes (e.g. vendor: true). Default is false.
|
|
|
|
Use_vndk_as_stable *bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of SDKs that are used to build this APEX. A reference to an SDK should be either
|
|
|
|
// `name#version` or `name` which is an alias for `name#current`. If left empty,
|
|
|
|
// `platform#current` is implied. This value affects all modules included in this APEX. In
|
|
|
|
// other words, they are also built with the SDKs specified here.
|
|
|
|
Uses_sdks []string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// The type of APEX to build. Controls what the APEX payload is. Either 'image', 'zip' or
|
|
|
|
// 'both'. When set to image, contents are stored in a filesystem image inside a zip
|
|
|
|
// container. When set to zip, contents are stored in a zip container directly. This type is
|
|
|
|
// mostly for host-side debugging. When set to both, the two types are both built. Default
|
|
|
|
// is 'image'.
|
|
|
|
Payload_type *string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// The type of filesystem to use when the payload_type is 'image'. Either 'ext4' or 'f2fs'.
|
|
|
|
// Default 'ext4'.
|
|
|
|
Payload_fs_type *string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// For telling the APEX to ignore special handling for system libraries such as bionic.
|
|
|
|
// Default is false.
|
|
|
|
Ignore_system_library_special_case *bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Whenever apex_payload.img of the APEX should include dm-verity hashtree. Should be only
|
|
|
|
// used in tests.
|
2020-11-19 06:37:47 +01:00
|
|
|
Test_only_no_hashtree *bool
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Whenever apex_payload.img of the APEX should not be dm-verity signed. Should be only
|
|
|
|
// used in tests.
|
2020-11-19 06:37:47 +01:00
|
|
|
Test_only_unsigned_payload *bool
|
|
|
|
|
2020-12-22 11:47:50 +01:00
|
|
|
// Whenever apex should be compressed, regardless of product flag used. Should be only
|
|
|
|
// used in tests.
|
|
|
|
Test_only_force_compression *bool
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
IsCoverageVariant bool `blueprint:"mutated"`
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of sanitizer names that this APEX is enabled for
|
|
|
|
SanitizerNames []string `blueprint:"mutated"`
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
PreventInstall bool `blueprint:"mutated"`
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
HideFromMake bool `blueprint:"mutated"`
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Internal package method for this APEX. When payload_type is image, this can be either
|
|
|
|
// imageApex or flattenedApex depending on Config.FlattenApex(). When payload_type is zip,
|
|
|
|
// this becomes zipApex.
|
|
|
|
ApexType apexPackaging `blueprint:"mutated"`
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type ApexNativeDependencies struct {
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of native libraries that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Native_shared_libs []string
|
2020-03-06 13:30:13 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of JNI libraries that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Jni_libs []string
|
2020-06-11 20:32:11 +02:00
|
|
|
|
2020-11-17 14:21:02 +01:00
|
|
|
// List of rust dyn libraries
|
|
|
|
Rust_dyn_libs []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of native executables that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Binaries []string
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of native tests that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Tests []string
|
2021-02-15 09:54:43 +01:00
|
|
|
|
|
|
|
// List of filesystem images that are embedded inside this APEX bundle.
|
|
|
|
Filesystems []string
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type apexMultilibProperties struct {
|
|
|
|
// Native dependencies whose compile_multilib is "first"
|
|
|
|
First ApexNativeDependencies
|
|
|
|
|
|
|
|
// Native dependencies whose compile_multilib is "both"
|
|
|
|
Both ApexNativeDependencies
|
|
|
|
|
|
|
|
// Native dependencies whose compile_multilib is "prefer32"
|
|
|
|
Prefer32 ApexNativeDependencies
|
|
|
|
|
|
|
|
// Native dependencies whose compile_multilib is "32"
|
|
|
|
Lib32 ApexNativeDependencies
|
|
|
|
|
|
|
|
// Native dependencies whose compile_multilib is "64"
|
|
|
|
Lib64 ApexNativeDependencies
|
|
|
|
}
|
|
|
|
|
|
|
|
type apexTargetBundleProperties struct {
|
|
|
|
Target struct {
|
|
|
|
// Multilib properties only for android.
|
|
|
|
Android struct {
|
|
|
|
Multilib apexMultilibProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multilib properties only for host.
|
|
|
|
Host struct {
|
|
|
|
Multilib apexMultilibProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multilib properties only for host linux_bionic.
|
|
|
|
Linux_bionic struct {
|
|
|
|
Multilib apexMultilibProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
// Multilib properties only for host linux_glibc.
|
|
|
|
Linux_glibc struct {
|
|
|
|
Multilib apexMultilibProperties
|
2020-03-06 13:30:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-14 10:44:04 +01:00
|
|
|
type apexArchBundleProperties struct {
|
|
|
|
Arch struct {
|
|
|
|
Arm struct {
|
|
|
|
ApexNativeDependencies
|
|
|
|
}
|
|
|
|
Arm64 struct {
|
|
|
|
ApexNativeDependencies
|
|
|
|
}
|
|
|
|
X86 struct {
|
|
|
|
ApexNativeDependencies
|
|
|
|
}
|
|
|
|
X86_64 struct {
|
|
|
|
ApexNativeDependencies
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// These properties can be used in override_apex to override the corresponding properties in the
|
|
|
|
// base apex.
|
2020-11-19 06:37:47 +01:00
|
|
|
type overridableProperties struct {
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of APKs that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Apps []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of runtime resource overlays (RROs) that are embedded inside this APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
Rros []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Names of modules to be overridden. Listed modules can only be other binaries (in Make or
|
|
|
|
// Soong). This does not completely prevent installation of the overridden binaries, but if
|
|
|
|
// both binaries would be installed by default (in PRODUCT_PACKAGES) the other binary will
|
|
|
|
// be removed from PRODUCT_PACKAGES.
|
2020-11-19 06:37:47 +01:00
|
|
|
Overrides []string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Logging parent value.
|
2020-11-19 06:37:47 +01:00
|
|
|
Logging_parent string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Apex Container package name. Override value for attribute package:name in
|
|
|
|
// AndroidManifest.xml
|
2020-11-19 06:37:47 +01:00
|
|
|
Package_name string
|
|
|
|
|
|
|
|
// A txt file containing list of files that are allowed to be included in this APEX.
|
|
|
|
Allowed_files *string `android:"path"`
|
2020-03-06 13:30:13 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type apexBundle struct {
|
2020-11-19 15:00:52 +01:00
|
|
|
// Inherited structs
|
2020-11-19 06:37:47 +01:00
|
|
|
android.ModuleBase
|
|
|
|
android.DefaultableModuleBase
|
|
|
|
android.OverridableModuleBase
|
|
|
|
android.SdkBase
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Properties
|
2020-11-19 06:37:47 +01:00
|
|
|
properties apexBundleProperties
|
|
|
|
targetProperties apexTargetBundleProperties
|
2020-12-14 10:44:04 +01:00
|
|
|
archProperties apexArchBundleProperties
|
2020-11-19 06:37:47 +01:00
|
|
|
overridableProperties overridableProperties
|
2020-11-19 15:00:52 +01:00
|
|
|
vndkProperties apexVndkProperties // only for apex_vndk modules
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Inputs
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Keys for apex_paylaod.img
|
2020-12-21 18:11:10 +01:00
|
|
|
publicKeyFile android.Path
|
|
|
|
privateKeyFile android.Path
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Cert/priv-key for the zip container
|
2020-12-21 18:11:10 +01:00
|
|
|
containerCertificateFile android.Path
|
|
|
|
containerPrivateKeyFile android.Path
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Flags for special variants of APEX
|
|
|
|
testApex bool
|
|
|
|
vndkApex bool
|
|
|
|
artApex bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Tells whether this variant of the APEX bundle is the primary one or not. Only the primary
|
|
|
|
// one gets installed to the device.
|
|
|
|
primaryApexType bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Suffix of module name in Android.mk ".flattened", ".apex", ".zipapex", or ""
|
|
|
|
suffix string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// File system type of apex_payload.img
|
|
|
|
payloadFsType fsType
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Whether to create symlink to the system file instead of having a file inside the apex or
|
|
|
|
// not
|
|
|
|
linkToSystemLib bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of files to be included in this APEX. This is filled in the first part of
|
|
|
|
// GenerateAndroidBuildActions.
|
|
|
|
filesInfo []apexFile
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// List of other module names that should be installed when this APEX gets installed.
|
|
|
|
requiredDeps []string
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Outputs (final and intermediates)
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Processed apex manifest in JSONson format (for Q)
|
|
|
|
manifestJsonOut android.WritablePath
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Processed apex manifest in PB format (for R+)
|
|
|
|
manifestPbOut android.WritablePath
|
|
|
|
|
|
|
|
// Processed file_contexts files
|
|
|
|
fileContexts android.WritablePath
|
2020-11-19 06:37:47 +01:00
|
|
|
|
|
|
|
// Struct holding the merged notice file paths in different formats
|
|
|
|
mergedNotices android.NoticeOutputs
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// The built APEX file. This is the main product.
|
|
|
|
outputFile android.WritablePath
|
|
|
|
|
|
|
|
// The built APEX file in app bundle format. This file is not directly installed to the
|
|
|
|
// device. For an APEX, multiple app bundles are created each of which is for a specific ABI
|
|
|
|
// like arm, arm64, x86, etc. Then they are processed again (outside of the Android build
|
|
|
|
// system) to be merged into a single app bundle file that Play accepts. See
|
|
|
|
// vendor/google/build/build_unbundled_mainline_module.sh for more detail.
|
|
|
|
bundleModuleFile android.WritablePath
|
|
|
|
|
|
|
|
// Target path to install this APEX. Usually out/target/product/<device>/<partition>/apex.
|
|
|
|
installDir android.InstallPath
|
|
|
|
|
|
|
|
// List of commands to create symlinks for backward compatibility. These commands will be
|
|
|
|
// attached as LOCAL_POST_INSTALL_CMD to apex package itself (for unflattened build) or
|
|
|
|
// apex_manifest (for flattened build) so that compat symlinks are always installed
|
|
|
|
// regardless of TARGET_FLATTEN_APEX setting.
|
|
|
|
compatSymlinks []string
|
|
|
|
|
|
|
|
// Text file having the list of individual files that are included in this APEX. Used for
|
|
|
|
// debugging purpose.
|
|
|
|
installedFilesFile android.WritablePath
|
|
|
|
|
|
|
|
// List of module names that this APEX is including (to be shown via *-deps-info target).
|
|
|
|
// Used for debugging purpose.
|
|
|
|
android.ApexBundleDepsInfo
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// Optional list of lint report zip files for apexes that contain java or app modules
|
|
|
|
lintReports android.Paths
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
prebuiltFileToDelete string
|
2020-11-12 17:39:19 +01:00
|
|
|
|
2020-11-26 14:32:26 +01:00
|
|
|
isCompressed bool
|
|
|
|
|
2020-11-12 17:39:19 +01:00
|
|
|
// Path of API coverage generate file
|
2021-01-09 02:03:42 +01:00
|
|
|
apisUsedByModuleFile android.ModuleOutPath
|
|
|
|
apisBackedByModuleFile android.ModuleOutPath
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexFileClass represents a type of file that can be included in APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
type apexFileClass int
|
|
|
|
|
|
|
|
const (
|
2020-11-19 15:00:52 +01:00
|
|
|
app apexFileClass = iota
|
|
|
|
appSet
|
|
|
|
etc
|
2020-11-19 06:37:47 +01:00
|
|
|
goBinary
|
|
|
|
javaSharedLib
|
2020-11-19 15:00:52 +01:00
|
|
|
nativeExecutable
|
|
|
|
nativeSharedLib
|
2020-11-19 06:37:47 +01:00
|
|
|
nativeTest
|
2020-11-19 15:00:52 +01:00
|
|
|
pyBinary
|
|
|
|
shBinary
|
2020-11-19 06:37:47 +01:00
|
|
|
)
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexFile represents a file in an APEX bundle. This is created during the first half of
|
|
|
|
// GenerateAndroidBuildActions by traversing the dependencies of the APEX. Then in the second half
|
|
|
|
// of the function, this is used to create commands that copies the files into a staging directory,
|
|
|
|
// where they are packaged into the APEX file. This struct is also used for creating Make modules
|
|
|
|
// for each of the files in case when the APEX is flattened.
|
2020-11-19 06:37:47 +01:00
|
|
|
type apexFile struct {
|
2020-11-19 15:00:52 +01:00
|
|
|
// buildFile is put in the installDir inside the APEX.
|
|
|
|
builtFile android.Path
|
|
|
|
noticeFiles android.Paths
|
|
|
|
installDir string
|
|
|
|
customStem string
|
|
|
|
symlinks []string // additional symlinks
|
|
|
|
|
|
|
|
// Info for Android.mk Module name of `module` in AndroidMk. Note the generated AndroidMk
|
|
|
|
// module for apexFile is named something like <AndroidMk module name>.<apex name>[<apex
|
|
|
|
// suffix>]
|
|
|
|
androidMkModuleName string // becomes LOCAL_MODULE
|
|
|
|
class apexFileClass // becomes LOCAL_MODULE_CLASS
|
|
|
|
moduleDir string // becomes LOCAL_PATH
|
|
|
|
requiredModuleNames []string // becomes LOCAL_REQUIRED_MODULES
|
|
|
|
targetRequiredModuleNames []string // becomes LOCAL_TARGET_REQUIRED_MODULES
|
|
|
|
hostRequiredModuleNames []string // becomes LOCAL_HOST_REQUIRED_MODULES
|
|
|
|
dataPaths []android.DataPath // becomes LOCAL_TEST_DATA
|
2020-11-19 06:37:47 +01:00
|
|
|
|
|
|
|
jacocoReportClassesFile android.Path // only for javalibs and apps
|
|
|
|
lintDepSets java.LintDepSets // only for javalibs and apps
|
|
|
|
certificate java.Certificate // only for apps
|
|
|
|
overriddenPackageName string // only for apps
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
transitiveDep bool
|
|
|
|
isJniLib bool
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2021-01-20 12:33:11 +01:00
|
|
|
multilib string
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): remove this
|
|
|
|
module android.Module
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): shorten the arglist using an option struct
|
2020-11-19 06:37:47 +01:00
|
|
|
func newApexFile(ctx android.BaseModuleContext, builtFile android.Path, androidMkModuleName string, installDir string, class apexFileClass, module android.Module) apexFile {
|
|
|
|
ret := apexFile{
|
|
|
|
builtFile: builtFile,
|
|
|
|
installDir: installDir,
|
2020-11-19 15:00:52 +01:00
|
|
|
androidMkModuleName: androidMkModuleName,
|
2020-11-19 06:37:47 +01:00
|
|
|
class: class,
|
|
|
|
module: module,
|
2020-05-19 08:47:01 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
if module != nil {
|
2020-11-19 15:00:52 +01:00
|
|
|
ret.noticeFiles = module.NoticeFiles()
|
2020-11-19 06:37:47 +01:00
|
|
|
ret.moduleDir = ctx.OtherModuleDir(module)
|
|
|
|
ret.requiredModuleNames = module.RequiredModuleNames()
|
|
|
|
ret.targetRequiredModuleNames = module.TargetRequiredModuleNames()
|
|
|
|
ret.hostRequiredModuleNames = module.HostRequiredModuleNames()
|
2021-01-20 12:33:11 +01:00
|
|
|
ret.multilib = module.Target().Arch.ArchType.Multilib
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return ret
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
func (af *apexFile) ok() bool {
|
2020-11-19 06:37:47 +01:00
|
|
|
return af.builtFile != nil && af.builtFile.String() != ""
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexRelativePath returns the relative path of the given path from the install directory of this
|
|
|
|
// apexFile.
|
|
|
|
// TODO(jiyong): rename this
|
2020-11-19 06:37:47 +01:00
|
|
|
func (af *apexFile) apexRelativePath(path string) string {
|
|
|
|
return filepath.Join(af.installDir, path)
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// path returns path of this apex file relative to the APEX root
|
|
|
|
func (af *apexFile) path() string {
|
|
|
|
return af.apexRelativePath(af.stem())
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// stem returns the base filename of this apex file
|
|
|
|
func (af *apexFile) stem() string {
|
|
|
|
if af.customStem != "" {
|
|
|
|
return af.customStem
|
2020-01-10 16:12:39 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return af.builtFile.Base()
|
|
|
|
}
|
2020-05-20 02:06:00 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// symlinkPaths returns paths of the symlinks (if any) relative to the APEX root
|
|
|
|
func (af *apexFile) symlinkPaths() []string {
|
2020-11-19 06:37:47 +01:00
|
|
|
var ret []string
|
|
|
|
for _, symlink := range af.symlinks {
|
|
|
|
ret = append(ret, af.apexRelativePath(symlink))
|
apex_available tracks static dependencies
This change fixes a bug that apex_available is not enforced for static
dependencies. For example, a module with 'apex_available:
["//apex_available:platform"]' was able to be statically linked to any
APEX. This was happening because the check was done on the modules that
are actually installed to an APEX. Static dependencies of the modules
were not counted as they are not installed to the APEX as files.
Fixing this bug by doing the check by traversing the tree in the method
checkApexAvailability.
This change includes a few number of related changes:
1) DepIsInSameApex implementation for cc.Module was changed as well.
Previuosly, it returned false only when the dependency is actually a
stub variant of a lib. Now, it returns false when the dependency has one
or more stub variants. To understand why, we need to recall that when
there is a dependency to a lib having stubs, we actually create two
dependencies: to the non-stub variant and to the stub variant during the
DepsMutator phase. And later in the build action generation phase, we
choose one of them depending on the context. Also recall that an APEX
variant is created only when DepIsInSameApex returns true. Given these,
with the previous implementatin of DepIsInSameApex, we did create apex
variants of the non-stub variant of the dependency, while not creating
the apex variant for the stub variant. This is not right; we needlessly
created the apex variant. The extra apex variant has caused no harm so
far, but since the apex_available check became more correct, it actually
breaks the build. To fix the issue, we stop creating the APEX variant
both for non-stub and stub variants.
2) platform variant is created regardless of the apex_available value.
This is required for the case when a library X that provides stub is in
an APEX A and is configured to be available only for A. In that case,
libs in other APEX can't use the stub library since the stub library is
mutated only for apex A. By creating the platform variant for the stub
library, it can be used from outside as the default dependency variation
is set to the platform variant when creating the APEX variations.
3) The ApexAvailableWhitelist is added with the dependencies that were
revealed with this change.
Exempt-From-Owner-Approval: cherry-pick from internal
Bug: 147671264
Test: m
Merged-In: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
(cherry picked from commit fa89944c79f19552e906b41fd03a4981903eee7e)
Change-Id: Iaedc05494085ff4e8af227a6392bdd0c338b8e6e
2020-01-30 18:49:53 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return ret
|
2020-01-10 16:12:39 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// availableToPlatform tests whether this apexFile is from a module that can be installed to the
|
|
|
|
// platform.
|
|
|
|
func (af *apexFile) availableToPlatform() bool {
|
2020-11-19 06:37:47 +01:00
|
|
|
if af.module == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if am, ok := af.module.(android.ApexModule); ok {
|
|
|
|
return am.AvailableFor(android.AvailableToPlatform)
|
2020-06-05 22:14:03 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return false
|
2020-06-05 22:14:03 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Mutators
|
|
|
|
//
|
|
|
|
// Brief description about mutators for APEX. The following three mutators are the most important
|
|
|
|
// ones.
|
|
|
|
//
|
|
|
|
// 1) DepsMutator: from the properties like native_shared_libs, java_libs, etc., modules are added
|
|
|
|
// to the (direct) dependencies of this APEX bundle.
|
|
|
|
//
|
2020-12-08 11:34:30 +01:00
|
|
|
// 2) apexInfoMutator: this is a post-deps mutator, so runs after DepsMutator. Its goal is to
|
2020-11-19 15:00:52 +01:00
|
|
|
// collect modules that are direct and transitive dependencies of each APEX bundle. The collected
|
|
|
|
// modules are marked as being included in the APEX via BuildForApex().
|
|
|
|
//
|
2020-12-08 11:34:30 +01:00
|
|
|
// 3) apexMutator: this is a post-deps mutator that runs after apexInfoMutator. For each module that
|
|
|
|
// are marked by the apexInfoMutator, apex variations are created using CreateApexVariations().
|
2020-11-19 15:00:52 +01:00
|
|
|
|
|
|
|
type dependencyTag struct {
|
|
|
|
blueprint.BaseDependencyTag
|
|
|
|
name string
|
|
|
|
|
|
|
|
// Determines if the dependent will be part of the APEX payload. Can be false for the
|
|
|
|
// dependencies to the signing key module, etc.
|
|
|
|
payload bool
|
2021-03-17 15:51:03 +01:00
|
|
|
|
|
|
|
// True if the dependent can only be a source module, false if a prebuilt module is a suitable
|
|
|
|
// replacement. This is needed because some prebuilt modules do not provide all the information
|
|
|
|
// needed by the apex.
|
|
|
|
sourceOnly bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d dependencyTag) ReplaceSourceWithPrebuilt() bool {
|
|
|
|
return !d.sourceOnly
|
2020-11-19 15:00:52 +01:00
|
|
|
}
|
|
|
|
|
2021-03-17 15:51:03 +01:00
|
|
|
var _ android.ReplaceSourceWithPrebuilt = &dependencyTag{}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var (
|
2021-03-17 16:02:19 +01:00
|
|
|
androidAppTag = dependencyTag{name: "androidApp", payload: true}
|
|
|
|
bpfTag = dependencyTag{name: "bpf", payload: true}
|
|
|
|
certificateTag = dependencyTag{name: "certificate"}
|
|
|
|
executableTag = dependencyTag{name: "executable", payload: true}
|
|
|
|
fsTag = dependencyTag{name: "filesystem", payload: true}
|
2021-03-18 19:30:31 +01:00
|
|
|
bootImageTag = dependencyTag{name: "bootImage", payload: true, sourceOnly: true}
|
2021-03-16 16:06:54 +01:00
|
|
|
compatConfigTag = dependencyTag{name: "compatConfig", payload: true, sourceOnly: true}
|
2021-03-17 16:02:19 +01:00
|
|
|
javaLibTag = dependencyTag{name: "javaLib", payload: true}
|
|
|
|
jniLibTag = dependencyTag{name: "jniLib", payload: true}
|
|
|
|
keyTag = dependencyTag{name: "key"}
|
|
|
|
prebuiltTag = dependencyTag{name: "prebuilt", payload: true}
|
|
|
|
rroTag = dependencyTag{name: "rro", payload: true}
|
|
|
|
sharedLibTag = dependencyTag{name: "sharedLib", payload: true}
|
|
|
|
testForTag = dependencyTag{name: "test for"}
|
|
|
|
testTag = dependencyTag{name: "test", payload: true}
|
2020-11-19 15:00:52 +01:00
|
|
|
)
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): shorten this function signature
|
|
|
|
func addDependenciesForNativeModules(ctx android.BottomUpMutatorContext, nativeModules ApexNativeDependencies, target android.Target, imageVariation string) {
|
2020-11-19 06:37:47 +01:00
|
|
|
binVariations := target.Variations()
|
2020-11-19 15:00:52 +01:00
|
|
|
libVariations := append(target.Variations(), blueprint.Variation{Mutator: "link", Variation: "shared"})
|
2020-11-17 14:21:02 +01:00
|
|
|
rustLibVariations := append(target.Variations(), blueprint.Variation{Mutator: "rust_libraries", Variation: "dylib"})
|
2020-11-19 06:37:47 +01:00
|
|
|
|
|
|
|
if ctx.Device() {
|
2020-11-19 15:00:52 +01:00
|
|
|
binVariations = append(binVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
|
2020-12-08 16:20:45 +01:00
|
|
|
libVariations = append(libVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
|
|
|
|
rustLibVariations = append(rustLibVariations, blueprint.Variation{Mutator: "image", Variation: imageVariation})
|
2020-06-05 22:14:03 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Use *FarVariation* to be able to depend on modules having conflicting variations with
|
|
|
|
// this module. This is required since arch variant of an APEX bundle is 'common' but it is
|
|
|
|
// 'arm' or 'arm64' for native shared libs.
|
2020-11-19 06:37:47 +01:00
|
|
|
ctx.AddFarVariationDependencies(binVariations, executableTag, nativeModules.Binaries...)
|
|
|
|
ctx.AddFarVariationDependencies(binVariations, testTag, nativeModules.Tests...)
|
2020-11-19 15:00:52 +01:00
|
|
|
ctx.AddFarVariationDependencies(libVariations, jniLibTag, nativeModules.Jni_libs...)
|
|
|
|
ctx.AddFarVariationDependencies(libVariations, sharedLibTag, nativeModules.Native_shared_libs...)
|
2020-11-17 14:21:02 +01:00
|
|
|
ctx.AddFarVariationDependencies(rustLibVariations, sharedLibTag, nativeModules.Rust_dyn_libs...)
|
2021-02-15 09:54:43 +01:00
|
|
|
ctx.AddFarVariationDependencies(target.Variations(), fsTag, nativeModules.Filesystems...)
|
2020-06-05 22:14:03 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) combineProperties(ctx android.BottomUpMutatorContext) {
|
2020-11-19 15:00:52 +01:00
|
|
|
if ctx.Device() {
|
2020-11-19 06:37:47 +01:00
|
|
|
proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Android.Multilib, nil)
|
|
|
|
} else {
|
|
|
|
proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Host.Multilib, nil)
|
|
|
|
if ctx.Os().Bionic() {
|
|
|
|
proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_bionic.Multilib, nil)
|
|
|
|
} else {
|
|
|
|
proptools.AppendProperties(&a.properties.Multilib, &a.targetProperties.Target.Linux_glibc.Multilib, nil)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// getImageVariation returns the image variant name for this apexBundle. In most cases, it's simply
|
|
|
|
// android.CoreVariation, but gets complicated for the vendor APEXes and the VNDK APEX.
|
|
|
|
func (a *apexBundle) getImageVariation(ctx android.BottomUpMutatorContext) string {
|
|
|
|
deviceConfig := ctx.DeviceConfig()
|
|
|
|
if a.vndkApex {
|
|
|
|
return cc.VendorVariationPrefix + a.vndkVersion(deviceConfig)
|
|
|
|
}
|
2019-10-08 14:59:58 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var prefix string
|
|
|
|
var vndkVersion string
|
|
|
|
if deviceConfig.VndkVersion() != "" {
|
|
|
|
if proptools.Bool(a.properties.Use_vendor) {
|
|
|
|
prefix = cc.VendorVariationPrefix
|
|
|
|
vndkVersion = deviceConfig.PlatformVndkVersion()
|
|
|
|
} else if a.SocSpecific() || a.DeviceSpecific() {
|
|
|
|
prefix = cc.VendorVariationPrefix
|
|
|
|
vndkVersion = deviceConfig.VndkVersion()
|
|
|
|
} else if a.ProductSpecific() {
|
|
|
|
prefix = cc.ProductVariationPrefix
|
|
|
|
vndkVersion = deviceConfig.ProductVndkVersion()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if vndkVersion == "current" {
|
|
|
|
vndkVersion = deviceConfig.PlatformVndkVersion()
|
|
|
|
}
|
|
|
|
if vndkVersion != "" {
|
|
|
|
return prefix + vndkVersion
|
|
|
|
}
|
2020-06-05 22:14:03 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
return android.CoreVariation // The usual case
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
|
|
|
|
func (a *apexBundle) DepsMutator(ctx android.BottomUpMutatorContext) {
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): move this kind of checks to GenerateAndroidBuildActions?
|
|
|
|
checkUseVendorProperty(ctx, a)
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexBundle is a multi-arch targets module. Arch variant of apexBundle is set to 'common'.
|
|
|
|
// arch-specific targets are enabled by the compile_multilib setting of the apex bundle. For
|
|
|
|
// each target os/architectures, appropriate dependencies are selected by their
|
|
|
|
// target.<os>.multilib.<type> groups and are added as (direct) dependencies.
|
2020-11-19 06:37:47 +01:00
|
|
|
targets := ctx.MultiTargets()
|
|
|
|
config := ctx.DeviceConfig()
|
|
|
|
imageVariation := a.getImageVariation(ctx)
|
|
|
|
|
|
|
|
a.combineProperties(ctx)
|
|
|
|
|
|
|
|
has32BitTarget := false
|
|
|
|
for _, target := range targets {
|
|
|
|
if target.Arch.ArchType.Multilib == "lib32" {
|
|
|
|
has32BitTarget = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for i, target := range targets {
|
2020-11-19 15:00:52 +01:00
|
|
|
// Don't include artifacts for the host cross targets because there is no way for us
|
|
|
|
// to run those artifacts natively on host
|
2020-11-19 06:37:47 +01:00
|
|
|
if target.HostCross {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var depsList []ApexNativeDependencies
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Add native modules targeting both ABIs. When multilib.* is omitted for
|
|
|
|
// native_shared_libs/jni_libs/tests, it implies multilib.both
|
|
|
|
depsList = append(depsList, a.properties.Multilib.Both)
|
|
|
|
depsList = append(depsList, ApexNativeDependencies{
|
|
|
|
Native_shared_libs: a.properties.Native_shared_libs,
|
|
|
|
Tests: a.properties.Tests,
|
|
|
|
Jni_libs: a.properties.Jni_libs,
|
|
|
|
Binaries: nil,
|
|
|
|
})
|
|
|
|
|
|
|
|
// Add native modules targeting the first ABI When multilib.* is omitted for
|
|
|
|
// binaries, it implies multilib.first
|
2020-11-19 06:37:47 +01:00
|
|
|
isPrimaryAbi := i == 0
|
|
|
|
if isPrimaryAbi {
|
2020-11-19 15:00:52 +01:00
|
|
|
depsList = append(depsList, a.properties.Multilib.First)
|
|
|
|
depsList = append(depsList, ApexNativeDependencies{
|
|
|
|
Native_shared_libs: nil,
|
|
|
|
Tests: nil,
|
|
|
|
Jni_libs: nil,
|
|
|
|
Binaries: a.properties.Binaries,
|
|
|
|
})
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Add native modules targeting either 32-bit or 64-bit ABI
|
2020-11-19 06:37:47 +01:00
|
|
|
switch target.Arch.ArchType.Multilib {
|
|
|
|
case "lib32":
|
2020-11-19 15:00:52 +01:00
|
|
|
depsList = append(depsList, a.properties.Multilib.Lib32)
|
|
|
|
depsList = append(depsList, a.properties.Multilib.Prefer32)
|
2020-11-19 06:37:47 +01:00
|
|
|
case "lib64":
|
2020-11-19 15:00:52 +01:00
|
|
|
depsList = append(depsList, a.properties.Multilib.Lib64)
|
2020-11-19 06:37:47 +01:00
|
|
|
if !has32BitTarget {
|
2020-11-19 15:00:52 +01:00
|
|
|
depsList = append(depsList, a.properties.Multilib.Prefer32)
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
|
2020-12-14 10:44:04 +01:00
|
|
|
// Add native modules targeting a specific arch variant
|
|
|
|
switch target.Arch.ArchType {
|
|
|
|
case android.Arm:
|
|
|
|
depsList = append(depsList, a.archProperties.Arch.Arm.ApexNativeDependencies)
|
|
|
|
case android.Arm64:
|
|
|
|
depsList = append(depsList, a.archProperties.Arch.Arm64.ApexNativeDependencies)
|
|
|
|
case android.X86:
|
|
|
|
depsList = append(depsList, a.archProperties.Arch.X86.ApexNativeDependencies)
|
|
|
|
case android.X86_64:
|
|
|
|
depsList = append(depsList, a.archProperties.Arch.X86_64.ApexNativeDependencies)
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unsupported arch %v\n", ctx.Arch().ArchType))
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
for _, d := range depsList {
|
|
|
|
addDependenciesForNativeModules(ctx, d, target, imageVariation)
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// For prebuilt_etc, use the first variant (64 on 64/32bit device, 32 on 32bit device)
|
|
|
|
// regardless of the TARGET_PREFER_* setting. See b/144532908
|
2020-11-19 06:37:47 +01:00
|
|
|
archForPrebuiltEtc := config.Arches()[0]
|
|
|
|
for _, arch := range config.Arches() {
|
|
|
|
// Prefer 64-bit arch if there is any
|
|
|
|
if arch.ArchType.Multilib == "lib64" {
|
|
|
|
archForPrebuiltEtc = arch
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.AddFarVariationDependencies([]blueprint.Variation{
|
|
|
|
{Mutator: "os", Variation: ctx.Os().String()},
|
|
|
|
{Mutator: "arch", Variation: archForPrebuiltEtc.String()},
|
|
|
|
}, prebuiltTag, a.properties.Prebuilts...)
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Common-arch dependencies come next
|
|
|
|
commonVariation := ctx.Config().AndroidCommonTarget.Variations()
|
2021-01-21 19:13:43 +01:00
|
|
|
ctx.AddFarVariationDependencies(commonVariation, bootImageTag, a.properties.Boot_images...)
|
2020-11-19 15:00:52 +01:00
|
|
|
ctx.AddFarVariationDependencies(commonVariation, javaLibTag, a.properties.Java_libs...)
|
|
|
|
ctx.AddFarVariationDependencies(commonVariation, bpfTag, a.properties.Bpfs...)
|
2021-01-07 07:31:24 +01:00
|
|
|
ctx.AddFarVariationDependencies(commonVariation, fsTag, a.properties.Filesystems...)
|
2021-03-17 16:02:19 +01:00
|
|
|
ctx.AddFarVariationDependencies(commonVariation, compatConfigTag, a.properties.Compat_configs...)
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2021-01-15 19:40:04 +01:00
|
|
|
if a.artApex {
|
|
|
|
// With EMMA_INSTRUMENT_FRAMEWORK=true the ART boot image includes jacoco library.
|
|
|
|
if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT_FRAMEWORK") {
|
|
|
|
ctx.AddFarVariationDependencies(commonVariation, javaLibTag, "jacocoagent")
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Dependencies for signing
|
2020-11-19 06:37:47 +01:00
|
|
|
if String(a.properties.Key) == "" {
|
2020-11-19 15:00:52 +01:00
|
|
|
ctx.PropertyErrorf("key", "missing")
|
2020-11-19 06:37:47 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.AddDependency(ctx.Module(), keyTag, String(a.properties.Key))
|
|
|
|
|
|
|
|
cert := android.SrcIsModule(a.getCertString(ctx))
|
|
|
|
if cert != "" {
|
|
|
|
ctx.AddDependency(ctx.Module(), certificateTag, cert)
|
2020-11-19 15:00:52 +01:00
|
|
|
// empty cert is not an error. Cert and private keys will be directly found under
|
|
|
|
// PRODUCT_DEFAULT_DEV_CERTIFICATE
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Marks that this APEX (in fact all the modules in it) has to be built with the given SDKs.
|
|
|
|
// This field currently isn't used.
|
|
|
|
// TODO(jiyong): consider dropping this feature
|
2020-11-19 06:37:47 +01:00
|
|
|
// TODO(jiyong): ensure that all apexes are with non-empty uses_sdks
|
|
|
|
if len(a.properties.Uses_sdks) > 0 {
|
|
|
|
sdkRefs := []android.SdkRef{}
|
|
|
|
for _, str := range a.properties.Uses_sdks {
|
|
|
|
parsed := android.ParseSdkRef(ctx, str, "uses_sdks")
|
|
|
|
sdkRefs = append(sdkRefs, parsed)
|
|
|
|
}
|
|
|
|
a.BuildWithSdks(sdkRefs)
|
2020-06-05 22:14:03 +02:00
|
|
|
}
|
Introduce module type 'sdk'
This change introduces a new module type named 'sdk'. It is a logical
group of prebuilt modules that together provide a context (e.g. APIs)
in which Mainline modules (such as APEXes) are built.
A prebuilt module (e.g. java_import) can join an sdk by adding it to the
sdk module as shown below:
sdk {
name: "mysdk#20",
java_libs: ["myjavalib_mysdk_20"],
}
java_import {
name: "myjavalib_mysdk_20",
srcs: ["myjavalib-v20.jar"],
sdk_member_name: "myjavalib",
}
sdk {
name: "mysdk#21",
java_libs: ["myjavalib_mysdk_21"],
}
java_import {
name: "myjavalib_mysdk_21",
srcs: ["myjavalib-v21.jar"],
sdk_member_name: "myjavalib",
}
java_library {
name: "myjavalib",
srcs: ["**/*/*.java"],
}
An APEX can specify the SDK(s) that it wants to build with via the new
'uses_sdks' property.
apex {
name: "myapex",
java_libs: ["libX", "libY"],
uses_sdks: ["mysdk#20"],
}
With this, libX, libY, and their transitive dependencies are all built
with the version 20 of myjavalib (the first java_import module) instead
of the other one (which is for version 21) and java_library having the
same name (which is for ToT).
Bug: 138182343
Test: m (sdk_test.go added)
Change-Id: I7e14c524a7d6a0d9f575fb20822080f39818c01e
2019-07-17 13:08:41 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// DepsMutator for the overridden properties.
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
if a.overridableProperties.Allowed_files != nil {
|
|
|
|
android.ExtractSourceDeps(ctx, a.overridableProperties.Allowed_files)
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
|
|
|
|
commonVariation := ctx.Config().AndroidCommonTarget.Variations()
|
|
|
|
ctx.AddFarVariationDependencies(commonVariation, androidAppTag, a.overridableProperties.Apps...)
|
|
|
|
ctx.AddFarVariationDependencies(commonVariation, rroTag, a.overridableProperties.Rros...)
|
2019-10-18 09:26:59 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type ApexBundleInfo struct {
|
|
|
|
Contents *android.ApexContents
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
|
|
|
|
2020-12-08 11:34:30 +01:00
|
|
|
var ApexBundleInfoProvider = blueprint.NewMutatorProvider(ApexBundleInfo{}, "apex_info")
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-12-07 18:39:59 +01:00
|
|
|
var _ ApexInfoMutator = (*apexBundle)(nil)
|
|
|
|
|
|
|
|
// ApexInfoMutator is responsible for collecting modules that need to have apex variants. They are
|
2020-11-19 15:00:52 +01:00
|
|
|
// identified by doing a graph walk starting from an apexBundle. Basically, all the (direct and
|
|
|
|
// indirect) dependencies are collected. But a few types of modules that shouldn't be included in
|
|
|
|
// the apexBundle (e.g. stub libraries) are not collected. Note that a single module can be depended
|
|
|
|
// on by multiple apexBundles. In that case, the module is collected for all of the apexBundles.
|
2020-12-08 11:34:30 +01:00
|
|
|
//
|
|
|
|
// For each dependency between an apex and an ApexModule an ApexInfo object describing the apex
|
|
|
|
// is passed to that module's BuildForApex(ApexInfo) method which collates them all in a list.
|
|
|
|
// The apexMutator uses that list to create module variants for the apexes to which it belongs.
|
|
|
|
// The relationship between module variants and apexes is not one-to-one as variants will be
|
|
|
|
// shared between compatible apexes.
|
2020-12-07 18:39:59 +01:00
|
|
|
func (a *apexBundle) ApexInfoMutator(mctx android.TopDownMutatorContext) {
|
2020-11-19 15:00:52 +01:00
|
|
|
|
|
|
|
// The VNDK APEX is special. For the APEX, the membership is described in a very different
|
|
|
|
// way. There is no dependency from the VNDK APEX to the VNDK libraries. Instead, VNDK
|
|
|
|
// libraries are self-identified by their vndk.enabled properties. There is no need to run
|
|
|
|
// this mutator for the APEX as nothing will be collected. So, let's return fast.
|
|
|
|
if a.vndkApex {
|
apexDepsMutator is a top-down mutator
apex { name: ["myapex"], native_shared_libs: ["libX", "libY"] }
cc_library { name: "libX", shared_libs: ["libY"] }
cc_library { name: "libY", shared_libs: ["libZ"], stubs: {...} }
apexDepsMutator was a bottom up mutator and it uses WalkDeps to traverse
the dependency tree rooted at myapex in a depth-first order. While
traversing the tree, if calls BuildForApex for a module that will be
part of the APEX.
libY is visited twice. Once via libX and once via myapex. If the visit
from libX was before the visit from myapex (since this is a depth-first
traversing), BuildForApex is not called for libY and its dependency
libZ, because libY provides a stub. And then when libY is again visited
via myapex, BuildForApex is correctly called for the module, but not for
its dependencies libZ because the paths from libY to libZ was already
visited.
As a result, the apex variant of libY has a dependency to the non-apex
variant of libZ.
Fixing the problem by changing the mutator a top-down one.
Bug: 148645937
Test: m
Change-Id: Ib2cb28852087c63a568b3fd036504e9261cf0782
2020-02-11 23:53:12 +01:00
|
|
|
return
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
2020-07-22 08:54:47 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Special casing for APEXes on non-system (e.g., vendor, odm, etc.) partitions. They are
|
|
|
|
// provided with a property named use_vndk_as_stable, which when set to true doesn't collect
|
|
|
|
// VNDK libraries as transitive dependencies. This option is useful for reducing the size of
|
|
|
|
// the non-system APEXes because the VNDK libraries won't be included (and duped) in the
|
|
|
|
// APEX, but shared across APEXes via the VNDK APEX.
|
2020-07-22 08:54:47 +02:00
|
|
|
useVndk := a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && mctx.Config().EnforceProductPartitionInterface())
|
|
|
|
excludeVndkLibs := useVndk && proptools.Bool(a.properties.Use_vndk_as_stable)
|
|
|
|
if !useVndk && proptools.Bool(a.properties.Use_vndk_as_stable) {
|
|
|
|
mctx.PropertyErrorf("use_vndk_as_stable", "not supported for system/system_ext APEXes")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-09-16 03:30:11 +02:00
|
|
|
continueApexDepsWalk := func(child, parent android.Module) bool {
|
2020-07-22 08:17:19 +02:00
|
|
|
am, ok := child.(android.ApexModule)
|
|
|
|
if !ok || !am.CanHaveApexVariants() {
|
|
|
|
return false
|
|
|
|
}
|
2021-03-17 14:25:29 +01:00
|
|
|
depTag := mctx.OtherModuleDependencyTag(child)
|
|
|
|
|
|
|
|
// Check to see if the tag always requires that the child module has an apex variant for every
|
|
|
|
// apex variant of the parent module. If it does not then it is still possible for something
|
|
|
|
// else, e.g. the DepIsInSameApex(...) method to decide that a variant is required.
|
|
|
|
if required, ok := depTag.(android.AlwaysRequireApexVariantTag); ok && required.AlwaysRequireApexVariant() {
|
|
|
|
return true
|
|
|
|
}
|
2021-03-18 16:41:29 +01:00
|
|
|
if !android.IsDepInSameApex(mctx, parent, child) {
|
2020-07-22 08:17:19 +02:00
|
|
|
return false
|
|
|
|
}
|
2020-07-22 08:54:47 +02:00
|
|
|
if excludeVndkLibs {
|
|
|
|
if c, ok := child.(*cc.Module); ok && c.IsVndk() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
// By default, all the transitive dependencies are collected, unless filtered out
|
|
|
|
// above.
|
2020-09-16 03:30:11 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Records whether a certain module is included in this apexBundle via direct dependency or
|
|
|
|
// inndirect dependency.
|
|
|
|
contents := make(map[string]android.ApexMembership)
|
2020-09-16 03:30:11 +02:00
|
|
|
mctx.WalkDeps(func(child, parent android.Module) bool {
|
|
|
|
if !continueApexDepsWalk(child, parent) {
|
|
|
|
return false
|
|
|
|
}
|
2020-07-22 08:17:19 +02:00
|
|
|
// If the parent is apexBundle, this child is directly depended.
|
|
|
|
_, directDep := parent.(*apexBundle)
|
2020-11-19 15:00:52 +01:00
|
|
|
depName := mctx.OtherModuleName(child)
|
2020-09-16 03:30:11 +02:00
|
|
|
contents[depName] = contents[depName].Add(directDep)
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// The membership information is saved for later access
|
2020-11-17 17:34:22 +01:00
|
|
|
apexContents := android.NewApexContents(contents)
|
2020-09-16 03:30:11 +02:00
|
|
|
mctx.SetProvider(ApexBundleInfoProvider, ApexBundleInfo{
|
|
|
|
Contents: apexContents,
|
|
|
|
})
|
|
|
|
|
2021-01-26 03:43:46 +01:00
|
|
|
minSdkVersion := a.minSdkVersion(mctx)
|
|
|
|
// When min_sdk_version is not set, the apex is built against FutureApiLevel.
|
|
|
|
if minSdkVersion.IsNone() {
|
|
|
|
minSdkVersion = android.FutureApiLevel
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// This is the main part of this mutator. Mark the collected dependencies that they need to
|
|
|
|
// be built for this apexBundle.
|
2020-09-16 03:30:11 +02:00
|
|
|
apexInfo := android.ApexInfo{
|
|
|
|
ApexVariationName: mctx.ModuleName(),
|
2021-01-26 03:43:46 +01:00
|
|
|
MinSdkVersionStr: minSdkVersion.String(),
|
2020-09-16 03:30:11 +02:00
|
|
|
RequiredSdks: a.RequiredSdks(),
|
|
|
|
Updatable: a.Updatable(),
|
|
|
|
InApexes: []string{mctx.ModuleName()},
|
|
|
|
ApexContents: []*android.ApexContents{apexContents},
|
|
|
|
}
|
|
|
|
mctx.WalkDeps(func(child, parent android.Module) bool {
|
|
|
|
if !continueApexDepsWalk(child, parent) {
|
|
|
|
return false
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
child.(android.ApexModule).BuildForApex(apexInfo) // leave a mark!
|
2020-07-22 08:17:19 +02:00
|
|
|
return true
|
apexDepsMutator is a top-down mutator
apex { name: ["myapex"], native_shared_libs: ["libX", "libY"] }
cc_library { name: "libX", shared_libs: ["libY"] }
cc_library { name: "libY", shared_libs: ["libZ"], stubs: {...} }
apexDepsMutator was a bottom up mutator and it uses WalkDeps to traverse
the dependency tree rooted at myapex in a depth-first order. While
traversing the tree, if calls BuildForApex for a module that will be
part of the APEX.
libY is visited twice. Once via libX and once via myapex. If the visit
from libX was before the visit from myapex (since this is a depth-first
traversing), BuildForApex is not called for libY and its dependency
libZ, because libY provides a stub. And then when libY is again visited
via myapex, BuildForApex is correctly called for the module, but not for
its dependencies libZ because the paths from libY to libZ was already
visited.
As a result, the apex variant of libY has a dependency to the non-apex
variant of libZ.
Fixing the problem by changing the mutator a top-down one.
Bug: 148645937
Test: m
Change-Id: Ib2cb28852087c63a568b3fd036504e9261cf0782
2020-02-11 23:53:12 +01:00
|
|
|
})
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
|
|
|
|
2020-12-07 18:39:59 +01:00
|
|
|
type ApexInfoMutator interface {
|
|
|
|
// ApexInfoMutator implementations must call BuildForApex(ApexInfo) on any modules that are
|
|
|
|
// depended upon by an apex and which require an apex specific variant.
|
|
|
|
ApexInfoMutator(android.TopDownMutatorContext)
|
|
|
|
}
|
|
|
|
|
|
|
|
// apexInfoMutator delegates the work of identifying which modules need an ApexInfo and apex
|
|
|
|
// specific variant to modules that support the ApexInfoMutator.
|
|
|
|
func apexInfoMutator(mctx android.TopDownMutatorContext) {
|
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if a, ok := mctx.Module().(ApexInfoMutator); ok {
|
|
|
|
a.ApexInfoMutator(mctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexUniqueVariationsMutator checks if any dependencies use unique apex variations. If so, use
|
|
|
|
// unique apex variations for this module. See android/apex.go for more about unique apex variant.
|
|
|
|
// TODO(jiyong): move this to android/apex.go?
|
Reland: Deduplicate APEX variants that would build identically
APEX variants that share the same SDK version and updatability
almost always use identical command line arguments to build but
with different intermediates directories. This causes unnecessary
build time and disk space for duplicated work.
Deduplicate APEX variants that would build identically. Create
aliases from the per-APEX variations to the new shared variations
so that the APEX modules can continue to depend on them via the
APEX name as the variation.
This has one significant change in behavior. Before this change,
if an APEX had two libraries in its direct dependencies and one
of those libraries depended on the other, and the second library
had stubs, then the first library would depend on the implementation
of the second library and not the stubs. After this change, if
the first library is also present in a second APEX but the second
library is not, then the common variant shared between the two
APEXes would use the stubs, not the implementation.
In a correctly configured set of build rules this change will
be irrelevant, because if the compilation worked for the second
APEX using stubs then it will work for the common variant using
stubs. However, if an incorrect change to the build rules is
made this could lead to confusing errors, as a previously-working
common variant could suddenly stop building when a module is added
to a new APEX without its dependencies that require implementation
APIs to compile.
This change reduces the number of modules in an AOSP arm64-userdebug
build by 3% (52242 to 50586), reduces the number of variants of the
libcutils module from 74 to 53, and reduces the number of variants
of the massive libart[d] modules from 44 to 32.
This relands I0529837476a253c32b3dfb98dcccf107427c742c with a fix
to always mark permissions XML files of java_sdk_library modules as
unique per apex since they contain the APEX filename, and a fix
to UpdateUniqueApexVariationsForDeps to check ApexInfo.InApexes
instead of DepIsInSameApex to check if two modules are in the same
apex to account for a module that depends on another in a way that
doesn't normally include the dependency in the APEX (e.g. a libs
property), but the dependency is directly included in the APEX.
Bug: 164216768
Test: go test ./build/soong/apex/...
Change-Id: I2ae170601f764e5b88d0be2e0e6adc84e3a4d9cc
2020-08-11 21:17:01 +02:00
|
|
|
func apexUniqueVariationsMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if am, ok := mctx.Module().(android.ApexModule); ok {
|
2020-09-16 03:30:11 +02:00
|
|
|
android.UpdateUniqueApexVariationsForDeps(mctx, am)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexTestForDepsMutator checks if this module is a test for an apex. If so, add a dependency on
|
|
|
|
// the apex in order to retrieve its contents later.
|
|
|
|
// TODO(jiyong): move this to android/apex.go?
|
2020-09-16 03:30:11 +02:00
|
|
|
func apexTestForDepsMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if am, ok := mctx.Module().(android.ApexModule); ok {
|
|
|
|
if testFor := am.TestFor(); len(testFor) > 0 {
|
|
|
|
mctx.AddFarVariationDependencies([]blueprint.Variation{
|
|
|
|
{Mutator: "os", Variation: am.Target().OsVariation()},
|
|
|
|
{"arch", "common"},
|
|
|
|
}, testForTag, testFor...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): move this to android/apex.go?
|
2020-09-16 03:30:11 +02:00
|
|
|
func apexTestForMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, ok := mctx.Module().(android.ApexModule); ok {
|
|
|
|
var contents []*android.ApexContents
|
|
|
|
for _, testFor := range mctx.GetDirectDepsWithTag(testForTag) {
|
|
|
|
abInfo := mctx.OtherModuleProvider(testFor, ApexBundleInfoProvider).(ApexBundleInfo)
|
|
|
|
contents = append(contents, abInfo.Contents)
|
|
|
|
}
|
|
|
|
mctx.SetProvider(android.ApexTestForInfoProvider, android.ApexTestForInfo{
|
|
|
|
ApexContents: contents,
|
|
|
|
})
|
Reland: Deduplicate APEX variants that would build identically
APEX variants that share the same SDK version and updatability
almost always use identical command line arguments to build but
with different intermediates directories. This causes unnecessary
build time and disk space for duplicated work.
Deduplicate APEX variants that would build identically. Create
aliases from the per-APEX variations to the new shared variations
so that the APEX modules can continue to depend on them via the
APEX name as the variation.
This has one significant change in behavior. Before this change,
if an APEX had two libraries in its direct dependencies and one
of those libraries depended on the other, and the second library
had stubs, then the first library would depend on the implementation
of the second library and not the stubs. After this change, if
the first library is also present in a second APEX but the second
library is not, then the common variant shared between the two
APEXes would use the stubs, not the implementation.
In a correctly configured set of build rules this change will
be irrelevant, because if the compilation worked for the second
APEX using stubs then it will work for the common variant using
stubs. However, if an incorrect change to the build rules is
made this could lead to confusing errors, as a previously-working
common variant could suddenly stop building when a module is added
to a new APEX without its dependencies that require implementation
APIs to compile.
This change reduces the number of modules in an AOSP arm64-userdebug
build by 3% (52242 to 50586), reduces the number of variants of the
libcutils module from 74 to 53, and reduces the number of variants
of the massive libart[d] modules from 44 to 32.
This relands I0529837476a253c32b3dfb98dcccf107427c742c with a fix
to always mark permissions XML files of java_sdk_library modules as
unique per apex since they contain the APEX filename, and a fix
to UpdateUniqueApexVariationsForDeps to check ApexInfo.InApexes
instead of DepIsInSameApex to check if two modules are in the same
apex to account for a module that depends on another in a way that
doesn't normally include the dependency in the APEX (e.g. a libs
property), but the dependency is directly included in the APEX.
Bug: 164216768
Test: go test ./build/soong/apex/...
Change-Id: I2ae170601f764e5b88d0be2e0e6adc84e3a4d9cc
2020-08-11 21:17:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// markPlatformAvailability marks whether or not a module can be available to platform. A module
|
|
|
|
// cannot be available to platform if 1) it is explicitly marked as not available (i.e.
|
|
|
|
// "//apex_available:platform" is absent) or 2) it depends on another module that isn't (or can't
|
|
|
|
// be) available to platform
|
|
|
|
// TODO(jiyong): move this to android/apex.go?
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
func markPlatformAvailability(mctx android.BottomUpMutatorContext) {
|
|
|
|
// Host and recovery are not considered as platform
|
|
|
|
if mctx.Host() || mctx.Module().InstallInRecovery() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
am, ok := mctx.Module().(android.ApexModule)
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
availableToPlatform := am.AvailableFor(android.AvailableToPlatform)
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// If any of the dep is not available to platform, this module is also considered as being
|
|
|
|
// not available to platform even if it has "//apex_available:platform"
|
|
|
|
mctx.VisitDirectDeps(func(child android.Module) {
|
2021-03-18 16:41:29 +01:00
|
|
|
if !android.IsDepInSameApex(mctx, am, child) {
|
2020-11-19 15:00:52 +01:00
|
|
|
// if the dependency crosses apex boundary, don't consider it
|
|
|
|
return
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
if dep, ok := child.(android.ApexModule); ok && dep.NotAvailableForPlatform() {
|
|
|
|
availableToPlatform = false
|
|
|
|
// TODO(b/154889534) trigger an error when 'am' has
|
|
|
|
// "//apex_available:platform"
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
// Exception 1: stub libraries and native bridge libraries are always available to platform
|
|
|
|
if cc, ok := mctx.Module().(*cc.Module); ok &&
|
|
|
|
(cc.IsStubs() || cc.Target().NativeBridge == android.NativeBridgeEnabled) {
|
|
|
|
availableToPlatform = true
|
mark platform un-availability
A module is marked unavailable for platform when 1) it does not have
"//apex_available:platform" in its apex_available property, or 2)
it depends on another module that is unavailable for platform.
In that case, LOCAL_NOT_AVAILABLE_FOR_PLATFORM is set to true for the
module in the Make world. Later, that flag is used to ensure that there
is no module with the flag is installed to the device.
The reason why this isn't entirely done in Soong is because Soong
doesn't know if a module will be installed to the device or not. To
explain this, let's have an example.
cc_test { name: "mytest", static_libs: ["libfoo"]}
cc_library_static { name: "libfoo", static_libs: ["libbar"]}
cc_library { name: "libbar", apex_available: ["com.android.xxx"]}
Here, libbar is not available for platform, but is used by libfoo which
is available for platform (apex_available defaults to
"//apex_available:platform"). libfoo is again depended on by mytest
which again is available for platform. The use of libbar should be
allowed in the context of test; we don't want to make libbar available
to platform just for the dependency from test because it will allow
non-test uses of the library as well.
Soong by itself can't tell whether libfoo and libbar are used only in the
context of a test. There could be another module depending them, e.g.,
cc_library_shared { name: "mylib", static_libs: ["libfoo"] }
can exist and it might be installed to the device, in which case
we really should trigger an error.
Since Make has the knowledge of what's installed and what's not,
the check should be done there.
Bug: 153073816
Test: m
Test: remove "//apex_available:platform" from libmdnssd (it is currently
installed to /system/lib), and check that `m system_image` fails
Change-Id: Ia304cc5f41f173229e8a154e90cea4dce46dcebe
2020-04-07 09:37:39 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Exception 2: bootstrap bionic libraries are also always available to platform
|
|
|
|
if cc.InstallToBootstrap(mctx.ModuleName(), mctx.Config()) {
|
|
|
|
availableToPlatform = true
|
2020-03-31 16:23:40 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
if !availableToPlatform {
|
|
|
|
am.SetNotAvailableForPlatform()
|
|
|
|
}
|
2020-03-31 16:23:40 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexMutator visits each module and creates apex variations if the module was marked in the
|
2020-12-08 11:34:30 +01:00
|
|
|
// previous run of apexInfoMutator.
|
2018-10-10 07:01:00 +02:00
|
|
|
func apexMutator(mctx android.BottomUpMutatorContext) {
|
2020-04-17 06:43:10 +02:00
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
2020-09-16 03:30:11 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// This is the usual path.
|
2018-10-10 07:01:00 +02:00
|
|
|
if am, ok := mctx.Module().(android.ApexModule); ok && am.CanHaveApexVariants() {
|
2020-09-16 03:30:11 +02:00
|
|
|
android.CreateApexVariations(mctx, am)
|
2020-11-19 15:00:52 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// apexBundle itself is mutated so that it and its dependencies have the same apex variant.
|
|
|
|
// TODO(jiyong): document the reason why the VNDK APEX is an exception here.
|
|
|
|
if a, ok := mctx.Module().(*apexBundle); ok && !a.vndkApex {
|
2018-10-10 07:01:00 +02:00
|
|
|
apexBundleName := mctx.ModuleName()
|
|
|
|
mctx.CreateVariations(apexBundleName)
|
2019-11-15 10:40:32 +01:00
|
|
|
} else if o, ok := mctx.Module().(*OverrideApex); ok {
|
|
|
|
apexBundleName := o.GetOverriddenModuleName()
|
|
|
|
if apexBundleName == "" {
|
|
|
|
mctx.ModuleErrorf("base property is not set")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
mctx.CreateVariations(apexBundleName)
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
|
|
|
}
|
2019-09-06 10:37:42 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// See android.UpdateDirectlyInAnyApex
|
|
|
|
// TODO(jiyong): move this to android/apex.go?
|
2020-09-16 03:30:11 +02:00
|
|
|
func apexDirectlyInAnyMutator(mctx android.BottomUpMutatorContext) {
|
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if am, ok := mctx.Module().(android.ApexModule); ok {
|
|
|
|
android.UpdateDirectlyInAnyApex(mctx, am)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexPackaging represents a specific packaging method for an APEX.
|
2020-11-19 06:37:47 +01:00
|
|
|
type apexPackaging int
|
|
|
|
|
|
|
|
const (
|
2020-11-19 15:00:52 +01:00
|
|
|
// imageApex is a packaging method where contents are included in a filesystem image which
|
|
|
|
// is then included in a zip container. This is the most typical way of packaging.
|
2020-11-19 06:37:47 +01:00
|
|
|
imageApex apexPackaging = iota
|
2020-11-19 15:00:52 +01:00
|
|
|
|
|
|
|
// zipApex is a packaging method where contents are directly included in the zip container.
|
|
|
|
// This is used for host-side testing - because the contents are easily accessible by
|
|
|
|
// unzipping the container.
|
2020-11-19 06:37:47 +01:00
|
|
|
zipApex
|
2020-11-19 15:00:52 +01:00
|
|
|
|
|
|
|
// flattendApex is a packaging method where contents are not included in the APEX file, but
|
|
|
|
// installed to /apex/<apexname> directory on the device. This packaging method is used for
|
|
|
|
// old devices where the filesystem-based APEX file can't be supported.
|
2020-11-19 06:37:47 +01:00
|
|
|
flattenedApex
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2020-11-19 15:00:52 +01:00
|
|
|
// File extensions of an APEX for different packaging methods
|
2020-11-19 06:37:47 +01:00
|
|
|
imageApexSuffix = ".apex"
|
|
|
|
zipApexSuffix = ".zipapex"
|
|
|
|
flattenedSuffix = ".flattened"
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// variant names each of which is for a packaging method
|
2020-11-19 06:37:47 +01:00
|
|
|
imageApexType = "image"
|
|
|
|
zipApexType = "zip"
|
|
|
|
flattenedApexType = "flattened"
|
|
|
|
|
|
|
|
ext4FsType = "ext4"
|
|
|
|
f2fsFsType = "f2fs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// The suffix for the output "file", not the module
|
|
|
|
func (a apexPackaging) suffix() string {
|
|
|
|
switch a {
|
|
|
|
case imageApex:
|
|
|
|
return imageApexSuffix
|
|
|
|
case zipApex:
|
|
|
|
return zipApexSuffix
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unknown APEX type %d", a))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a apexPackaging) name() string {
|
|
|
|
switch a {
|
|
|
|
case imageApex:
|
|
|
|
return imageApexType
|
|
|
|
case zipApex:
|
|
|
|
return zipApexType
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unknown APEX type %d", a))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexFlattenedMutator creates one or more variations each of which is for a packaging method.
|
|
|
|
// TODO(jiyong): give a better name to this mutator
|
2019-09-06 10:37:42 +02:00
|
|
|
func apexFlattenedMutator(mctx android.BottomUpMutatorContext) {
|
2020-04-17 06:43:10 +02:00
|
|
|
if !mctx.Module().Enabled() {
|
|
|
|
return
|
|
|
|
}
|
2019-09-17 06:50:45 +02:00
|
|
|
if ab, ok := mctx.Module().(*apexBundle); ok {
|
2019-10-22 06:58:29 +02:00
|
|
|
var variants []string
|
|
|
|
switch proptools.StringDefault(ab.properties.Payload_type, "image") {
|
|
|
|
case "image":
|
2020-11-19 15:00:52 +01:00
|
|
|
// This is the normal case. Note that both image and flattend APEXes are
|
|
|
|
// created. The image type is installed to the system partition, while the
|
|
|
|
// flattened APEX is (optionally) installed to the system_ext partition.
|
|
|
|
// This is mostly for GSI which has to support wide range of devices. If GSI
|
|
|
|
// is installed on a newer (APEX-capable) device, the image APEX in the
|
|
|
|
// system will be used. However, if the same GSI is installed on an old
|
|
|
|
// device which can't support image APEX, the flattened APEX in the
|
|
|
|
// system_ext partion (which still is part of GSI) is used instead.
|
2019-10-22 06:58:29 +02:00
|
|
|
variants = append(variants, imageApexType, flattenedApexType)
|
|
|
|
case "zip":
|
|
|
|
variants = append(variants, zipApexType)
|
|
|
|
case "both":
|
|
|
|
variants = append(variants, imageApexType, zipApexType, flattenedApexType)
|
|
|
|
default:
|
2020-11-19 15:00:52 +01:00
|
|
|
mctx.PropertyErrorf("payload_type", "%q is not one of \"image\", \"zip\", or \"both\".", *ab.properties.Payload_type)
|
2019-10-22 06:58:29 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
modules := mctx.CreateLocalVariations(variants...)
|
|
|
|
|
|
|
|
for i, v := range variants {
|
|
|
|
switch v {
|
|
|
|
case imageApexType:
|
|
|
|
modules[i].(*apexBundle).properties.ApexType = imageApex
|
|
|
|
case zipApexType:
|
|
|
|
modules[i].(*apexBundle).properties.ApexType = zipApex
|
|
|
|
case flattenedApexType:
|
|
|
|
modules[i].(*apexBundle).properties.ApexType = flattenedApex
|
2020-11-19 15:00:52 +01:00
|
|
|
// See the comment above for why system_ext.
|
2019-11-19 17:49:42 +01:00
|
|
|
if !mctx.Config().FlattenApex() && ab.Platform() {
|
2019-10-08 12:34:03 +02:00
|
|
|
modules[i].(*apexBundle).MakeAsSystemExt()
|
|
|
|
}
|
2019-10-22 06:58:29 +02:00
|
|
|
}
|
2019-09-06 10:37:42 +02:00
|
|
|
}
|
2019-11-15 10:40:32 +01:00
|
|
|
} else if _, ok := mctx.Module().(*OverrideApex); ok {
|
2020-11-19 15:00:52 +01:00
|
|
|
// payload_type is forcibly overridden to "image"
|
|
|
|
// TODO(jiyong): is this the right decision?
|
2019-11-15 10:40:32 +01:00
|
|
|
mctx.CreateVariations(imageApexType, flattenedApexType)
|
2019-09-06 10:37:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// checkUseVendorProperty checks if the use of `use_vendor` property is allowed for the given APEX.
|
|
|
|
// When use_vendor is used, native modules are built with __ANDROID_VNDK__ and __ANDROID_APEX__,
|
|
|
|
// which may cause compatibility issues. (e.g. libbinder) Even though libbinder restricts its
|
|
|
|
// availability via 'apex_available' property and relies on yet another macro
|
|
|
|
// __ANDROID_APEX_<NAME>__, we restrict usage of "use_vendor:" from other APEX modules to avoid
|
|
|
|
// similar problems.
|
|
|
|
func checkUseVendorProperty(ctx android.BottomUpMutatorContext, a *apexBundle) {
|
|
|
|
if proptools.Bool(a.properties.Use_vendor) && !android.InList(a.Name(), useVendorAllowList(ctx.Config())) {
|
|
|
|
ctx.PropertyErrorf("use_vendor", "not allowed to set use_vendor: true")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-31 19:14:38 +01:00
|
|
|
var (
|
2020-06-11 20:32:11 +02:00
|
|
|
useVendorAllowListKey = android.NewOnceKey("useVendorAllowList")
|
2019-10-31 19:14:38 +01:00
|
|
|
)
|
|
|
|
|
2020-06-11 20:32:11 +02:00
|
|
|
func useVendorAllowList(config android.Config) []string {
|
|
|
|
return config.Once(useVendorAllowListKey, func() interface{} {
|
2019-10-31 19:14:38 +01:00
|
|
|
return []string{
|
|
|
|
// swcodec uses "vendor" variants for smaller size
|
|
|
|
"com.android.media.swcodec",
|
|
|
|
"test_com.android.media.swcodec",
|
|
|
|
}
|
|
|
|
}).([]string)
|
|
|
|
}
|
|
|
|
|
2021-03-08 12:28:25 +01:00
|
|
|
// setUseVendorAllowListForTest returns a FixturePreparer that overrides useVendorAllowList and
|
|
|
|
// must be called before the first call to useVendorAllowList()
|
|
|
|
func setUseVendorAllowListForTest(allowList []string) android.FixturePreparer {
|
|
|
|
return android.FixtureModifyConfig(func(config android.Config) {
|
|
|
|
config.Once(useVendorAllowListKey, func() interface{} {
|
|
|
|
return allowList
|
|
|
|
})
|
2019-10-31 19:14:38 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var _ android.DepIsInSameApex = (*apexBundle)(nil)
|
2019-08-23 04:17:39 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Implements android.DepInInSameApex
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
|
|
|
|
// direct deps of an APEX bundle are all part of the APEX bundle
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): shouldn't we look into the payload field of the dependencyTag?
|
2020-11-19 06:37:47 +01:00
|
|
|
return true
|
2019-01-30 03:07:33 +01:00
|
|
|
}
|
2019-08-23 04:17:39 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var _ android.OutputFileProducer = (*apexBundle)(nil)
|
2019-01-30 03:07:33 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Implements android.OutputFileProducer
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) OutputFiles(tag string) (android.Paths, error) {
|
|
|
|
switch tag {
|
2020-11-25 17:37:46 +01:00
|
|
|
case "", android.DefaultDistTag:
|
|
|
|
// This is the default dist path.
|
2020-11-19 06:37:47 +01:00
|
|
|
return android.Paths{a.outputFile}, nil
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("unsupported module reference tag %q", tag)
|
|
|
|
}
|
|
|
|
}
|
2019-01-30 03:07:33 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
var _ cc.Coverage = (*apexBundle)(nil)
|
|
|
|
|
|
|
|
// Implements cc.Coverage
|
|
|
|
func (a *apexBundle) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool {
|
|
|
|
return ctx.Device() && ctx.DeviceConfig().NativeCoverageEnabled()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implements cc.Coverage
|
|
|
|
func (a *apexBundle) PreventInstall() {
|
|
|
|
a.properties.PreventInstall = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implements cc.Coverage
|
|
|
|
func (a *apexBundle) HideFromMake() {
|
|
|
|
a.properties.HideFromMake = true
|
2020-12-18 03:22:34 +01:00
|
|
|
// This HideFromMake is shadowing the ModuleBase one, call through to it for now.
|
|
|
|
// TODO(ccross): untangle these
|
|
|
|
a.ModuleBase.HideFromMake()
|
2020-11-19 15:00:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Implements cc.Coverage
|
|
|
|
func (a *apexBundle) MarkAsCoverageVariant(coverage bool) {
|
|
|
|
a.properties.IsCoverageVariant = coverage
|
|
|
|
}
|
|
|
|
|
|
|
|
// Implements cc.Coverage
|
|
|
|
func (a *apexBundle) EnableCoverageIfNeeded() {}
|
|
|
|
|
|
|
|
var _ android.ApexBundleDepsInfoIntf = (*apexBundle)(nil)
|
|
|
|
|
|
|
|
// Implements android.ApexBudleDepsInfoIntf
|
|
|
|
func (a *apexBundle) Updatable() bool {
|
2021-02-16 12:40:16 +01:00
|
|
|
return proptools.BoolDefault(a.properties.Updatable, true)
|
2020-11-19 15:00:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// getCertString returns the name of the cert that should be used to sign this APEX. This is
|
|
|
|
// basically from the "certificate" property, but could be overridden by the device config.
|
|
|
|
func (a *apexBundle) getCertString(ctx android.BaseModuleContext) string {
|
|
|
|
moduleName := ctx.ModuleName()
|
|
|
|
// VNDK APEXes share the same certificate. To avoid adding a new VNDK version to the
|
|
|
|
// OVERRIDE_* list, we check with the pseudo module name to see if its certificate is
|
|
|
|
// overridden.
|
|
|
|
if a.vndkApex {
|
|
|
|
moduleName = vndkApexName
|
|
|
|
}
|
|
|
|
certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(moduleName)
|
|
|
|
if overridden {
|
|
|
|
return ":" + certificate
|
|
|
|
}
|
|
|
|
return String(a.properties.Certificate)
|
|
|
|
}
|
|
|
|
|
|
|
|
// See the installable property
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) installable() bool {
|
|
|
|
return !a.properties.PreventInstall && (a.properties.Installable == nil || proptools.Bool(a.properties.Installable))
|
|
|
|
}
|
2019-01-30 03:07:33 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// See the test_only_no_hashtree property
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) testOnlyShouldSkipHashtreeGeneration() bool {
|
|
|
|
return proptools.Bool(a.properties.Test_only_no_hashtree)
|
|
|
|
}
|
2019-01-30 03:07:33 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// See the test_only_unsigned_payload property
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) testOnlyShouldSkipPayloadSign() bool {
|
|
|
|
return proptools.Bool(a.properties.Test_only_unsigned_payload)
|
2019-01-30 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
2020-12-22 11:47:50 +01:00
|
|
|
// See the test_only_force_compression property
|
|
|
|
func (a *apexBundle) testOnlyShouldForceCompression() bool {
|
|
|
|
return proptools.Bool(a.properties.Test_only_force_compression)
|
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// These functions are interfacing with cc/sanitizer.go. The entire APEX (along with all of its
|
|
|
|
// members) can be sanitized, either forcibly, or by the global configuration. For some of the
|
|
|
|
// sanitizers, extra dependencies can be forcibly added as well.
|
2019-02-07 18:53:06 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) EnableSanitizer(sanitizerName string) {
|
|
|
|
if !android.InList(sanitizerName, a.properties.SanitizerNames) {
|
|
|
|
a.properties.SanitizerNames = append(a.properties.SanitizerNames, sanitizerName)
|
|
|
|
}
|
|
|
|
}
|
2019-03-18 06:26:32 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) IsSanitizerEnabled(ctx android.BaseModuleContext, sanitizerName string) bool {
|
|
|
|
if android.InList(sanitizerName, a.properties.SanitizerNames) {
|
|
|
|
return true
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// Then follow the global setting
|
|
|
|
globalSanitizerNames := []string{}
|
|
|
|
if a.Host() {
|
|
|
|
globalSanitizerNames = ctx.Config().SanitizeHost()
|
|
|
|
} else {
|
|
|
|
arches := ctx.Config().SanitizeDeviceArch()
|
|
|
|
if len(arches) == 0 || android.InList(a.Arch().ArchType.Name, arches) {
|
|
|
|
globalSanitizerNames = ctx.Config().SanitizeDevice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return android.InList(sanitizerName, globalSanitizerNames)
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) AddSanitizerDependencies(ctx android.BottomUpMutatorContext, sanitizerName string) {
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): move this info (the sanitizer name, the lib name, etc.) to cc/sanitize.go
|
|
|
|
// Keep only the mechanism here.
|
2020-11-19 06:37:47 +01:00
|
|
|
if ctx.Device() && sanitizerName == "hwaddress" && strings.HasPrefix(a.Name(), "com.android.runtime") {
|
2020-11-19 15:00:52 +01:00
|
|
|
imageVariation := a.getImageVariation(ctx)
|
2020-11-19 06:37:47 +01:00
|
|
|
for _, target := range ctx.MultiTargets() {
|
|
|
|
if target.Arch.ArchType.Multilib == "lib64" {
|
2020-11-19 15:00:52 +01:00
|
|
|
addDependenciesForNativeModules(ctx, ApexNativeDependencies{
|
|
|
|
Native_shared_libs: []string{"libclang_rt.hwasan-aarch64-android"},
|
|
|
|
Tests: nil,
|
|
|
|
Jni_libs: nil,
|
|
|
|
Binaries: nil,
|
|
|
|
}, target, imageVariation)
|
2020-11-19 06:37:47 +01:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apexFileFor<Type> functions below create an apexFile struct for a given Soong module. The
|
|
|
|
// returned apexFile saves information about the Soong module that will be used for creating the
|
|
|
|
// build rules.
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForNativeLibrary(ctx android.BaseModuleContext, ccMod *cc.Module, handleSpecialLibs bool) apexFile {
|
2020-11-19 15:00:52 +01:00
|
|
|
// Decide the APEX-local directory by the multilib of the library In the future, we may
|
|
|
|
// query this to the module.
|
|
|
|
// TODO(jiyong): use the new PackagingSpec
|
2020-11-19 06:37:47 +01:00
|
|
|
var dirInApex string
|
|
|
|
switch ccMod.Arch().ArchType.Multilib {
|
|
|
|
case "lib32":
|
|
|
|
dirInApex = "lib"
|
|
|
|
case "lib64":
|
|
|
|
dirInApex = "lib64"
|
|
|
|
}
|
|
|
|
if ccMod.Target().NativeBridge == android.NativeBridgeEnabled {
|
|
|
|
dirInApex = filepath.Join(dirInApex, ccMod.Target().NativeBridgeRelativePath)
|
|
|
|
}
|
|
|
|
dirInApex = filepath.Join(dirInApex, ccMod.RelativeInstallPath())
|
|
|
|
if handleSpecialLibs && cc.InstallToBootstrap(ccMod.BaseModuleName(), ctx.Config()) {
|
2020-11-19 15:00:52 +01:00
|
|
|
// Special case for Bionic libs and other libs installed with them. This is to
|
|
|
|
// prevent those libs from being included in the search path
|
|
|
|
// /apex/com.android.runtime/${LIB}. This exclusion is required because those libs
|
|
|
|
// in the Runtime APEX are available via the legacy paths in /system/lib/. By the
|
|
|
|
// init process, the libs in the APEX are bind-mounted to the legacy paths and thus
|
|
|
|
// will be loaded into the default linker namespace (aka "platform" namespace). If
|
|
|
|
// the libs are directly in /apex/com.android.runtime/${LIB} then the same libs will
|
|
|
|
// be loaded again into the runtime linker namespace, which will result in double
|
|
|
|
// loading of them, which isn't supported.
|
2020-11-19 06:37:47 +01:00
|
|
|
dirInApex = filepath.Join(dirInApex, "bionic")
|
|
|
|
}
|
2018-12-19 09:12:36 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
fileToCopy := ccMod.OutputFile().Path()
|
|
|
|
androidMkModuleName := ccMod.BaseModuleName() + ccMod.Properties.SubName
|
|
|
|
return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, ccMod)
|
|
|
|
}
|
2019-01-30 03:31:59 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForExecutable(ctx android.BaseModuleContext, cc *cc.Module) apexFile {
|
|
|
|
dirInApex := "bin"
|
|
|
|
if cc.Target().NativeBridge == android.NativeBridgeEnabled {
|
|
|
|
dirInApex = filepath.Join(dirInApex, cc.Target().NativeBridgeRelativePath)
|
|
|
|
}
|
|
|
|
dirInApex = filepath.Join(dirInApex, cc.RelativeInstallPath())
|
|
|
|
fileToCopy := cc.OutputFile().Path()
|
|
|
|
androidMkModuleName := cc.BaseModuleName() + cc.Properties.SubName
|
|
|
|
af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, cc)
|
|
|
|
af.symlinks = cc.Symlinks()
|
|
|
|
af.dataPaths = cc.DataPaths()
|
|
|
|
return af
|
|
|
|
}
|
2019-02-09 03:50:56 +01:00
|
|
|
|
2020-11-17 14:21:02 +01:00
|
|
|
func apexFileForRustExecutable(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
|
|
|
|
dirInApex := "bin"
|
|
|
|
if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
|
|
|
|
dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
|
|
|
|
}
|
|
|
|
fileToCopy := rustm.OutputFile().Path()
|
|
|
|
androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
|
|
|
|
af := newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeExecutable, rustm)
|
|
|
|
return af
|
|
|
|
}
|
|
|
|
|
|
|
|
func apexFileForRustLibrary(ctx android.BaseModuleContext, rustm *rust.Module) apexFile {
|
|
|
|
// Decide the APEX-local directory by the multilib of the library
|
|
|
|
// In the future, we may query this to the module.
|
|
|
|
var dirInApex string
|
|
|
|
switch rustm.Arch().ArchType.Multilib {
|
|
|
|
case "lib32":
|
|
|
|
dirInApex = "lib"
|
|
|
|
case "lib64":
|
|
|
|
dirInApex = "lib64"
|
|
|
|
}
|
|
|
|
if rustm.Target().NativeBridge == android.NativeBridgeEnabled {
|
|
|
|
dirInApex = filepath.Join(dirInApex, rustm.Target().NativeBridgeRelativePath)
|
|
|
|
}
|
|
|
|
fileToCopy := rustm.OutputFile().Path()
|
|
|
|
androidMkModuleName := rustm.BaseModuleName() + rustm.Properties.SubName
|
|
|
|
return newApexFile(ctx, fileToCopy, androidMkModuleName, dirInApex, nativeSharedLib, rustm)
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForPyBinary(ctx android.BaseModuleContext, py *python.Module) apexFile {
|
|
|
|
dirInApex := "bin"
|
|
|
|
fileToCopy := py.HostToolPath().Path()
|
|
|
|
return newApexFile(ctx, fileToCopy, py.BaseModuleName(), dirInApex, pyBinary, py)
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForGoBinary(ctx android.BaseModuleContext, depName string, gb bootstrap.GoBinaryTool) apexFile {
|
|
|
|
dirInApex := "bin"
|
|
|
|
s, err := filepath.Rel(android.PathForOutput(ctx).String(), gb.InstallPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.ModuleErrorf("Unable to use compiled binary at %s", gb.InstallPath())
|
|
|
|
return apexFile{}
|
|
|
|
}
|
|
|
|
fileToCopy := android.PathForOutput(ctx, s)
|
|
|
|
// NB: Since go binaries are static we don't need the module for anything here, which is
|
|
|
|
// good since the go tool is a blueprint.Module not an android.Module like we would
|
|
|
|
// normally use.
|
|
|
|
return newApexFile(ctx, fileToCopy, depName, dirInApex, goBinary, nil)
|
|
|
|
}
|
2019-06-27 04:30:33 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForShBinary(ctx android.BaseModuleContext, sh *sh.ShBinary) apexFile {
|
|
|
|
dirInApex := filepath.Join("bin", sh.SubDir())
|
|
|
|
fileToCopy := sh.OutputFile()
|
|
|
|
af := newApexFile(ctx, fileToCopy, sh.BaseModuleName(), dirInApex, shBinary, sh)
|
|
|
|
af.symlinks = sh.Symlinks()
|
|
|
|
return af
|
|
|
|
}
|
2019-08-09 07:44:36 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
func apexFileForPrebuiltEtc(ctx android.BaseModuleContext, prebuilt prebuilt_etc.PrebuiltEtcModule, depName string) apexFile {
|
|
|
|
dirInApex := filepath.Join(prebuilt.BaseDir(), prebuilt.SubDir())
|
|
|
|
fileToCopy := prebuilt.OutputFile()
|
|
|
|
return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, prebuilt)
|
|
|
|
}
|
|
|
|
|
|
|
|
func apexFileForCompatConfig(ctx android.BaseModuleContext, config java.PlatformCompatConfigIntf, depName string) apexFile {
|
|
|
|
dirInApex := filepath.Join("etc", config.SubDir())
|
|
|
|
fileToCopy := config.CompatConfig()
|
|
|
|
return newApexFile(ctx, fileToCopy, depName, dirInApex, etc, config)
|
|
|
|
}
|
|
|
|
|
|
|
|
// javaModule is an interface to handle all Java modules (java_library, dex_import, etc) in the same
|
|
|
|
// way.
|
2020-11-19 06:37:47 +01:00
|
|
|
type javaModule interface {
|
|
|
|
android.Module
|
|
|
|
BaseModuleName() string
|
|
|
|
DexJarBuildPath() android.Path
|
|
|
|
JacocoReportClassesFile() android.Path
|
|
|
|
LintDepSets() java.LintDepSets
|
|
|
|
Stem() string
|
|
|
|
}
|
2019-09-17 06:50:45 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
var _ javaModule = (*java.Library)(nil)
|
2021-01-11 19:58:54 +01:00
|
|
|
var _ javaModule = (*java.Import)(nil)
|
2020-11-19 06:37:47 +01:00
|
|
|
var _ javaModule = (*java.SdkLibrary)(nil)
|
|
|
|
var _ javaModule = (*java.DexImport)(nil)
|
|
|
|
var _ javaModule = (*java.SdkLibraryImport)(nil)
|
2019-11-15 10:40:32 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
func apexFileForJavaModule(ctx android.BaseModuleContext, module javaModule) apexFile {
|
2020-11-19 06:37:47 +01:00
|
|
|
dirInApex := "javalib"
|
|
|
|
fileToCopy := module.DexJarBuildPath()
|
|
|
|
af := newApexFile(ctx, fileToCopy, module.BaseModuleName(), dirInApex, javaSharedLib, module)
|
|
|
|
af.jacocoReportClassesFile = module.JacocoReportClassesFile()
|
|
|
|
af.lintDepSets = module.LintDepSets()
|
2020-11-19 15:00:52 +01:00
|
|
|
af.customStem = module.Stem() + ".jar"
|
2020-11-19 06:37:47 +01:00
|
|
|
return af
|
|
|
|
}
|
2019-11-12 05:03:50 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// androidApp is an interface to handle all app modules (android_app, android_app_import, etc.) in
|
|
|
|
// the same way.
|
|
|
|
type androidApp interface {
|
2020-11-19 06:37:47 +01:00
|
|
|
android.Module
|
|
|
|
Privileged() bool
|
|
|
|
InstallApkName() string
|
|
|
|
OutputFile() android.Path
|
|
|
|
JacocoReportClassesFile() android.Path
|
|
|
|
Certificate() java.Certificate
|
|
|
|
BaseModuleName() string
|
2020-11-19 15:00:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ androidApp = (*java.AndroidApp)(nil)
|
|
|
|
var _ androidApp = (*java.AndroidAppImport)(nil)
|
|
|
|
|
|
|
|
func apexFileForAndroidApp(ctx android.BaseModuleContext, aapp androidApp) apexFile {
|
2020-11-19 06:37:47 +01:00
|
|
|
appDir := "app"
|
|
|
|
if aapp.Privileged() {
|
|
|
|
appDir = "priv-app"
|
|
|
|
}
|
|
|
|
dirInApex := filepath.Join(appDir, aapp.InstallApkName())
|
|
|
|
fileToCopy := aapp.OutputFile()
|
|
|
|
af := newApexFile(ctx, fileToCopy, aapp.BaseModuleName(), dirInApex, app, aapp)
|
|
|
|
af.jacocoReportClassesFile = aapp.JacocoReportClassesFile()
|
|
|
|
af.certificate = aapp.Certificate()
|
2020-02-20 05:41:10 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
if app, ok := aapp.(interface {
|
|
|
|
OverriddenManifestPackageName() string
|
|
|
|
}); ok {
|
|
|
|
af.overriddenPackageName = app.OverriddenManifestPackageName()
|
|
|
|
}
|
|
|
|
return af
|
|
|
|
}
|
2020-07-22 08:54:47 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForRuntimeResourceOverlay(ctx android.BaseModuleContext, rro java.RuntimeResourceOverlayModule) apexFile {
|
|
|
|
rroDir := "overlay"
|
|
|
|
dirInApex := filepath.Join(rroDir, rro.Theme())
|
|
|
|
fileToCopy := rro.OutputFile()
|
|
|
|
af := newApexFile(ctx, fileToCopy, rro.Name(), dirInApex, app, rro)
|
|
|
|
af.certificate = rro.Certificate()
|
2020-06-12 14:46:59 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
if a, ok := rro.(interface {
|
|
|
|
OverriddenManifestPackageName() string
|
|
|
|
}); ok {
|
|
|
|
af.overriddenPackageName = a.OverriddenManifestPackageName()
|
|
|
|
}
|
|
|
|
return af
|
2019-01-30 03:07:33 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func apexFileForBpfProgram(ctx android.BaseModuleContext, builtFile android.Path, bpfProgram bpf.BpfModule) apexFile {
|
|
|
|
dirInApex := filepath.Join("etc", "bpf")
|
|
|
|
return newApexFile(ctx, builtFile, builtFile.Base(), dirInApex, etc, bpfProgram)
|
2020-09-16 03:30:11 +02:00
|
|
|
}
|
|
|
|
|
2021-01-07 07:31:24 +01:00
|
|
|
func apexFileForFilesystem(ctx android.BaseModuleContext, buildFile android.Path, fs filesystem.Filesystem) apexFile {
|
|
|
|
dirInApex := filepath.Join("etc", "fs")
|
|
|
|
return newApexFile(ctx, buildFile, buildFile.Base(), dirInApex, etc, fs)
|
|
|
|
}
|
|
|
|
|
2020-11-02 18:32:38 +01:00
|
|
|
// WalkPayloadDeps visits dependencies that contributes to the payload of this APEX. For each of the
|
2020-11-19 15:00:52 +01:00
|
|
|
// visited module, the `do` callback is executed. Returning true in the callback continues the visit
|
|
|
|
// to the child modules. Returning false makes the visit to continue in the sibling or the parent
|
|
|
|
// modules. This is used in check* functions below.
|
2020-11-19 06:37:47 +01:00
|
|
|
func (a *apexBundle) WalkPayloadDeps(ctx android.ModuleContext, do android.PayloadDepsCallback) {
|
|
|
|
ctx.WalkDeps(func(child, parent android.Module) bool {
|
|
|
|
am, ok := child.(android.ApexModule)
|
|
|
|
if !ok || !am.CanHaveApexVariants() {
|
|
|
|
return false
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
}
|
2019-08-23 04:17:39 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Filter-out unwanted depedendencies
|
|
|
|
depTag := ctx.OtherModuleDependencyTag(child)
|
|
|
|
if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
|
2020-11-19 06:37:47 +01:00
|
|
|
return false
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
if dt, ok := depTag.(dependencyTag); ok && !dt.payload {
|
2020-11-19 06:37:47 +01:00
|
|
|
return false
|
|
|
|
}
|
2019-11-15 10:40:32 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
ai := ctx.OtherModuleProvider(child, android.ApexInfoProvider).(android.ApexInfo)
|
|
|
|
externalDep := !android.InList(ctx.ModuleName(), ai.InApexes)
|
2018-11-30 02:12:15 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Visit actually
|
|
|
|
return do(ctx, parent, am, externalDep)
|
2020-11-19 06:37:47 +01:00
|
|
|
})
|
2018-11-30 02:12:15 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// filesystem type of the apex_payload.img inside the APEX. Currently, ext4 and f2fs are supported.
|
|
|
|
type fsType int
|
2020-11-19 06:37:47 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
const (
|
|
|
|
ext4 fsType = iota
|
|
|
|
f2fs
|
|
|
|
)
|
2018-11-30 02:12:15 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
func (f fsType) string() string {
|
|
|
|
switch f {
|
|
|
|
case ext4:
|
|
|
|
return ext4FsType
|
|
|
|
case f2fs:
|
|
|
|
return f2fsFsType
|
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unknown APEX payload type %d", f))
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
2018-11-07 18:50:25 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Creates build rules for an APEX. It consists of the following major steps:
|
|
|
|
//
|
|
|
|
// 1) do some validity checks such as apex_available, min_sdk_version, etc.
|
|
|
|
// 2) traverse the dependency tree to collect apexFile structs from them.
|
|
|
|
// 3) some fields in apexBundle struct are configured
|
|
|
|
// 4) generate the build rules to create the APEX. This is mostly done in builder.go.
|
|
|
|
func (a *apexBundle) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 1) do some validity checks such as apex_available, min_sdk_version, etc.
|
|
|
|
a.checkApexAvailability(ctx)
|
|
|
|
a.checkUpdatable(ctx)
|
|
|
|
a.checkMinSdkVersion(ctx)
|
|
|
|
a.checkStaticLinkingToStubLibraries(ctx)
|
|
|
|
if len(a.properties.Tests) > 0 && !a.testApex {
|
|
|
|
ctx.PropertyErrorf("tests", "property allowed only in apex_test module type")
|
2020-11-19 06:37:47 +01:00
|
|
|
return
|
|
|
|
}
|
2020-02-27 05:50:06 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 2) traverse the dependency tree to collect apexFile structs from them.
|
2019-11-18 07:39:01 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// all the files that will be included in this APEX
|
|
|
|
var filesInfo []apexFile
|
2019-11-18 07:39:01 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// native lib dependencies
|
|
|
|
var provideNativeLibs []string
|
|
|
|
var requireNativeLibs []string
|
2018-11-07 18:50:25 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
handleSpecialLibs := !android.Bool(a.properties.Ignore_system_library_special_case)
|
2020-05-13 00:26:55 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// TODO(jiyong): do this using WalkPayloadDeps
|
|
|
|
// TODO(jiyong): make this clean!!!
|
2020-11-19 06:37:47 +01:00
|
|
|
ctx.WalkDepsBlueprint(func(child, parent blueprint.Module) bool {
|
|
|
|
depTag := ctx.OtherModuleDependencyTag(child)
|
|
|
|
if _, ok := depTag.(android.ExcludeFromApexContentsTag); ok {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
depName := ctx.OtherModuleName(child)
|
|
|
|
if _, isDirectDep := parent.(*apexBundle); isDirectDep {
|
|
|
|
switch depTag {
|
|
|
|
case sharedLibTag, jniLibTag:
|
|
|
|
isJniLib := depTag == jniLibTag
|
|
|
|
if c, ok := child.(*cc.Module); ok {
|
|
|
|
fi := apexFileForNativeLibrary(ctx, c, handleSpecialLibs)
|
|
|
|
fi.isJniLib = isJniLib
|
|
|
|
filesInfo = append(filesInfo, fi)
|
|
|
|
// Collect the list of stub-providing libs except:
|
|
|
|
// - VNDK libs are only for vendors
|
|
|
|
// - bootstrap bionic libs are treated as provided by system
|
|
|
|
if c.HasStubsVariants() && !a.vndkApex && !cc.InstallToBootstrap(c.BaseModuleName(), ctx.Config()) {
|
2020-11-19 15:00:52 +01:00
|
|
|
provideNativeLibs = append(provideNativeLibs, fi.stem())
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
|
|
|
return true // track transitive dependencies
|
2020-12-08 16:20:45 +01:00
|
|
|
} else if r, ok := child.(*rust.Module); ok {
|
|
|
|
fi := apexFileForRustLibrary(ctx, r)
|
|
|
|
filesInfo = append(filesInfo, fi)
|
2020-11-19 06:37:47 +01:00
|
|
|
} else {
|
|
|
|
propertyName := "native_shared_libs"
|
|
|
|
if isJniLib {
|
|
|
|
propertyName = "jni_libs"
|
|
|
|
}
|
|
|
|
ctx.PropertyErrorf(propertyName, "%q is not a cc_library or cc_library_shared module", depName)
|
|
|
|
}
|
|
|
|
case executableTag:
|
|
|
|
if cc, ok := child.(*cc.Module); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForExecutable(ctx, cc))
|
|
|
|
return true // track transitive dependencies
|
|
|
|
} else if sh, ok := child.(*sh.ShBinary); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForShBinary(ctx, sh))
|
|
|
|
} else if py, ok := child.(*python.Module); ok && py.HostToolPath().Valid() {
|
|
|
|
filesInfo = append(filesInfo, apexFileForPyBinary(ctx, py))
|
|
|
|
} else if gb, ok := child.(bootstrap.GoBinaryTool); ok && a.Host() {
|
|
|
|
filesInfo = append(filesInfo, apexFileForGoBinary(ctx, depName, gb))
|
2020-11-17 14:21:02 +01:00
|
|
|
} else if rust, ok := child.(*rust.Module); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForRustExecutable(ctx, rust))
|
|
|
|
return true // track transitive dependencies
|
2020-11-19 06:37:47 +01:00
|
|
|
} else {
|
2020-11-17 14:21:02 +01:00
|
|
|
ctx.PropertyErrorf("binaries", "%q is neither cc_binary, rust_binary, (embedded) py_binary, (host) blueprint_go_binary, (host) bootstrap_go_binary, nor sh_binary", depName)
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
2021-01-21 19:13:43 +01:00
|
|
|
case bootImageTag:
|
|
|
|
{
|
|
|
|
if _, ok := child.(*java.BootImageModule); !ok {
|
|
|
|
ctx.PropertyErrorf("boot_images", "%q is not a boot_image module", depName)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
bootImageInfo := ctx.OtherModuleProvider(child, java.BootImageInfoProvider).(java.BootImageInfo)
|
|
|
|
for arch, files := range bootImageInfo.AndroidBootImageFilesByArchType() {
|
|
|
|
dirInApex := filepath.Join("javalib", arch.String())
|
|
|
|
for _, f := range files {
|
|
|
|
androidMkModuleName := "javalib_" + arch.String() + "_" + filepath.Base(f.String())
|
|
|
|
// TODO(b/177892522) - consider passing in the boot image module here instead of nil
|
|
|
|
af := newApexFile(ctx, f, androidMkModuleName, dirInApex, etc, nil)
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
case javaLibTag:
|
|
|
|
switch child.(type) {
|
2021-01-11 19:58:54 +01:00
|
|
|
case *java.Library, *java.SdkLibrary, *java.DexImport, *java.SdkLibraryImport, *java.Import:
|
2020-11-19 15:00:52 +01:00
|
|
|
af := apexFileForJavaModule(ctx, child.(javaModule))
|
|
|
|
if !af.ok() {
|
2020-11-19 06:37:47 +01:00
|
|
|
ctx.PropertyErrorf("java_libs", "%q is not configured to be compiled into dex", depName)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true // track transitive dependencies
|
|
|
|
default:
|
|
|
|
ctx.PropertyErrorf("java_libs", "%q of type %q is not supported", depName, ctx.OtherModuleType(child))
|
|
|
|
}
|
|
|
|
case androidAppTag:
|
|
|
|
if ap, ok := child.(*java.AndroidApp); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
|
|
|
|
return true // track transitive dependencies
|
|
|
|
} else if ap, ok := child.(*java.AndroidAppImport); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
|
|
|
|
} else if ap, ok := child.(*java.AndroidTestHelperApp); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForAndroidApp(ctx, ap))
|
|
|
|
} else if ap, ok := child.(*java.AndroidAppSet); ok {
|
|
|
|
appDir := "app"
|
|
|
|
if ap.Privileged() {
|
|
|
|
appDir = "priv-app"
|
|
|
|
}
|
|
|
|
af := newApexFile(ctx, ap.OutputFile(), ap.BaseModuleName(),
|
|
|
|
filepath.Join(appDir, ap.BaseModuleName()), appSet, ap)
|
|
|
|
af.certificate = java.PresignedCertificate
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("apps", "%q is not an android_app module", depName)
|
|
|
|
}
|
|
|
|
case rroTag:
|
|
|
|
if rro, ok := child.(java.RuntimeResourceOverlayModule); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForRuntimeResourceOverlay(ctx, rro))
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("rros", "%q is not an runtime_resource_overlay module", depName)
|
|
|
|
}
|
|
|
|
case bpfTag:
|
|
|
|
if bpfProgram, ok := child.(bpf.BpfModule); ok {
|
|
|
|
filesToCopy, _ := bpfProgram.OutputFiles("")
|
|
|
|
for _, bpfFile := range filesToCopy {
|
|
|
|
filesInfo = append(filesInfo, apexFileForBpfProgram(ctx, bpfFile, bpfProgram))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("bpfs", "%q is not a bpf module", depName)
|
|
|
|
}
|
2021-01-07 07:31:24 +01:00
|
|
|
case fsTag:
|
|
|
|
if fs, ok := child.(filesystem.Filesystem); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForFilesystem(ctx, fs.OutputPath(), fs))
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("filesystems", "%q is not a filesystem module", depName)
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
case prebuiltTag:
|
|
|
|
if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
|
|
|
|
} else {
|
2021-03-15 20:43:17 +01:00
|
|
|
ctx.PropertyErrorf("prebuilts", "%q is not a prebuilt_etc module", depName)
|
2020-11-19 06:37:47 +01:00
|
|
|
}
|
2021-03-17 16:02:19 +01:00
|
|
|
case compatConfigTag:
|
2021-03-15 20:32:23 +01:00
|
|
|
if compatConfig, ok := child.(java.PlatformCompatConfigIntf); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForCompatConfig(ctx, compatConfig, depName))
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("compat_configs", "%q is not a platform_compat_config module", depName)
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
case testTag:
|
|
|
|
if ccTest, ok := child.(*cc.Module); ok {
|
|
|
|
if ccTest.IsTestPerSrcAllTestsVariation() {
|
|
|
|
// Multiple-output test module (where `test_per_src: true`).
|
|
|
|
//
|
|
|
|
// `ccTest` is the "" ("all tests") variation of a `test_per_src` module.
|
|
|
|
// We do not add this variation to `filesInfo`, as it has no output;
|
|
|
|
// however, we do add the other variations of this module as indirect
|
|
|
|
// dependencies (see below).
|
|
|
|
} else {
|
|
|
|
// Single-output test module (where `test_per_src: false`).
|
|
|
|
af := apexFileForExecutable(ctx, ccTest)
|
|
|
|
af.class = nativeTest
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
}
|
|
|
|
return true // track transitive dependencies
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("tests", "%q is not a cc module", depName)
|
|
|
|
}
|
|
|
|
case keyTag:
|
|
|
|
if key, ok := child.(*apexKey); ok {
|
2020-12-21 18:11:10 +01:00
|
|
|
a.privateKeyFile = key.privateKeyFile
|
|
|
|
a.publicKeyFile = key.publicKeyFile
|
2020-11-19 06:37:47 +01:00
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("key", "%q is not an apex_key module", depName)
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
case certificateTag:
|
|
|
|
if dep, ok := child.(*java.AndroidAppCertificate); ok {
|
2020-12-21 18:11:10 +01:00
|
|
|
a.containerCertificateFile = dep.Certificate.Pem
|
|
|
|
a.containerPrivateKeyFile = dep.Certificate.Key
|
2020-11-19 06:37:47 +01:00
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", depName)
|
|
|
|
}
|
|
|
|
case android.PrebuiltDepTag:
|
|
|
|
// If the prebuilt is force disabled, remember to delete the prebuilt file
|
|
|
|
// that might have been installed in the previous builds
|
|
|
|
if prebuilt, ok := child.(prebuilt); ok && prebuilt.isForceDisabled() {
|
|
|
|
a.prebuiltFileToDelete = prebuilt.InstallFilename()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if !a.vndkApex {
|
|
|
|
// indirect dependencies
|
|
|
|
if am, ok := child.(android.ApexModule); ok {
|
|
|
|
// We cannot use a switch statement on `depTag` here as the checked
|
|
|
|
// tags used below are private (e.g. `cc.sharedDepTag`).
|
|
|
|
if cc.IsSharedDepTag(depTag) || cc.IsRuntimeDepTag(depTag) {
|
|
|
|
if cc, ok := child.(*cc.Module); ok {
|
|
|
|
if cc.UseVndk() && proptools.Bool(a.properties.Use_vndk_as_stable) && cc.IsVndk() {
|
|
|
|
requireNativeLibs = append(requireNativeLibs, ":vndk")
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
af := apexFileForNativeLibrary(ctx, cc, handleSpecialLibs)
|
|
|
|
af.transitiveDep = true
|
2020-12-16 02:01:59 +01:00
|
|
|
|
|
|
|
// Always track transitive dependencies for host.
|
|
|
|
if a.Host() {
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
abInfo := ctx.Provider(ApexBundleInfoProvider).(ApexBundleInfo)
|
2020-12-16 02:01:59 +01:00
|
|
|
if !abInfo.Contents.DirectlyInApex(depName) && (cc.IsStubs() || cc.HasStubsVariants()) {
|
2020-11-19 06:37:47 +01:00
|
|
|
// If the dependency is a stubs lib, don't include it in this APEX,
|
|
|
|
// but make sure that the lib is installed on the device.
|
|
|
|
// In case no APEX is having the lib, the lib is installed to the system
|
|
|
|
// partition.
|
|
|
|
//
|
|
|
|
// Always include if we are a host-apex however since those won't have any
|
|
|
|
// system libraries.
|
|
|
|
if !am.DirectlyInAnyApex() {
|
|
|
|
// we need a module name for Make
|
2020-12-02 16:03:42 +01:00
|
|
|
name := cc.ImplementationModuleNameForMake(ctx)
|
2019-02-18 07:25:04 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
if !proptools.Bool(a.properties.Use_vendor) {
|
|
|
|
// we don't use subName(.vendor) for a "use_vendor: true" apex
|
|
|
|
// which is supposed to be installed in /system
|
|
|
|
name += cc.Properties.SubName
|
|
|
|
}
|
|
|
|
if !android.InList(name, a.requiredDeps) {
|
|
|
|
a.requiredDeps = append(a.requiredDeps, name)
|
|
|
|
}
|
|
|
|
}
|
2020-11-19 15:00:52 +01:00
|
|
|
requireNativeLibs = append(requireNativeLibs, af.stem())
|
2020-11-19 06:37:47 +01:00
|
|
|
// Don't track further
|
|
|
|
return false
|
|
|
|
}
|
2020-12-03 09:28:25 +01:00
|
|
|
|
|
|
|
// If the dep is not considered to be in the same
|
|
|
|
// apex, don't add it to filesInfo so that it is not
|
|
|
|
// included in this APEX.
|
|
|
|
// TODO(jiyong): move this to at the top of the
|
|
|
|
// else-if clause for the indirect dependencies.
|
|
|
|
// Currently, that's impossible because we would
|
|
|
|
// like to record requiredNativeLibs even when
|
2020-12-16 02:01:59 +01:00
|
|
|
// DepIsInSameAPex is false. We also shouldn't do
|
|
|
|
// this for host.
|
2021-03-18 16:41:29 +01:00
|
|
|
//
|
|
|
|
// TODO(jiyong): explain why the same module is passed in twice.
|
|
|
|
// Switching the first am to parent breaks lots of tests.
|
|
|
|
if !android.IsDepInSameApex(ctx, am, am) {
|
2020-12-03 09:28:25 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true // track transitive dependencies
|
2020-12-08 16:20:45 +01:00
|
|
|
} else if rm, ok := child.(*rust.Module); ok {
|
|
|
|
af := apexFileForRustLibrary(ctx, rm)
|
|
|
|
af.transitiveDep = true
|
2020-11-19 06:37:47 +01:00
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true // track transitive dependencies
|
|
|
|
}
|
|
|
|
} else if cc.IsTestPerSrcDepTag(depTag) {
|
|
|
|
if cc, ok := child.(*cc.Module); ok {
|
|
|
|
af := apexFileForExecutable(ctx, cc)
|
|
|
|
// Handle modules created as `test_per_src` variations of a single test module:
|
|
|
|
// use the name of the generated test binary (`fileToCopy`) instead of the name
|
|
|
|
// of the original test module (`depName`, shared by all `test_per_src`
|
|
|
|
// variations of that module).
|
|
|
|
af.androidMkModuleName = filepath.Base(af.builtFile.String())
|
|
|
|
// these are not considered transitive dep
|
|
|
|
af.transitiveDep = false
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true // track transitive dependencies
|
|
|
|
}
|
2020-12-01 15:40:09 +01:00
|
|
|
} else if cc.IsHeaderDepTag(depTag) {
|
|
|
|
// nothing
|
2020-11-19 06:37:47 +01:00
|
|
|
} else if java.IsJniDepTag(depTag) {
|
|
|
|
// Because APK-in-APEX embeds jni_libs transitively, we don't need to track transitive deps
|
|
|
|
return false
|
|
|
|
} else if java.IsXmlPermissionsFileDepTag(depTag) {
|
|
|
|
if prebuilt, ok := child.(prebuilt_etc.PrebuiltEtcModule); ok {
|
|
|
|
filesInfo = append(filesInfo, apexFileForPrebuiltEtc(ctx, prebuilt, depName))
|
|
|
|
}
|
2020-11-17 14:21:02 +01:00
|
|
|
} else if rust.IsDylibDepTag(depTag) {
|
|
|
|
if rustm, ok := child.(*rust.Module); ok && rustm.IsInstallableToApex() {
|
|
|
|
af := apexFileForRustLibrary(ctx, rustm)
|
|
|
|
af.transitiveDep = true
|
|
|
|
filesInfo = append(filesInfo, af)
|
|
|
|
return true // track transitive dependencies
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
} else if _, ok := depTag.(android.CopyDirectlyInAnyApexTag); ok {
|
|
|
|
// nothing
|
|
|
|
} else if am.CanHaveApexVariants() && am.IsInstallableToApex() {
|
|
|
|
ctx.ModuleErrorf("unexpected tag %s for indirect dependency %q", android.PrettyPrintTag(depTag), depName)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
})
|
2020-12-21 18:11:10 +01:00
|
|
|
if a.privateKeyFile == nil {
|
2020-11-19 15:00:52 +01:00
|
|
|
ctx.PropertyErrorf("key", "private_key for %q could not be found", String(a.properties.Key))
|
|
|
|
return
|
|
|
|
}
|
2019-11-19 18:26:02 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Remove duplicates in filesInfo
|
2020-11-19 06:37:47 +01:00
|
|
|
removeDup := func(filesInfo []apexFile) []apexFile {
|
|
|
|
encountered := make(map[string]apexFile)
|
|
|
|
for _, f := range filesInfo {
|
|
|
|
dest := filepath.Join(f.installDir, f.builtFile.Base())
|
|
|
|
if e, ok := encountered[dest]; !ok {
|
|
|
|
encountered[dest] = f
|
|
|
|
} else {
|
|
|
|
// If a module is directly included and also transitively depended on
|
|
|
|
// consider it as directly included.
|
|
|
|
e.transitiveDep = e.transitiveDep && f.transitiveDep
|
|
|
|
encountered[dest] = e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var result []apexFile
|
|
|
|
for _, v := range encountered {
|
|
|
|
result = append(result, v)
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
filesInfo = removeDup(filesInfo)
|
2019-10-22 06:58:29 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Sort to have consistent build rules
|
2020-11-19 06:37:47 +01:00
|
|
|
sort.Slice(filesInfo, func(i, j int) bool {
|
|
|
|
return filesInfo[i].builtFile.String() < filesInfo[j].builtFile.String()
|
|
|
|
})
|
2020-01-14 06:39:19 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 3) some fields in apexBundle struct are configured
|
2020-11-19 06:37:47 +01:00
|
|
|
a.installDir = android.PathForModuleInstall(ctx, "apex")
|
|
|
|
a.filesInfo = filesInfo
|
2020-01-14 01:22:18 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// Set suffix and primaryApexType depending on the ApexType
|
|
|
|
buildFlattenedAsDefault := ctx.Config().FlattenApex() && !ctx.Config().UnbundledBuildApps()
|
|
|
|
switch a.properties.ApexType {
|
|
|
|
case imageApex:
|
|
|
|
if buildFlattenedAsDefault {
|
|
|
|
a.suffix = imageApexSuffix
|
|
|
|
} else {
|
|
|
|
a.suffix = ""
|
|
|
|
a.primaryApexType = true
|
|
|
|
|
|
|
|
if ctx.Config().InstallExtraFlattenedApexes() {
|
|
|
|
a.requiredDeps = append(a.requiredDeps, a.Name()+flattenedSuffix)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case zipApex:
|
|
|
|
if proptools.String(a.properties.Payload_type) == "zip" {
|
|
|
|
a.suffix = ""
|
|
|
|
a.primaryApexType = true
|
|
|
|
} else {
|
|
|
|
a.suffix = zipApexSuffix
|
|
|
|
}
|
|
|
|
case flattenedApex:
|
|
|
|
if buildFlattenedAsDefault {
|
|
|
|
a.suffix = ""
|
|
|
|
a.primaryApexType = true
|
|
|
|
} else {
|
|
|
|
a.suffix = flattenedSuffix
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
switch proptools.StringDefault(a.properties.Payload_fs_type, ext4FsType) {
|
|
|
|
case ext4FsType:
|
|
|
|
a.payloadFsType = ext4
|
|
|
|
case f2fsFsType:
|
|
|
|
a.payloadFsType = f2fs
|
|
|
|
default:
|
|
|
|
ctx.PropertyErrorf("payload_fs_type", "%q is not a valid filesystem for apex [ext4, f2fs]", *a.properties.Payload_fs_type)
|
|
|
|
}
|
2020-01-28 12:05:29 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// Optimization. If we are building bundled APEX, for the files that are gathered due to the
|
|
|
|
// transitive dependencies, don't place them inside the APEX, but place a symlink pointing
|
|
|
|
// the same library in the system partition, thus effectively sharing the same libraries
|
|
|
|
// across the APEX boundary. For unbundled APEX, all the gathered files are actually placed
|
|
|
|
// in the APEX.
|
2020-11-19 15:00:52 +01:00
|
|
|
a.linkToSystemLib = !ctx.Config().UnbundledBuild() && a.installable() && !proptools.Bool(a.properties.Use_vendor)
|
2020-07-22 05:31:17 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// APEXes targeting other than system/system_ext partitions use vendor/product variants.
|
|
|
|
// So we can't link them to /system/lib libs which are core variants.
|
2020-11-19 15:00:52 +01:00
|
|
|
if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
|
2020-11-19 06:37:47 +01:00
|
|
|
a.linkToSystemLib = false
|
|
|
|
}
|
2020-06-12 14:46:59 +02:00
|
|
|
|
2021-01-05 13:01:11 +01:00
|
|
|
forced := ctx.Config().ForceApexSymlinkOptimization()
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// We don't need the optimization for updatable APEXes, as it might give false signal
|
2021-01-05 13:01:11 +01:00
|
|
|
// to the system health when the APEXes are still bundled (b/149805758).
|
|
|
|
if !forced && a.Updatable() && a.properties.ApexType == imageApex {
|
2020-11-19 06:37:47 +01:00
|
|
|
a.linkToSystemLib = false
|
|
|
|
}
|
2020-11-11 13:33:14 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// We also don't want the optimization for host APEXes, because it doesn't make sense.
|
|
|
|
if ctx.Host() {
|
|
|
|
a.linkToSystemLib = false
|
|
|
|
}
|
2018-10-10 07:01:00 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
a.compatSymlinks = makeCompatSymlinks(a.BaseModuleName(), ctx)
|
2020-08-22 01:15:23 +02:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// 4) generate the build rules to create the APEX. This is done in builder.go.
|
|
|
|
a.buildManifest(ctx, provideNativeLibs, requireNativeLibs)
|
2020-11-19 06:37:47 +01:00
|
|
|
if a.properties.ApexType == flattenedApex {
|
|
|
|
a.buildFlattenedApex(ctx)
|
|
|
|
} else {
|
|
|
|
a.buildUnflattenedApex(ctx)
|
2020-08-22 01:15:23 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
a.buildApexDependencyInfo(ctx)
|
|
|
|
a.buildLintReports(ctx)
|
2020-11-24 11:51:18 +01:00
|
|
|
|
|
|
|
// Append meta-files to the filesInfo list so that they are reflected in Android.mk as well.
|
|
|
|
if a.installable() {
|
|
|
|
// For flattened APEX, make sure that APEX manifest and apex_pubkey are also copied
|
|
|
|
// along with other ordinary files. (Note that this is done by apexer for
|
|
|
|
// non-flattened APEXes)
|
|
|
|
a.filesInfo = append(a.filesInfo, newApexFile(ctx, a.manifestPbOut, "apex_manifest.pb", ".", etc, nil))
|
|
|
|
|
|
|
|
// Place the public key as apex_pubkey. This is also done by apexer for
|
|
|
|
// non-flattened APEXes case.
|
|
|
|
// TODO(jiyong): Why do we need this CP rule?
|
|
|
|
copiedPubkey := android.PathForModuleOut(ctx, "apex_pubkey")
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: android.Cp,
|
2020-12-21 18:11:10 +01:00
|
|
|
Input: a.publicKeyFile,
|
2020-11-24 11:51:18 +01:00
|
|
|
Output: copiedPubkey,
|
|
|
|
})
|
|
|
|
a.filesInfo = append(a.filesInfo, newApexFile(ctx, copiedPubkey, "apex_pubkey", ".", etc, nil))
|
|
|
|
}
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Factory functions
|
|
|
|
//
|
2019-06-26 13:48:34 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func newApexBundle() *apexBundle {
|
|
|
|
module := &apexBundle{}
|
2020-11-19 15:00:52 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
module.AddProperties(&module.properties)
|
|
|
|
module.AddProperties(&module.targetProperties)
|
2020-12-14 10:44:04 +01:00
|
|
|
module.AddProperties(&module.archProperties)
|
2020-11-19 06:37:47 +01:00
|
|
|
module.AddProperties(&module.overridableProperties)
|
2020-11-19 15:00:52 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.HostAndDeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
android.InitSdkAwareModule(module)
|
|
|
|
android.InitOverridableModule(module, &module.overridableProperties.Overrides)
|
|
|
|
return module
|
|
|
|
}
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func ApexBundleFactory(testApex bool, artApex bool) android.Module {
|
|
|
|
bundle := newApexBundle()
|
|
|
|
bundle.testApex = testApex
|
|
|
|
bundle.artApex = artApex
|
|
|
|
return bundle
|
|
|
|
}
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// apex_test is an APEX for testing. The difference from the ordinary apex module type is that
|
|
|
|
// certain compatibility checks such as apex_available are not done for apex_test.
|
|
|
|
func testApexBundleFactory() android.Module {
|
|
|
|
bundle := newApexBundle()
|
|
|
|
bundle.testApex = true
|
|
|
|
return bundle
|
|
|
|
}
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// apex packages other modules into an APEX file which is a packaging format for system-level
|
|
|
|
// components like binaries, shared libraries, etc.
|
|
|
|
func BundleFactory() android.Module {
|
|
|
|
return newApexBundle()
|
|
|
|
}
|
binaries and native_shared_libraires are multilib-aware props
The properties 'binaries' and 'native_shared_libraries' can be
multilib-aware, i.e, can be under multilib.type where type can be either
first, both, lib32, lib64, or prefer32.
Native modules listed in multilib.first are installed only for the first
ABI of the device. Similarily, multilib.both are for both of the ABIs,
while multilib.lib32 and multilib.lib64 are 32 and 64-bit ABI only,
respectively. multilib.prefer32 is for 32-bit only when 32-bit ABI is
available.
Another change is that the binaries property, when not within multilib,
targets only the first ABI.
Test: m apex.test on ...
1) aosp_arm64 without TARGET_PREFER_32_BIT_EXECUTABLES=true
2) aosp_arm64 with TARGET_PREFER_32_BIT_EXECUTABLES=true
3) aosp_arm
in all cases, vold, surfaceflinger and drmserver are all intalled under
./bin directory of the APEX. And native libraries are installed under
both ./lib and ./lib64 directories in the case of 1) and 2).
Change-Id: Idd7f8526a61bceca89d43c0c69ccedb471b67d31
2018-10-24 14:09:55 +02:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type Defaults struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.DefaultsModuleBase
|
2019-11-15 10:40:32 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// apex_defaults provides defaultable properties to other apex modules.
|
2020-11-19 06:37:47 +01:00
|
|
|
func defaultsFactory() android.Module {
|
|
|
|
return DefaultsFactory()
|
2019-10-15 08:20:07 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func DefaultsFactory(props ...interface{}) android.Module {
|
|
|
|
module := &Defaults{}
|
2019-02-11 03:38:15 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
module.AddProperties(props...)
|
|
|
|
module.AddProperties(
|
|
|
|
&apexBundleProperties{},
|
|
|
|
&apexTargetBundleProperties{},
|
|
|
|
&overridableProperties{},
|
|
|
|
)
|
2018-11-27 13:27:08 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
android.InitDefaultsModule(module)
|
|
|
|
return module
|
2018-12-13 15:14:57 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
type OverrideApex struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.OverrideModuleBase
|
2019-12-07 18:30:22 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func (o *OverrideApex) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
// All the overrides happen in the base module.
|
2020-04-27 19:21:11 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// override_apex is used to create an apex module based on another apex module by overriding some of
|
|
|
|
// its properties.
|
2020-11-19 06:37:47 +01:00
|
|
|
func overrideApexFactory() android.Module {
|
|
|
|
m := &OverrideApex{}
|
2020-11-19 15:00:52 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
m.AddProperties(&overridableProperties{})
|
2018-12-19 09:12:36 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitOverrideModule(m)
|
|
|
|
return m
|
2019-02-13 12:28:58 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Vality check routines
|
|
|
|
//
|
|
|
|
// These are called in at the very beginning of GenerateAndroidBuildActions to flag an error when
|
|
|
|
// certain conditions are not met.
|
|
|
|
//
|
|
|
|
// TODO(jiyong): move these checks to a separate go file.
|
|
|
|
|
|
|
|
// Entures that min_sdk_version of the included modules are equal or less than the min_sdk_version
|
|
|
|
// of this apexBundle.
|
|
|
|
func (a *apexBundle) checkMinSdkVersion(ctx android.ModuleContext) {
|
|
|
|
if a.testApex || a.vndkApex {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// Meaningless to check min_sdk_version when building use_vendor modules against non-Trebleized targets
|
|
|
|
if proptools.Bool(a.properties.Use_vendor) && ctx.DeviceConfig().VndkVersion() == "" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// apexBundle::minSdkVersion reports its own errors.
|
|
|
|
minSdkVersion := a.minSdkVersion(ctx)
|
|
|
|
android.CheckMinSdkVersion(a, ctx, minSdkVersion)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *apexBundle) minSdkVersion(ctx android.BaseModuleContext) android.ApiLevel {
|
|
|
|
ver := proptools.String(a.properties.Min_sdk_version)
|
|
|
|
if ver == "" {
|
2021-01-26 03:43:46 +01:00
|
|
|
return android.NoneApiLevel
|
2020-11-19 15:00:52 +01:00
|
|
|
}
|
|
|
|
apiLevel, err := android.ApiLevelFromUser(ctx, ver)
|
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("min_sdk_version", "%s", err.Error())
|
|
|
|
return android.NoneApiLevel
|
|
|
|
}
|
|
|
|
return apiLevel
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensures that a lib providing stub isn't statically linked
|
|
|
|
func (a *apexBundle) checkStaticLinkingToStubLibraries(ctx android.ModuleContext) {
|
|
|
|
// Practically, we only care about regular APEXes on the device.
|
|
|
|
if ctx.Host() || a.testApex || a.vndkApex {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
abInfo := ctx.Provider(ApexBundleInfoProvider).(ApexBundleInfo)
|
|
|
|
|
|
|
|
a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
|
|
|
|
if ccm, ok := to.(*cc.Module); ok {
|
|
|
|
apexName := ctx.ModuleName()
|
|
|
|
fromName := ctx.OtherModuleName(from)
|
|
|
|
toName := ctx.OtherModuleName(to)
|
|
|
|
|
|
|
|
// If `to` is not actually in the same APEX as `from` then it does not need
|
|
|
|
// apex_available and neither do any of its dependencies.
|
2021-03-18 16:41:29 +01:00
|
|
|
//
|
|
|
|
// It is ok to call DepIsInSameApex() directly from within WalkPayloadDeps().
|
2020-11-19 15:00:52 +01:00
|
|
|
if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
|
|
|
|
// As soon as the dependency graph crosses the APEX boundary, don't go further.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// The dynamic linker and crash_dump tool in the runtime APEX is the only
|
|
|
|
// exception to this rule. It can't make the static dependencies dynamic
|
|
|
|
// because it can't do the dynamic linking for itself.
|
2020-11-30 06:42:14 +01:00
|
|
|
// Same rule should be applied to linkerconfig, because it should be executed
|
|
|
|
// only with static linked libraries before linker is available with ld.config.txt
|
|
|
|
if apexName == "com.android.runtime" && (fromName == "linker" || fromName == "crash_dump" || fromName == "linkerconfig") {
|
2020-11-19 15:00:52 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
isStubLibraryFromOtherApex := ccm.HasStubsVariants() && !abInfo.Contents.DirectlyInApex(toName)
|
|
|
|
if isStubLibraryFromOtherApex && !externalDep {
|
|
|
|
ctx.ModuleErrorf("%q required by %q is a native library providing stub. "+
|
|
|
|
"It shouldn't be included in this APEX via static linking. Dependency path: %s", to.String(), fromName, ctx.GetPathString(false))
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enforce that Java deps of the apex are using stable SDKs to compile
|
|
|
|
func (a *apexBundle) checkUpdatable(ctx android.ModuleContext) {
|
|
|
|
if a.Updatable() {
|
|
|
|
if String(a.properties.Min_sdk_version) == "" {
|
|
|
|
ctx.PropertyErrorf("updatable", "updatable APEXes should set min_sdk_version as well")
|
|
|
|
}
|
|
|
|
a.checkJavaStableSdkVersion(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *apexBundle) checkJavaStableSdkVersion(ctx android.ModuleContext) {
|
|
|
|
// Visit direct deps only. As long as we guarantee top-level deps are using stable SDKs,
|
|
|
|
// java's checkLinkType guarantees correct usage for transitive deps
|
|
|
|
ctx.VisitDirectDepsBlueprint(func(module blueprint.Module) {
|
|
|
|
tag := ctx.OtherModuleDependencyTag(module)
|
|
|
|
switch tag {
|
|
|
|
case javaLibTag, androidAppTag:
|
|
|
|
if m, ok := module.(interface{ CheckStableSdkVersion() error }); ok {
|
|
|
|
if err := m.CheckStableSdkVersion(); err != nil {
|
|
|
|
ctx.ModuleErrorf("cannot depend on \"%v\": %v", ctx.OtherModuleName(module), err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensures that the all the dependencies are marked as available for this APEX
|
|
|
|
func (a *apexBundle) checkApexAvailability(ctx android.ModuleContext) {
|
|
|
|
// Let's be practical. Availability for test, host, and the VNDK apex isn't important
|
|
|
|
if ctx.Host() || a.testApex || a.vndkApex {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Because APEXes targeting other than system/system_ext partitions can't set
|
|
|
|
// apex_available, we skip checks for these APEXes
|
|
|
|
if a.SocSpecific() || a.DeviceSpecific() || (a.ProductSpecific() && ctx.Config().EnforceProductPartitionInterface()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Coverage build adds additional dependencies for the coverage-only runtime libraries.
|
|
|
|
// Requiring them and their transitive depencies with apex_available is not right
|
|
|
|
// because they just add noise.
|
|
|
|
if ctx.Config().IsEnvTrue("EMMA_INSTRUMENT") || a.IsNativeCoverageNeeded(ctx) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
a.WalkPayloadDeps(ctx, func(ctx android.ModuleContext, from blueprint.Module, to android.ApexModule, externalDep bool) bool {
|
|
|
|
// As soon as the dependency graph crosses the APEX boundary, don't go further.
|
|
|
|
if externalDep {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
apexName := ctx.ModuleName()
|
|
|
|
fromName := ctx.OtherModuleName(from)
|
|
|
|
toName := ctx.OtherModuleName(to)
|
|
|
|
|
|
|
|
// If `to` is not actually in the same APEX as `from` then it does not need
|
|
|
|
// apex_available and neither do any of its dependencies.
|
2021-03-18 16:41:29 +01:00
|
|
|
//
|
|
|
|
// It is ok to call DepIsInSameApex() directly from within WalkPayloadDeps().
|
2020-11-19 15:00:52 +01:00
|
|
|
if am, ok := from.(android.DepIsInSameApex); ok && !am.DepIsInSameApex(ctx, to) {
|
|
|
|
// As soon as the dependency graph crosses the APEX boundary, don't go
|
|
|
|
// further.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
if to.AvailableFor(apexName) || baselineApexAvailable(apexName, toName) {
|
|
|
|
return true
|
|
|
|
}
|
Friendly error message on apex_available and min_sdk_version checks
1) suggest a fix at the end of the message
2) add new lines around the dependency path so that they are visually
separated from rest of the error message
Bug: N/A
Test: m with an intentional break
error: bionic/apex/Android.bp:32:1: module "com.android.runtime" variant "android_common_com.android.runtime_image": "libutils_headers" requires "libsystem_headers" that doesn't list the APEX under 'apex_available'.
Dependency path:
via tag apex.dependencyTag: { name:executable payload:true}
-> crash_dump{os:android,image:,arch:arm_armv8-a,sdk:,apex:apex10000}
via tag cc.libraryDependencyTag: { Kind:staticLibraryDependency Order:normalLibraryDependency wholeStatic:false reexportFlags:false explicitlyVersioned:false dataLib:false ndk:false staticUnwinder:false makeSuffix: skipApexAllowedDependenciesCheck:false excludeInApex:false}
-> libtombstoned_client_static{os:android,image:,arch:arm_armv8-a,sdk:,link:static,apex:apex10000}
via tag cc.libraryDependencyTag: { Kind:staticLibraryDependency Order:normalLibraryDependency wholeStatic:true reexportFlags:true explicitlyVersioned:false dataLib:false ndk:false staticUnwinder:false makeSuffix: skipApexAllowedDependenciesCheck:false excludeInApex:false}
-> libcutils{os:android,image:,arch:arm_armv8-a,sdk:,link:static,asan:,apex:apex10000}
via tag cc.libraryDependencyTag: { Kind:headerLibraryDependency Order:normalLibraryDependency wholeStatic:false reexportFlags:false explicitlyVersioned:false dataLib:false ndk:false staticUnwinder:false makeSuffix: skipApexAllowedDependenciesCheck:false excludeInApex:false}
-> libutils_headers{os:android,image:,arch:arm_armv8-a,sdk:,asan:,apex:apex10000}
via tag cc.libraryDependencyTag: { Kind:headerLibraryDependency Order:normalLibraryDependency wholeStatic:false reexportFlags:true explicitlyVersioned:false dataLib:false ndk:false staticUnwinder:false makeSuffix: skipApexAllowedDependenciesCheck:false excludeInApex:false}
-> libsystem_headers{os:android,image:,arch:arm_armv8-a,sdk:,asan:,apex:apex10000}
Consider adding "com.android.runtime" to 'apex_available' property of "libsystem_headers"
Change-Id: I09f92c3086ea433780133a33ba0ad73baee6dc41
2021-03-04 05:03:10 +01:00
|
|
|
ctx.ModuleErrorf("%q requires %q that doesn't list the APEX under 'apex_available'."+
|
|
|
|
"\n\nDependency path:%s\n\n"+
|
|
|
|
"Consider adding %q to 'apex_available' property of %q",
|
|
|
|
fromName, toName, ctx.GetPathString(true), apexName, toName)
|
2020-11-19 15:00:52 +01:00
|
|
|
// Visit this module's dependencies to check and report any issues with their availability.
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
var (
|
|
|
|
apexAvailBaseline = makeApexAvailableBaseline()
|
|
|
|
inverseApexAvailBaseline = invertApexBaseline(apexAvailBaseline)
|
|
|
|
)
|
2018-12-18 18:47:14 +01:00
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
func baselineApexAvailable(apex, moduleName string) bool {
|
|
|
|
key := apex
|
|
|
|
moduleName = normalizeModuleName(moduleName)
|
|
|
|
|
|
|
|
if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
key = android.AvailableToAnyApex
|
|
|
|
if val, ok := apexAvailBaseline[key]; ok && android.InList(moduleName, val) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func normalizeModuleName(moduleName string) string {
|
|
|
|
// Prebuilt modules (e.g. java_import, etc.) have "prebuilt_" prefix added by the build
|
|
|
|
// system. Trim the prefix for the check since they are confusing
|
2020-12-11 19:13:08 +01:00
|
|
|
moduleName = android.RemoveOptionalPrebuiltPrefix(moduleName)
|
2020-11-19 15:00:52 +01:00
|
|
|
if strings.HasPrefix(moduleName, "libclang_rt.") {
|
|
|
|
// This module has many arch variants that depend on the product being built.
|
|
|
|
// We don't want to list them all
|
|
|
|
moduleName = "libclang_rt"
|
|
|
|
}
|
|
|
|
if strings.HasPrefix(moduleName, "androidx.") {
|
|
|
|
// TODO(b/156996905) Set apex_available/min_sdk_version for androidx support libraries
|
|
|
|
moduleName = "androidx"
|
|
|
|
}
|
|
|
|
return moduleName
|
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// Transform the map of apex -> modules to module -> apexes.
|
|
|
|
func invertApexBaseline(m map[string][]string) map[string][]string {
|
|
|
|
r := make(map[string][]string)
|
|
|
|
for apex, modules := range m {
|
|
|
|
for _, module := range modules {
|
|
|
|
r[module] = append(r[module], apex)
|
2020-05-15 12:05:05 +02:00
|
|
|
}
|
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return r
|
2020-05-15 12:05:05 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// Retrieve the baseline of apexes to which the supplied module belongs.
|
|
|
|
func BaselineApexAvailable(moduleName string) []string {
|
|
|
|
return inverseApexAvailBaseline[normalizeModuleName(moduleName)]
|
2020-01-09 04:32:06 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 15:00:52 +01:00
|
|
|
// This is a map from apex to modules, which overrides the apex_available setting for that
|
|
|
|
// particular module to make it available for the apex regardless of its setting.
|
2020-11-19 06:37:47 +01:00
|
|
|
// TODO(b/147364041): remove this
|
|
|
|
func makeApexAvailableBaseline() map[string][]string {
|
|
|
|
// The "Module separator"s below are employed to minimize merge conflicts.
|
|
|
|
m := make(map[string][]string)
|
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.appsearch"] = []string{
|
|
|
|
"icing-java-proto-lite",
|
|
|
|
"libprotobuf-java-lite",
|
2018-10-10 07:01:00 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.bluetooth.updatable"] = []string{
|
|
|
|
"android.hardware.audio.common@5.0",
|
|
|
|
"android.hardware.bluetooth.a2dp@1.0",
|
|
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
|
|
"android.hardware.bluetooth@1.0",
|
|
|
|
"android.hardware.bluetooth@1.1",
|
|
|
|
"android.hardware.graphics.bufferqueue@1.0",
|
|
|
|
"android.hardware.graphics.bufferqueue@2.0",
|
|
|
|
"android.hardware.graphics.common@1.0",
|
|
|
|
"android.hardware.graphics.common@1.1",
|
|
|
|
"android.hardware.graphics.common@1.2",
|
|
|
|
"android.hardware.media@1.0",
|
|
|
|
"android.hidl.safe_union@1.0",
|
|
|
|
"android.hidl.token@1.0",
|
|
|
|
"android.hidl.token@1.0-utils",
|
|
|
|
"avrcp-target-service",
|
|
|
|
"avrcp_headers",
|
|
|
|
"bluetooth-protos-lite",
|
|
|
|
"bluetooth.mapsapi",
|
|
|
|
"com.android.vcard",
|
|
|
|
"dnsresolver_aidl_interface-V2-java",
|
|
|
|
"ipmemorystore-aidl-interfaces-V5-java",
|
|
|
|
"ipmemorystore-aidl-interfaces-java",
|
|
|
|
"internal_include_headers",
|
|
|
|
"lib-bt-packets",
|
|
|
|
"lib-bt-packets-avrcp",
|
|
|
|
"lib-bt-packets-base",
|
|
|
|
"libFraunhoferAAC",
|
|
|
|
"libaudio-a2dp-hw-utils",
|
|
|
|
"libaudio-hearing-aid-hw-utils",
|
|
|
|
"libbluetooth",
|
|
|
|
"libbluetooth-types",
|
|
|
|
"libbluetooth-types-header",
|
|
|
|
"libbluetooth_gd",
|
|
|
|
"libbluetooth_headers",
|
|
|
|
"libbluetooth_jni",
|
|
|
|
"libbt-audio-hal-interface",
|
|
|
|
"libbt-bta",
|
|
|
|
"libbt-common",
|
|
|
|
"libbt-hci",
|
|
|
|
"libbt-platform-protos-lite",
|
|
|
|
"libbt-protos-lite",
|
|
|
|
"libbt-sbc-decoder",
|
|
|
|
"libbt-sbc-encoder",
|
|
|
|
"libbt-stack",
|
|
|
|
"libbt-utils",
|
|
|
|
"libbtcore",
|
|
|
|
"libbtdevice",
|
|
|
|
"libbte",
|
|
|
|
"libbtif",
|
|
|
|
"libchrome",
|
|
|
|
"libevent",
|
|
|
|
"libfmq",
|
|
|
|
"libg722codec",
|
|
|
|
"libgui_headers",
|
|
|
|
"libmedia_headers",
|
|
|
|
"libmodpb64",
|
|
|
|
"libosi",
|
|
|
|
"libstagefright_foundation_headers",
|
|
|
|
"libstagefright_headers",
|
|
|
|
"libstatslog",
|
|
|
|
"libstatssocket",
|
|
|
|
"libtinyxml2",
|
|
|
|
"libudrv-uipc",
|
|
|
|
"libz",
|
|
|
|
"media_plugin_headers",
|
|
|
|
"net-utils-services-common",
|
|
|
|
"netd_aidl_interface-unstable-java",
|
|
|
|
"netd_event_listener_interface-java",
|
|
|
|
"netlink-client",
|
|
|
|
"networkstack-client",
|
|
|
|
"sap-api-java-static",
|
|
|
|
"services.net",
|
2019-10-27 01:29:22 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.cellbroadcast"] = []string{"CellBroadcastApp", "CellBroadcastServiceModule"}
|
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.extservices"] = []string{
|
|
|
|
"error_prone_annotations",
|
|
|
|
"ExtServices-core",
|
|
|
|
"ExtServices",
|
|
|
|
"libtextclassifier-java",
|
|
|
|
"libz_current",
|
|
|
|
"textclassifier-statsd",
|
|
|
|
"TextClassifierNotificationLibNoManifest",
|
|
|
|
"TextClassifierServiceLibNoManifest",
|
2020-02-28 08:51:07 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.neuralnetworks"] = []string{
|
|
|
|
"android.hardware.neuralnetworks@1.0",
|
|
|
|
"android.hardware.neuralnetworks@1.1",
|
|
|
|
"android.hardware.neuralnetworks@1.2",
|
|
|
|
"android.hardware.neuralnetworks@1.3",
|
|
|
|
"android.hidl.allocator@1.0",
|
|
|
|
"android.hidl.memory.token@1.0",
|
|
|
|
"android.hidl.memory@1.0",
|
|
|
|
"android.hidl.safe_union@1.0",
|
|
|
|
"libarect",
|
|
|
|
"libbuildversion",
|
|
|
|
"libmath",
|
|
|
|
"libprocpartition",
|
|
|
|
"libsync",
|
2020-04-24 14:16:36 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.media"] = []string{
|
|
|
|
"android.frameworks.bufferhub@1.0",
|
|
|
|
"android.hardware.cas.native@1.0",
|
|
|
|
"android.hardware.cas@1.0",
|
|
|
|
"android.hardware.configstore-utils",
|
|
|
|
"android.hardware.configstore@1.0",
|
|
|
|
"android.hardware.configstore@1.1",
|
|
|
|
"android.hardware.graphics.allocator@2.0",
|
|
|
|
"android.hardware.graphics.allocator@3.0",
|
|
|
|
"android.hardware.graphics.bufferqueue@1.0",
|
|
|
|
"android.hardware.graphics.bufferqueue@2.0",
|
|
|
|
"android.hardware.graphics.common@1.0",
|
|
|
|
"android.hardware.graphics.common@1.1",
|
|
|
|
"android.hardware.graphics.common@1.2",
|
|
|
|
"android.hardware.graphics.mapper@2.0",
|
|
|
|
"android.hardware.graphics.mapper@2.1",
|
|
|
|
"android.hardware.graphics.mapper@3.0",
|
|
|
|
"android.hardware.media.omx@1.0",
|
|
|
|
"android.hardware.media@1.0",
|
|
|
|
"android.hidl.allocator@1.0",
|
|
|
|
"android.hidl.memory.token@1.0",
|
|
|
|
"android.hidl.memory@1.0",
|
|
|
|
"android.hidl.token@1.0",
|
|
|
|
"android.hidl.token@1.0-utils",
|
|
|
|
"bionic_libc_platform_headers",
|
|
|
|
"exoplayer2-extractor",
|
|
|
|
"exoplayer2-extractor-annotation-stubs",
|
|
|
|
"gl_headers",
|
|
|
|
"jsr305",
|
|
|
|
"libEGL",
|
|
|
|
"libEGL_blobCache",
|
|
|
|
"libEGL_getProcAddress",
|
|
|
|
"libFLAC",
|
|
|
|
"libFLAC-config",
|
|
|
|
"libFLAC-headers",
|
|
|
|
"libGLESv2",
|
|
|
|
"libaacextractor",
|
|
|
|
"libamrextractor",
|
|
|
|
"libarect",
|
|
|
|
"libaudio_system_headers",
|
|
|
|
"libaudioclient",
|
|
|
|
"libaudioclient_headers",
|
|
|
|
"libaudiofoundation",
|
|
|
|
"libaudiofoundation_headers",
|
|
|
|
"libaudiomanager",
|
|
|
|
"libaudiopolicy",
|
|
|
|
"libaudioutils",
|
|
|
|
"libaudioutils_fixedfft",
|
|
|
|
"libbluetooth-types-header",
|
|
|
|
"libbufferhub",
|
|
|
|
"libbufferhub_headers",
|
|
|
|
"libbufferhubqueue",
|
|
|
|
"libc_malloc_debug_backtrace",
|
|
|
|
"libcamera_client",
|
|
|
|
"libcamera_metadata",
|
|
|
|
"libdvr_headers",
|
|
|
|
"libexpat",
|
|
|
|
"libfifo",
|
|
|
|
"libflacextractor",
|
|
|
|
"libgrallocusage",
|
|
|
|
"libgraphicsenv",
|
|
|
|
"libgui",
|
|
|
|
"libgui_headers",
|
|
|
|
"libhardware_headers",
|
|
|
|
"libinput",
|
|
|
|
"liblzma",
|
|
|
|
"libmath",
|
|
|
|
"libmedia",
|
|
|
|
"libmedia_codeclist",
|
|
|
|
"libmedia_headers",
|
|
|
|
"libmedia_helper",
|
|
|
|
"libmedia_helper_headers",
|
|
|
|
"libmedia_midiiowrapper",
|
|
|
|
"libmedia_omx",
|
|
|
|
"libmediautils",
|
|
|
|
"libmidiextractor",
|
|
|
|
"libmkvextractor",
|
|
|
|
"libmp3extractor",
|
|
|
|
"libmp4extractor",
|
|
|
|
"libmpeg2extractor",
|
|
|
|
"libnativebase_headers",
|
|
|
|
"libnativewindow_headers",
|
|
|
|
"libnblog",
|
|
|
|
"liboggextractor",
|
|
|
|
"libpackagelistparser",
|
|
|
|
"libpdx",
|
|
|
|
"libpdx_default_transport",
|
|
|
|
"libpdx_headers",
|
|
|
|
"libpdx_uds",
|
|
|
|
"libprocinfo",
|
|
|
|
"libspeexresampler",
|
|
|
|
"libspeexresampler",
|
|
|
|
"libstagefright_esds",
|
|
|
|
"libstagefright_flacdec",
|
|
|
|
"libstagefright_flacdec",
|
|
|
|
"libstagefright_foundation",
|
|
|
|
"libstagefright_foundation_headers",
|
|
|
|
"libstagefright_foundation_without_imemory",
|
|
|
|
"libstagefright_headers",
|
|
|
|
"libstagefright_id3",
|
|
|
|
"libstagefright_metadatautils",
|
|
|
|
"libstagefright_mpeg2extractor",
|
|
|
|
"libstagefright_mpeg2support",
|
|
|
|
"libsync",
|
|
|
|
"libui",
|
|
|
|
"libui_headers",
|
|
|
|
"libunwindstack",
|
|
|
|
"libvibrator",
|
|
|
|
"libvorbisidec",
|
|
|
|
"libwavextractor",
|
|
|
|
"libwebm",
|
|
|
|
"media_ndk_headers",
|
|
|
|
"media_plugin_headers",
|
|
|
|
"updatable-media",
|
2020-04-15 04:03:39 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.media.swcodec"] = []string{
|
|
|
|
"android.frameworks.bufferhub@1.0",
|
|
|
|
"android.hardware.common-ndk_platform",
|
|
|
|
"android.hardware.configstore-utils",
|
|
|
|
"android.hardware.configstore@1.0",
|
|
|
|
"android.hardware.configstore@1.1",
|
|
|
|
"android.hardware.graphics.allocator@2.0",
|
|
|
|
"android.hardware.graphics.allocator@3.0",
|
|
|
|
"android.hardware.graphics.allocator@4.0",
|
|
|
|
"android.hardware.graphics.bufferqueue@1.0",
|
|
|
|
"android.hardware.graphics.bufferqueue@2.0",
|
|
|
|
"android.hardware.graphics.common-ndk_platform",
|
|
|
|
"android.hardware.graphics.common@1.0",
|
|
|
|
"android.hardware.graphics.common@1.1",
|
|
|
|
"android.hardware.graphics.common@1.2",
|
|
|
|
"android.hardware.graphics.mapper@2.0",
|
|
|
|
"android.hardware.graphics.mapper@2.1",
|
|
|
|
"android.hardware.graphics.mapper@3.0",
|
|
|
|
"android.hardware.graphics.mapper@4.0",
|
|
|
|
"android.hardware.media.bufferpool@2.0",
|
|
|
|
"android.hardware.media.c2@1.0",
|
|
|
|
"android.hardware.media.c2@1.1",
|
|
|
|
"android.hardware.media.omx@1.0",
|
|
|
|
"android.hardware.media@1.0",
|
|
|
|
"android.hardware.media@1.0",
|
|
|
|
"android.hidl.memory.token@1.0",
|
|
|
|
"android.hidl.memory@1.0",
|
|
|
|
"android.hidl.safe_union@1.0",
|
|
|
|
"android.hidl.token@1.0",
|
|
|
|
"android.hidl.token@1.0-utils",
|
|
|
|
"libEGL",
|
|
|
|
"libFLAC",
|
|
|
|
"libFLAC-config",
|
|
|
|
"libFLAC-headers",
|
|
|
|
"libFraunhoferAAC",
|
|
|
|
"libLibGuiProperties",
|
|
|
|
"libarect",
|
|
|
|
"libaudio_system_headers",
|
|
|
|
"libaudioutils",
|
|
|
|
"libaudioutils",
|
|
|
|
"libaudioutils_fixedfft",
|
|
|
|
"libavcdec",
|
|
|
|
"libavcenc",
|
|
|
|
"libavservices_minijail",
|
|
|
|
"libavservices_minijail",
|
|
|
|
"libbinderthreadstateutils",
|
|
|
|
"libbluetooth-types-header",
|
|
|
|
"libbufferhub_headers",
|
|
|
|
"libcodec2",
|
|
|
|
"libcodec2_headers",
|
|
|
|
"libcodec2_hidl@1.0",
|
|
|
|
"libcodec2_hidl@1.1",
|
|
|
|
"libcodec2_internal",
|
|
|
|
"libcodec2_soft_aacdec",
|
|
|
|
"libcodec2_soft_aacenc",
|
|
|
|
"libcodec2_soft_amrnbdec",
|
|
|
|
"libcodec2_soft_amrnbenc",
|
|
|
|
"libcodec2_soft_amrwbdec",
|
|
|
|
"libcodec2_soft_amrwbenc",
|
|
|
|
"libcodec2_soft_av1dec_gav1",
|
|
|
|
"libcodec2_soft_avcdec",
|
|
|
|
"libcodec2_soft_avcenc",
|
|
|
|
"libcodec2_soft_common",
|
|
|
|
"libcodec2_soft_flacdec",
|
|
|
|
"libcodec2_soft_flacenc",
|
|
|
|
"libcodec2_soft_g711alawdec",
|
|
|
|
"libcodec2_soft_g711mlawdec",
|
|
|
|
"libcodec2_soft_gsmdec",
|
|
|
|
"libcodec2_soft_h263dec",
|
|
|
|
"libcodec2_soft_h263enc",
|
|
|
|
"libcodec2_soft_hevcdec",
|
|
|
|
"libcodec2_soft_hevcenc",
|
|
|
|
"libcodec2_soft_mp3dec",
|
|
|
|
"libcodec2_soft_mpeg2dec",
|
|
|
|
"libcodec2_soft_mpeg4dec",
|
|
|
|
"libcodec2_soft_mpeg4enc",
|
|
|
|
"libcodec2_soft_opusdec",
|
|
|
|
"libcodec2_soft_opusenc",
|
|
|
|
"libcodec2_soft_rawdec",
|
|
|
|
"libcodec2_soft_vorbisdec",
|
|
|
|
"libcodec2_soft_vp8dec",
|
|
|
|
"libcodec2_soft_vp8enc",
|
|
|
|
"libcodec2_soft_vp9dec",
|
|
|
|
"libcodec2_soft_vp9enc",
|
|
|
|
"libcodec2_vndk",
|
|
|
|
"libdvr_headers",
|
|
|
|
"libfmq",
|
|
|
|
"libfmq",
|
|
|
|
"libgav1",
|
|
|
|
"libgralloctypes",
|
|
|
|
"libgrallocusage",
|
|
|
|
"libgraphicsenv",
|
|
|
|
"libgsm",
|
|
|
|
"libgui_bufferqueue_static",
|
|
|
|
"libgui_headers",
|
|
|
|
"libhardware",
|
|
|
|
"libhardware_headers",
|
|
|
|
"libhevcdec",
|
|
|
|
"libhevcenc",
|
|
|
|
"libion",
|
|
|
|
"libjpeg",
|
|
|
|
"liblzma",
|
|
|
|
"libmath",
|
|
|
|
"libmedia_codecserviceregistrant",
|
|
|
|
"libmedia_headers",
|
|
|
|
"libmpeg2dec",
|
|
|
|
"libnativebase_headers",
|
|
|
|
"libnativewindow_headers",
|
|
|
|
"libpdx_headers",
|
|
|
|
"libscudo_wrapper",
|
|
|
|
"libsfplugin_ccodec_utils",
|
|
|
|
"libspeexresampler",
|
|
|
|
"libstagefright_amrnb_common",
|
|
|
|
"libstagefright_amrnbdec",
|
|
|
|
"libstagefright_amrnbenc",
|
|
|
|
"libstagefright_amrwbdec",
|
|
|
|
"libstagefright_amrwbenc",
|
|
|
|
"libstagefright_bufferpool@2.0.1",
|
|
|
|
"libstagefright_bufferqueue_helper",
|
|
|
|
"libstagefright_enc_common",
|
|
|
|
"libstagefright_flacdec",
|
|
|
|
"libstagefright_foundation",
|
|
|
|
"libstagefright_foundation_headers",
|
|
|
|
"libstagefright_headers",
|
|
|
|
"libstagefright_m4vh263dec",
|
|
|
|
"libstagefright_m4vh263enc",
|
|
|
|
"libstagefright_mp3dec",
|
|
|
|
"libsync",
|
|
|
|
"libui",
|
|
|
|
"libui_headers",
|
|
|
|
"libunwindstack",
|
|
|
|
"libvorbisidec",
|
|
|
|
"libvpx",
|
|
|
|
"libyuv",
|
|
|
|
"libyuv_static",
|
|
|
|
"media_ndk_headers",
|
|
|
|
"media_plugin_headers",
|
|
|
|
"mediaswcodec",
|
2019-11-08 11:51:01 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.mediaprovider"] = []string{
|
|
|
|
"MediaProvider",
|
|
|
|
"MediaProviderGoogle",
|
|
|
|
"fmtlib_ndk",
|
|
|
|
"libbase_ndk",
|
|
|
|
"libfuse",
|
|
|
|
"libfuse_jni",
|
2018-11-08 21:52:26 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.permission"] = []string{
|
|
|
|
"car-ui-lib",
|
|
|
|
"iconloader",
|
|
|
|
"kotlin-annotations",
|
|
|
|
"kotlin-stdlib",
|
|
|
|
"kotlin-stdlib-jdk7",
|
|
|
|
"kotlin-stdlib-jdk8",
|
|
|
|
"kotlinx-coroutines-android",
|
|
|
|
"kotlinx-coroutines-android-nodeps",
|
|
|
|
"kotlinx-coroutines-core",
|
|
|
|
"kotlinx-coroutines-core-nodeps",
|
|
|
|
"permissioncontroller-statsd",
|
|
|
|
"GooglePermissionController",
|
|
|
|
"PermissionController",
|
|
|
|
"SettingsLibActionBarShadow",
|
|
|
|
"SettingsLibAppPreference",
|
|
|
|
"SettingsLibBarChartPreference",
|
|
|
|
"SettingsLibLayoutPreference",
|
|
|
|
"SettingsLibProgressBar",
|
|
|
|
"SettingsLibSearchWidget",
|
|
|
|
"SettingsLibSettingsTheme",
|
|
|
|
"SettingsLibRestrictedLockUtils",
|
|
|
|
"SettingsLibHelpUtils",
|
2018-11-07 18:50:25 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.runtime"] = []string{
|
|
|
|
"bionic_libc_platform_headers",
|
|
|
|
"libarm-optimized-routines-math",
|
|
|
|
"libc_aeabi",
|
|
|
|
"libc_bionic",
|
|
|
|
"libc_bionic_ndk",
|
|
|
|
"libc_bootstrap",
|
|
|
|
"libc_common",
|
|
|
|
"libc_common_shared",
|
|
|
|
"libc_common_static",
|
|
|
|
"libc_dns",
|
|
|
|
"libc_dynamic_dispatch",
|
|
|
|
"libc_fortify",
|
|
|
|
"libc_freebsd",
|
|
|
|
"libc_freebsd_large_stack",
|
|
|
|
"libc_gdtoa",
|
|
|
|
"libc_init_dynamic",
|
|
|
|
"libc_init_static",
|
|
|
|
"libc_jemalloc_wrapper",
|
|
|
|
"libc_netbsd",
|
|
|
|
"libc_nomalloc",
|
|
|
|
"libc_nopthread",
|
|
|
|
"libc_openbsd",
|
|
|
|
"libc_openbsd_large_stack",
|
|
|
|
"libc_openbsd_ndk",
|
|
|
|
"libc_pthread",
|
|
|
|
"libc_static_dispatch",
|
|
|
|
"libc_syscalls",
|
|
|
|
"libc_tzcode",
|
|
|
|
"libc_unwind_static",
|
|
|
|
"libdebuggerd",
|
|
|
|
"libdebuggerd_common_headers",
|
|
|
|
"libdebuggerd_handler_core",
|
|
|
|
"libdebuggerd_handler_fallback",
|
|
|
|
"libdl_static",
|
|
|
|
"libjemalloc5",
|
|
|
|
"liblinker_main",
|
|
|
|
"liblinker_malloc",
|
|
|
|
"liblz4",
|
|
|
|
"liblzma",
|
|
|
|
"libprocinfo",
|
|
|
|
"libpropertyinfoparser",
|
|
|
|
"libscudo",
|
|
|
|
"libstdc++",
|
|
|
|
"libsystemproperties",
|
|
|
|
"libtombstoned_client_static",
|
|
|
|
"libunwindstack",
|
|
|
|
"libz",
|
|
|
|
"libziparchive",
|
2020-06-12 14:46:59 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.tethering"] = []string{
|
|
|
|
"android.hardware.tetheroffload.config-V1.0-java",
|
|
|
|
"android.hardware.tetheroffload.control-V1.0-java",
|
|
|
|
"android.hidl.base-V1.0-java",
|
|
|
|
"libcgrouprc",
|
|
|
|
"libcgrouprc_format",
|
|
|
|
"libtetherutilsjni",
|
|
|
|
"libvndksupport",
|
|
|
|
"net-utils-framework-common",
|
|
|
|
"netd_aidl_interface-V3-java",
|
|
|
|
"netlink-client",
|
|
|
|
"networkstack-aidl-interfaces-java",
|
|
|
|
"tethering-aidl-interfaces-java",
|
|
|
|
"TetheringApiCurrentLib",
|
|
|
|
}
|
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.wifi"] = []string{
|
|
|
|
"PlatformProperties",
|
|
|
|
"android.hardware.wifi-V1.0-java",
|
|
|
|
"android.hardware.wifi-V1.0-java-constants",
|
|
|
|
"android.hardware.wifi-V1.1-java",
|
|
|
|
"android.hardware.wifi-V1.2-java",
|
|
|
|
"android.hardware.wifi-V1.3-java",
|
|
|
|
"android.hardware.wifi-V1.4-java",
|
|
|
|
"android.hardware.wifi.hostapd-V1.0-java",
|
|
|
|
"android.hardware.wifi.hostapd-V1.1-java",
|
|
|
|
"android.hardware.wifi.hostapd-V1.2-java",
|
|
|
|
"android.hardware.wifi.supplicant-V1.0-java",
|
|
|
|
"android.hardware.wifi.supplicant-V1.1-java",
|
|
|
|
"android.hardware.wifi.supplicant-V1.2-java",
|
|
|
|
"android.hardware.wifi.supplicant-V1.3-java",
|
|
|
|
"android.hidl.base-V1.0-java",
|
|
|
|
"android.hidl.manager-V1.0-java",
|
|
|
|
"android.hidl.manager-V1.1-java",
|
|
|
|
"android.hidl.manager-V1.2-java",
|
|
|
|
"bouncycastle-unbundled",
|
|
|
|
"dnsresolver_aidl_interface-V2-java",
|
|
|
|
"error_prone_annotations",
|
|
|
|
"framework-wifi-pre-jarjar",
|
|
|
|
"framework-wifi-util-lib",
|
|
|
|
"ipmemorystore-aidl-interfaces-V3-java",
|
|
|
|
"ipmemorystore-aidl-interfaces-java",
|
|
|
|
"ksoap2",
|
|
|
|
"libnanohttpd",
|
|
|
|
"libwifi-jni",
|
|
|
|
"net-utils-services-common",
|
|
|
|
"netd_aidl_interface-V2-java",
|
|
|
|
"netd_aidl_interface-unstable-java",
|
|
|
|
"netd_event_listener_interface-java",
|
|
|
|
"netlink-client",
|
|
|
|
"networkstack-client",
|
|
|
|
"services.net",
|
|
|
|
"wifi-lite-protos",
|
|
|
|
"wifi-nano-protos",
|
|
|
|
"wifi-service-pre-jarjar",
|
|
|
|
"wifi-service-resources",
|
2020-06-24 16:50:26 +02:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m["com.android.os.statsd"] = []string{
|
|
|
|
"libstatssocket",
|
2020-02-26 10:27:19 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
//
|
|
|
|
// Module separator
|
|
|
|
//
|
|
|
|
m[android.AvailableToAnyApex] = []string{
|
|
|
|
// TODO(b/156996905) Set apex_available/min_sdk_version for androidx/extras support libraries
|
|
|
|
"androidx",
|
|
|
|
"androidx-constraintlayout_constraintlayout",
|
|
|
|
"androidx-constraintlayout_constraintlayout-nodeps",
|
|
|
|
"androidx-constraintlayout_constraintlayout-solver",
|
|
|
|
"androidx-constraintlayout_constraintlayout-solver-nodeps",
|
|
|
|
"com.google.android.material_material",
|
|
|
|
"com.google.android.material_material-nodeps",
|
2020-02-26 10:27:19 +01:00
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
"libatomic",
|
|
|
|
"libclang_rt",
|
|
|
|
"libgcc_stripped",
|
|
|
|
"libprofile-clang-extras",
|
|
|
|
"libprofile-clang-extras_ndk",
|
|
|
|
"libprofile-extras",
|
|
|
|
"libprofile-extras_ndk",
|
2021-01-14 04:18:53 +01:00
|
|
|
"libunwind",
|
2019-11-01 18:52:25 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return m
|
2019-11-01 18:52:25 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func init() {
|
|
|
|
android.AddNeverAllowRules(createApexPermittedPackagesRules(qModulesPackages())...)
|
|
|
|
android.AddNeverAllowRules(createApexPermittedPackagesRules(rModulesPackages())...)
|
2020-04-15 18:29:42 +02:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
func createApexPermittedPackagesRules(modules_packages map[string][]string) []android.Rule {
|
|
|
|
rules := make([]android.Rule, 0, len(modules_packages))
|
|
|
|
for module_name, module_packages := range modules_packages {
|
2020-12-21 18:11:10 +01:00
|
|
|
permittedPackagesRule := android.NeverAllow().
|
2020-11-19 06:37:47 +01:00
|
|
|
BootclasspathJar().
|
|
|
|
With("apex_available", module_name).
|
|
|
|
WithMatcher("permitted_packages", android.NotInList(module_packages)).
|
|
|
|
Because("jars that are part of the " + module_name +
|
|
|
|
" module may only allow these packages: " + strings.Join(module_packages, ",") +
|
|
|
|
". Please jarjar or move code around.")
|
2020-12-21 18:11:10 +01:00
|
|
|
rules = append(rules, permittedPackagesRule)
|
2020-01-10 16:12:39 +01:00
|
|
|
}
|
2020-11-19 06:37:47 +01:00
|
|
|
return rules
|
2020-01-10 16:12:39 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
|
|
|
|
// Adding code to the bootclasspath in new packages will cause issues on module update.
|
|
|
|
func qModulesPackages() map[string][]string {
|
|
|
|
return map[string][]string{
|
|
|
|
"com.android.conscrypt": []string{
|
|
|
|
"android.net.ssl",
|
|
|
|
"com.android.org.conscrypt",
|
|
|
|
},
|
|
|
|
"com.android.media": []string{
|
|
|
|
"android.media",
|
|
|
|
},
|
2020-05-20 02:06:00 +02:00
|
|
|
}
|
2019-11-15 10:40:32 +01:00
|
|
|
}
|
|
|
|
|
2020-11-19 06:37:47 +01:00
|
|
|
// DO NOT EDIT! These are the package prefixes that are exempted from being AOT'ed by ART.
|
|
|
|
// Adding code to the bootclasspath in new packages will cause issues on module update.
|
|
|
|
func rModulesPackages() map[string][]string {
|
|
|
|
return map[string][]string{
|
|
|
|
"com.android.mediaprovider": []string{
|
|
|
|
"android.provider",
|
|
|
|
},
|
|
|
|
"com.android.permission": []string{
|
|
|
|
"android.permission",
|
|
|
|
"android.app.role",
|
|
|
|
"com.android.permission",
|
|
|
|
"com.android.role",
|
|
|
|
},
|
|
|
|
"com.android.sdkext": []string{
|
|
|
|
"android.os.ext",
|
|
|
|
},
|
|
|
|
"com.android.os.statsd": []string{
|
|
|
|
"android.app",
|
|
|
|
"android.os",
|
|
|
|
"android.util",
|
|
|
|
"com.android.internal.statsd",
|
|
|
|
"com.android.server.stats",
|
|
|
|
},
|
|
|
|
"com.android.wifi": []string{
|
|
|
|
"com.android.server.wifi",
|
|
|
|
"com.android.wifi.x",
|
|
|
|
"android.hardware.wifi",
|
|
|
|
"android.net.wifi",
|
|
|
|
},
|
|
|
|
"com.android.tethering": []string{
|
|
|
|
"android.net",
|
|
|
|
},
|
|
|
|
}
|
2019-11-15 10:40:32 +01:00
|
|
|
}
|