2015-04-13 22:58:27 +02:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package java
|
|
|
|
|
|
|
|
// This file contains the module types for compiling Android apps.
|
|
|
|
|
|
|
|
import (
|
2019-04-26 23:31:50 +02:00
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"strings"
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2019-05-16 21:28:22 +02:00
|
|
|
"github.com/google/blueprint"
|
|
|
|
"github.com/google/blueprint/proptools"
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2018-10-03 07:03:40 +02:00
|
|
|
"android/soong/cc"
|
2018-08-08 01:49:25 +02:00
|
|
|
"android/soong/tradefed"
|
2015-04-13 22:58:27 +02:00
|
|
|
)
|
|
|
|
|
2019-04-26 23:31:50 +02:00
|
|
|
var supportedDpis = [...]string{"Ldpi", "Mdpi", "Hdpi", "Xhdpi", "Xxhdpi", "Xxxhdpi"}
|
|
|
|
var dpiVariantsStruct reflect.Type
|
|
|
|
|
2017-11-23 01:19:37 +01:00
|
|
|
func init() {
|
2017-11-23 01:20:45 +01:00
|
|
|
android.RegisterModuleType("android_app", AndroidAppFactory)
|
2018-05-22 20:11:52 +02:00
|
|
|
android.RegisterModuleType("android_test", AndroidTestFactory)
|
2018-10-05 00:22:03 +02:00
|
|
|
android.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
|
2018-10-05 00:21:03 +02:00
|
|
|
android.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
|
2019-03-01 00:35:54 +01:00
|
|
|
android.RegisterModuleType("override_android_app", OverrideAndroidAppModuleFactory)
|
2019-04-15 18:48:31 +02:00
|
|
|
android.RegisterModuleType("android_app_import", AndroidAppImportFactory)
|
2019-04-26 23:31:50 +02:00
|
|
|
|
|
|
|
// Dynamically construct a struct for the dpi_variants property in android_app_import.
|
|
|
|
perDpiStruct := reflect.StructOf([]reflect.StructField{
|
|
|
|
{
|
|
|
|
Name: "Apk",
|
|
|
|
Type: reflect.TypeOf((*string)(nil)),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
dpiVariantsFields := make([]reflect.StructField, len(supportedDpis))
|
|
|
|
for i, dpi := range supportedDpis {
|
|
|
|
dpiVariantsFields[i] = reflect.StructField{
|
|
|
|
Name: string(dpi),
|
|
|
|
Type: perDpiStruct,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dpiVariantsStruct = reflect.StructOf(dpiVariantsFields)
|
2017-11-23 01:19:37 +01:00
|
|
|
}
|
|
|
|
|
2015-04-13 22:58:27 +02:00
|
|
|
// AndroidManifest.xml merging
|
|
|
|
// package splits
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
type appProperties struct {
|
2018-10-05 00:21:03 +02:00
|
|
|
// Names of extra android_app_certificate modules to sign the apk with in the form ":module".
|
2015-05-11 22:39:40 +02:00
|
|
|
Additional_certificates []string
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
// If set, create package-export.apk, which other packages can
|
|
|
|
// use to get PRODUCT-agnostic resource data like IDs and type definitions.
|
2017-11-09 06:20:04 +01:00
|
|
|
Export_package_resources *bool
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
// Specifies that this app should be installed to the priv-app directory,
|
|
|
|
// where the system will grant it additional privileges not available to
|
|
|
|
// normal apps.
|
|
|
|
Privileged *bool
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
// list of resource labels to generate individual resource packages
|
|
|
|
Package_splits []string
|
2018-08-10 15:33:36 +02: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.
|
|
|
|
Overrides []string
|
2018-10-03 07:03:40 +02:00
|
|
|
|
|
|
|
// list of native libraries that will be provided in or alongside the resulting jar
|
|
|
|
Jni_libs []string `android:"arch_variant"`
|
|
|
|
|
2019-05-07 00:48:44 +02:00
|
|
|
// STL library to use for JNI libraries.
|
|
|
|
Stl *string `android:"arch_variant"`
|
|
|
|
|
2019-02-06 06:55:21 +01:00
|
|
|
// Store native libraries uncompressed in the APK and set the android:extractNativeLibs="false" manifest
|
|
|
|
// flag so that they are used from inside the APK at runtime. Defaults to true for android_test modules unless
|
|
|
|
// sdk_version or min_sdk_version is set to a version that doesn't support it (<23), defaults to false for other
|
|
|
|
// module types where the native libraries are generally preinstalled outside the APK.
|
|
|
|
Use_embedded_native_libs *bool
|
2019-02-07 22:07:08 +01:00
|
|
|
|
|
|
|
// Store dex files uncompressed in the APK and set the android:useEmbeddedDex="true" manifest attribute so that
|
|
|
|
// they are used from inside the APK at runtime.
|
|
|
|
Use_embedded_dex *bool
|
2019-03-26 18:51:39 +01:00
|
|
|
|
|
|
|
// Forces native libraries to always be packaged into the APK,
|
|
|
|
// Use_embedded_native_libs still selects whether they are stored uncompressed and aligned or compressed.
|
|
|
|
// True for android_test* modules.
|
|
|
|
AlwaysPackageNativeLibs bool `blueprint:"mutated"`
|
2015-05-11 22:39:40 +02:00
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2019-03-01 00:35:54 +01:00
|
|
|
// android_app properties that can be overridden by override_android_app
|
|
|
|
type overridableAppProperties struct {
|
|
|
|
// The name of a certificate in the default certificate directory, blank to use the default product certificate,
|
|
|
|
// or an android_app_certificate module name in the form ":module".
|
|
|
|
Certificate *string
|
2019-03-13 18:13:24 +01:00
|
|
|
|
|
|
|
// the package name of this app. The package name in the manifest file is used if one was not given.
|
|
|
|
Package_name *string
|
2019-03-01 00:35:54 +01:00
|
|
|
}
|
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
type AndroidApp struct {
|
2018-03-28 23:58:31 +02:00
|
|
|
Library
|
|
|
|
aapt
|
2019-03-01 00:35:54 +01:00
|
|
|
android.OverridableModuleBase
|
2015-05-11 22:39:40 +02:00
|
|
|
|
2019-05-16 21:28:22 +02:00
|
|
|
usesLibrary usesLibrary
|
|
|
|
|
2018-10-30 13:20:05 +01:00
|
|
|
certificate Certificate
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
appProperties appProperties
|
2018-05-22 20:11:52 +02:00
|
|
|
|
2019-03-01 00:35:54 +01:00
|
|
|
overridableAppProperties overridableAppProperties
|
|
|
|
|
2018-10-03 07:03:40 +02:00
|
|
|
installJniLibs []jniLib
|
2018-10-30 07:14:58 +01:00
|
|
|
|
|
|
|
bundleFile android.Path
|
2019-01-24 01:27:47 +01:00
|
|
|
|
|
|
|
// the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
|
|
|
|
installApkName string
|
2019-02-28 01:26:28 +01:00
|
|
|
|
|
|
|
additionalAaptFlags []string
|
2017-12-14 20:22:55 +01:00
|
|
|
}
|
|
|
|
|
2018-05-01 00:55:11 +02:00
|
|
|
func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
func (a *AndroidApp) ExportedStaticPackages() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
var _ AndroidLibraryDependency = (*AndroidApp)(nil)
|
|
|
|
|
2018-10-30 13:20:05 +01:00
|
|
|
type Certificate struct {
|
|
|
|
Pem, Key android.Path
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 01:51:17 +02:00
|
|
|
func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
a.Module.deps(ctx)
|
2018-10-03 07:03:40 +02:00
|
|
|
|
2019-05-07 00:48:44 +02:00
|
|
|
if String(a.appProperties.Stl) == "c++_shared" && a.sdkVersion() == "" {
|
|
|
|
ctx.PropertyErrorf("stl", "sdk_version must be set in order to use c++_shared")
|
|
|
|
}
|
|
|
|
|
2017-11-23 01:19:37 +01:00
|
|
|
if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
|
2018-06-26 00:48:06 +02:00
|
|
|
a.aapt.deps(ctx, sdkContext(a))
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
2018-10-03 07:03:40 +02:00
|
|
|
|
2019-05-07 00:48:44 +02:00
|
|
|
embedJni := a.shouldEmbedJnis(ctx)
|
2018-10-03 07:03:40 +02:00
|
|
|
for _, jniTarget := range ctx.MultiTargets() {
|
|
|
|
variation := []blueprint.Variation{
|
|
|
|
{Mutator: "arch", Variation: jniTarget.String()},
|
|
|
|
{Mutator: "link", Variation: "shared"},
|
|
|
|
}
|
|
|
|
tag := &jniDependencyTag{
|
|
|
|
target: jniTarget,
|
|
|
|
}
|
|
|
|
ctx.AddFarVariationDependencies(variation, tag, a.appProperties.Jni_libs...)
|
2019-05-07 00:48:44 +02:00
|
|
|
if String(a.appProperties.Stl) == "c++_shared" {
|
|
|
|
if embedJni {
|
2019-06-04 20:53:47 +02:00
|
|
|
ctx.AddFarVariationDependencies(variation, tag, "ndk_libc++_shared")
|
2019-05-07 00:48:44 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-03 07:03:40 +02:00
|
|
|
}
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
a.usesLibrary.deps(ctx, Bool(a.properties.No_framework_libs))
|
2019-05-11 00:16:29 +02:00
|
|
|
}
|
2018-10-05 00:21:03 +02:00
|
|
|
|
2019-05-11 00:16:29 +02:00
|
|
|
func (a *AndroidApp) OverridablePropertiesDepsMutator(ctx android.BottomUpMutatorContext) {
|
2019-01-18 23:27:16 +01:00
|
|
|
cert := android.SrcIsModule(a.getCertString(ctx))
|
2018-10-05 00:21:03 +02:00
|
|
|
if cert != "" {
|
|
|
|
ctx.AddDependency(ctx.Module(), certificateTag, cert)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, cert := range a.appProperties.Additional_certificates {
|
|
|
|
cert = android.SrcIsModule(cert)
|
|
|
|
if cert != "" {
|
|
|
|
ctx.AddDependency(ctx.Module(), certificateTag, cert)
|
|
|
|
} else {
|
|
|
|
ctx.PropertyErrorf("additional_certificates",
|
|
|
|
`must be names of android_app_certificate modules in the form ":module"`)
|
|
|
|
}
|
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2017-06-23 01:51:17 +02:00
|
|
|
func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2019-05-01 22:16:22 +02:00
|
|
|
a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
|
2019-02-07 22:07:08 +01:00
|
|
|
a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
|
2018-05-22 20:11:52 +02:00
|
|
|
a.generateAndroidBuildActions(ctx)
|
|
|
|
}
|
|
|
|
|
2019-05-01 22:16:22 +02:00
|
|
|
// Returns true if the native libraries should be stored in the APK uncompressed and the
|
2019-02-06 06:55:21 +01:00
|
|
|
// extractNativeLibs application flag should be set to false in the manifest.
|
2019-05-01 22:16:22 +02:00
|
|
|
func (a *AndroidApp) useEmbeddedNativeLibs(ctx android.ModuleContext) bool {
|
2019-02-06 06:55:21 +01:00
|
|
|
minSdkVersion, err := sdkVersionToNumber(ctx, a.minSdkVersion())
|
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("min_sdk_version", "invalid value %q: %s", a.minSdkVersion(), err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return minSdkVersion >= 23 && Bool(a.appProperties.Use_embedded_native_libs)
|
|
|
|
}
|
|
|
|
|
2018-11-12 19:13:39 +01:00
|
|
|
// Returns whether this module should have the dex file stored uncompressed in the APK.
|
|
|
|
func (a *AndroidApp) shouldUncompressDex(ctx android.ModuleContext) bool {
|
2019-02-07 22:07:08 +01:00
|
|
|
if Bool(a.appProperties.Use_embedded_dex) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-10-05 23:20:06 +02:00
|
|
|
if ctx.Config().UnbundledBuild() {
|
2018-11-12 19:13:39 +01:00
|
|
|
return false
|
2018-10-05 23:20:06 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 23:55:29 +02:00
|
|
|
// Uncompress dex in APKs of privileged apps
|
|
|
|
if ctx.Config().UncompressPrivAppDex() && Bool(a.appProperties.Privileged) {
|
2019-02-12 14:12:16 +01:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-05-02 23:55:29 +02:00
|
|
|
return shouldUncompressDex(ctx, &a.dexpreopter)
|
2018-10-05 23:20:06 +02:00
|
|
|
}
|
|
|
|
|
2019-05-07 00:48:44 +02:00
|
|
|
func (a *AndroidApp) shouldEmbedJnis(ctx android.BaseModuleContext) bool {
|
|
|
|
return ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs) ||
|
|
|
|
a.appProperties.AlwaysPackageNativeLibs
|
|
|
|
}
|
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
|
2019-02-18 19:24:16 +01:00
|
|
|
a.aapt.usesNonSdkApis = Bool(a.Module.deviceProperties.Platform_apis)
|
|
|
|
|
2019-05-31 00:51:14 +02:00
|
|
|
// Ask manifest_fixer to add or update the application element indicating this app has no code.
|
|
|
|
a.aapt.hasNoCode = !a.hasCode(ctx)
|
|
|
|
|
2019-01-22 20:19:56 +01:00
|
|
|
aaptLinkFlags := []string{}
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2019-01-22 20:19:56 +01:00
|
|
|
// Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided.
|
2018-04-20 00:25:19 +02:00
|
|
|
hasProduct := false
|
|
|
|
for _, f := range a.aaptProperties.Aaptflags {
|
|
|
|
if strings.HasPrefix(f, "--product") {
|
|
|
|
hasProduct = true
|
2019-01-22 20:19:56 +01:00
|
|
|
break
|
2018-04-20 00:25:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
|
2019-01-22 20:19:56 +01:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
|
2018-04-20 00:25:19 +02:00
|
|
|
}
|
|
|
|
|
2018-10-25 05:24:57 +02:00
|
|
|
if !Bool(a.aaptProperties.Aapt_include_all_resources) {
|
|
|
|
// Product AAPT config
|
|
|
|
for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
|
2019-01-22 20:19:56 +01:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
|
2018-10-25 05:24:57 +02:00
|
|
|
}
|
2018-04-20 00:25:19 +02:00
|
|
|
|
2018-10-25 05:24:57 +02:00
|
|
|
// Product AAPT preferred config
|
|
|
|
if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
|
2019-01-22 20:19:56 +01:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
|
2018-10-25 05:24:57 +02:00
|
|
|
}
|
2018-04-20 00:25:19 +02:00
|
|
|
}
|
|
|
|
|
2019-01-05 04:57:48 +01:00
|
|
|
manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
|
2019-03-13 18:13:24 +01:00
|
|
|
if overridden || a.overridableAppProperties.Package_name != nil {
|
|
|
|
// The product override variable has a priority over the package_name property.
|
|
|
|
if !overridden {
|
|
|
|
manifestPackageName = *a.overridableAppProperties.Package_name
|
|
|
|
}
|
2019-01-22 20:19:56 +01:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
|
2019-01-05 04:57:48 +01:00
|
|
|
}
|
|
|
|
|
2019-02-28 01:26:28 +01:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, a.additionalAaptFlags...)
|
|
|
|
|
2019-03-20 00:03:11 +01:00
|
|
|
a.aapt.splitNames = a.appProperties.Package_splits
|
2019-05-16 21:28:22 +02:00
|
|
|
a.aapt.sdkLibraries = a.exportedSdkLibs
|
2019-03-20 00:03:11 +01:00
|
|
|
|
2019-01-22 20:19:56 +01:00
|
|
|
a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
|
2017-11-23 01:19:37 +01:00
|
|
|
|
2017-06-23 01:51:17 +02:00
|
|
|
// apps manifests are handled by aapt, don't let Module see them
|
2015-09-24 00:26:20 +02:00
|
|
|
a.properties.Manifest = nil
|
2019-01-23 01:40:58 +01:00
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
|
2018-05-01 00:55:11 +02:00
|
|
|
var staticLibProguardFlagFiles android.Paths
|
|
|
|
ctx.VisitDirectDeps(func(m android.Module) {
|
|
|
|
if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
|
|
|
|
staticLibProguardFlagFiles = append(staticLibProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
staticLibProguardFlagFiles = android.FirstUniquePaths(staticLibProguardFlagFiles)
|
|
|
|
|
|
|
|
a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, staticLibProguardFlagFiles...)
|
|
|
|
a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, a.proguardOptionsFile)
|
2019-01-23 01:40:58 +01:00
|
|
|
}
|
2017-12-28 21:23:20 +01:00
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
|
2018-11-12 19:13:39 +01:00
|
|
|
|
|
|
|
var installDir string
|
|
|
|
if ctx.ModuleName() == "framework-res" {
|
|
|
|
// framework-res.apk is installed as system/framework/framework-res.apk
|
|
|
|
installDir = "framework"
|
|
|
|
} else if Bool(a.appProperties.Privileged) {
|
2019-01-24 01:27:47 +01:00
|
|
|
installDir = filepath.Join("priv-app", a.installApkName)
|
2018-11-12 19:13:39 +01:00
|
|
|
} else {
|
2019-01-24 01:27:47 +01:00
|
|
|
installDir = filepath.Join("app", a.installApkName)
|
2018-11-12 19:13:39 +01:00
|
|
|
}
|
2019-05-16 21:28:22 +02:00
|
|
|
|
2019-01-24 01:27:47 +01:00
|
|
|
a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
|
2019-02-12 14:12:16 +01:00
|
|
|
a.dexpreopter.isInstallable = Bool(a.properties.Installable)
|
|
|
|
a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
|
|
|
|
a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
|
|
|
|
a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
|
|
|
|
a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
|
|
|
|
a.dexpreopter.manifestFile = a.mergedManifestFile
|
|
|
|
|
2019-02-12 14:12:16 +01:00
|
|
|
a.deviceProperties.UncompressDex = a.dexpreopter.uncompressedDex
|
2018-10-05 23:20:06 +02:00
|
|
|
|
2017-11-23 01:20:45 +01:00
|
|
|
if ctx.ModuleName() != "framework-res" {
|
|
|
|
a.Module.compile(ctx, a.aaptSrcJar)
|
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
return a.maybeStrippedDexJarFile
|
|
|
|
}
|
2018-10-05 00:21:03 +02:00
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
|
2018-10-03 07:03:40 +02:00
|
|
|
var jniJarFile android.WritablePath
|
|
|
|
if len(jniLibs) > 0 {
|
2019-05-07 00:48:44 +02:00
|
|
|
if a.shouldEmbedJnis(ctx) {
|
2018-10-03 07:03:40 +02:00
|
|
|
jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
|
2019-05-01 22:16:22 +02:00
|
|
|
TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.useEmbeddedNativeLibs(ctx))
|
2018-10-03 07:03:40 +02:00
|
|
|
} else {
|
|
|
|
a.installJniLibs = jniLibs
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 01:40:58 +01:00
|
|
|
return jniJarFile
|
|
|
|
}
|
2018-10-03 07:03:40 +02:00
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
// Reads and prepends a main cert from the default cert dir if it hasn't been set already, i.e. it
|
|
|
|
// isn't a cert module reference. Also checks and enforces system cert restriction if applicable.
|
|
|
|
func processMainCert(m android.ModuleBase, certPropValue string, certificates []Certificate, ctx android.ModuleContext) []Certificate {
|
|
|
|
if android.SrcIsModule(certPropValue) == "" {
|
|
|
|
var mainCert Certificate
|
|
|
|
if certPropValue != "" {
|
|
|
|
defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
|
|
|
|
mainCert = Certificate{
|
|
|
|
defaultDir.Join(ctx, certPropValue+".x509.pem"),
|
|
|
|
defaultDir.Join(ctx, certPropValue+".pk8"),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pem, key := ctx.Config().DefaultAppCertificate(ctx)
|
|
|
|
mainCert = Certificate{pem, key}
|
2018-10-05 00:21:03 +02:00
|
|
|
}
|
2019-04-15 18:48:31 +02:00
|
|
|
certificates = append([]Certificate{mainCert}, certificates...)
|
2018-10-05 00:21:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
if !m.Platform() {
|
|
|
|
certPath := certificates[0].Pem.String()
|
2019-01-07 04:07:27 +01:00
|
|
|
systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
|
|
|
|
if strings.HasPrefix(certPath, systemCertPath) {
|
|
|
|
enforceSystemCert := ctx.Config().EnforceSystemCertificate()
|
|
|
|
whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
if enforceSystemCert && !inList(m.Name(), whitelist) {
|
2019-01-07 04:07:27 +01:00
|
|
|
ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
return certificates
|
2019-01-23 01:40:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
|
2019-05-16 21:28:22 +02:00
|
|
|
var apkDeps android.Paths
|
|
|
|
|
2019-01-24 01:27:47 +01:00
|
|
|
// Check if the install APK name needs to be overridden.
|
2019-03-01 00:35:54 +01:00
|
|
|
a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(a.Name())
|
2019-01-24 01:27:47 +01:00
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
// Process all building blocks, from AAPT to certificates.
|
|
|
|
a.aaptBuildActions(ctx)
|
|
|
|
|
2019-05-16 21:28:22 +02:00
|
|
|
if a.usesLibrary.enforceUsesLibraries() {
|
|
|
|
manifestCheckFile := a.usesLibrary.verifyUsesLibrariesManifest(ctx, a.mergedManifestFile)
|
|
|
|
apkDeps = append(apkDeps, manifestCheckFile)
|
|
|
|
}
|
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
a.proguardBuildActions(ctx)
|
|
|
|
|
|
|
|
dexJarFile := a.dexBuildActions(ctx)
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
jniLibs, certificateDeps := collectAppDeps(ctx)
|
2019-01-23 01:40:58 +01:00
|
|
|
jniJarFile := a.jniBuildActions(jniLibs, ctx)
|
|
|
|
|
|
|
|
if ctx.Failed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
certificates := processMainCert(a.ModuleBase, a.getCertString(ctx), certificateDeps, ctx)
|
|
|
|
a.certificate = certificates[0]
|
2019-01-23 01:40:58 +01:00
|
|
|
|
|
|
|
// Build a final signed app package.
|
2019-03-01 00:35:54 +01:00
|
|
|
// TODO(jungjw): Consider changing this to installApkName.
|
2019-01-23 01:40:58 +01:00
|
|
|
packageFile := android.PathForModuleOut(ctx, ctx.ModuleName()+".apk")
|
2019-05-16 21:28:22 +02:00
|
|
|
CreateAndSignAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates, apkDeps)
|
2017-11-23 01:19:37 +01:00
|
|
|
a.outputFile = packageFile
|
|
|
|
|
2019-03-20 00:03:11 +01:00
|
|
|
for _, split := range a.aapt.splits {
|
|
|
|
// Sign the split APKs
|
|
|
|
packageFile := android.PathForModuleOut(ctx, ctx.ModuleName()+"_"+split.suffix+".apk")
|
2019-05-16 21:28:22 +02:00
|
|
|
CreateAndSignAppPackage(ctx, packageFile, split.path, nil, nil, certificates, apkDeps)
|
2019-03-20 00:03:11 +01:00
|
|
|
a.extraOutputFiles = append(a.extraOutputFiles, packageFile)
|
|
|
|
}
|
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
// Build an app bundle.
|
2018-10-30 07:14:58 +01:00
|
|
|
bundleFile := android.PathForModuleOut(ctx, "base.zip")
|
|
|
|
BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
|
|
|
|
a.bundleFile = bundleFile
|
|
|
|
|
2019-01-23 01:40:58 +01:00
|
|
|
// Install the app package.
|
2019-03-20 00:03:11 +01:00
|
|
|
var installDir android.OutputPath
|
2017-11-23 01:20:45 +01:00
|
|
|
if ctx.ModuleName() == "framework-res" {
|
|
|
|
// framework-res.apk is installed as system/framework/framework-res.apk
|
2019-03-20 00:03:11 +01:00
|
|
|
installDir = android.PathForModuleInstall(ctx, "framework")
|
2017-12-14 07:46:28 +01:00
|
|
|
} else if Bool(a.appProperties.Privileged) {
|
2019-03-20 00:03:11 +01:00
|
|
|
installDir = android.PathForModuleInstall(ctx, "priv-app", a.installApkName)
|
2017-11-23 01:20:45 +01:00
|
|
|
} else {
|
2019-03-20 00:03:11 +01:00
|
|
|
installDir = android.PathForModuleInstall(ctx, "app", a.installApkName)
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.InstallFile(installDir, a.installApkName+".apk", a.outputFile)
|
|
|
|
for _, split := range a.aapt.splits {
|
|
|
|
ctx.InstallFile(installDir, a.installApkName+"_"+split.suffix+".apk", split.path)
|
2017-11-23 01:20:45 +01:00
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
func collectAppDeps(ctx android.ModuleContext) ([]jniLib, []Certificate) {
|
2018-10-03 07:03:40 +02:00
|
|
|
var jniLibs []jniLib
|
2018-10-30 13:20:05 +01:00
|
|
|
var certificates []Certificate
|
2018-10-03 07:03:40 +02:00
|
|
|
|
|
|
|
ctx.VisitDirectDeps(func(module android.Module) {
|
|
|
|
otherName := ctx.OtherModuleName(module)
|
|
|
|
tag := ctx.OtherModuleDependencyTag(module)
|
|
|
|
|
|
|
|
if jniTag, ok := tag.(*jniDependencyTag); ok {
|
|
|
|
if dep, ok := module.(*cc.Module); ok {
|
|
|
|
lib := dep.OutputFile()
|
|
|
|
if lib.Valid() {
|
|
|
|
jniLibs = append(jniLibs, jniLib{
|
|
|
|
name: ctx.OtherModuleName(module),
|
|
|
|
path: lib.Path(),
|
|
|
|
target: jniTag.target,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("dependency %q missing output file", otherName)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("jni_libs dependency %q must be a cc library", otherName)
|
|
|
|
}
|
2018-10-05 00:21:03 +02:00
|
|
|
} else if tag == certificateTag {
|
|
|
|
if dep, ok := module.(*AndroidAppCertificate); ok {
|
2018-10-30 13:20:05 +01:00
|
|
|
certificates = append(certificates, dep.Certificate)
|
2018-10-05 00:21:03 +02:00
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
|
|
|
|
}
|
2018-10-03 07:03:40 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-10-05 00:21:03 +02:00
|
|
|
return jniLibs, certificates
|
2018-10-03 07:03:40 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (a *AndroidApp) getCertString(ctx android.BaseModuleContext) string {
|
2019-01-18 23:27:16 +01:00
|
|
|
certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
|
|
|
|
if overridden {
|
2019-02-28 17:22:30 +01:00
|
|
|
return ":" + certificate
|
2019-01-18 23:27:16 +01:00
|
|
|
}
|
2019-03-01 00:35:54 +01:00
|
|
|
return String(a.overridableAppProperties.Certificate)
|
2019-01-18 23:27:16 +01:00
|
|
|
}
|
|
|
|
|
2019-02-12 23:41:32 +01:00
|
|
|
// android_app compiles sources and Android resources into an Android application package `.apk` file.
|
2017-06-24 00:06:31 +02:00
|
|
|
func AndroidAppFactory() android.Module {
|
2015-04-13 22:58:27 +02:00
|
|
|
module := &AndroidApp{}
|
|
|
|
|
2019-04-17 02:16:58 +02:00
|
|
|
module.Module.deviceProperties.Optimize.EnabledByDefault = true
|
2017-12-28 21:23:20 +01:00
|
|
|
module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
|
|
|
|
|
2018-05-22 20:11:52 +02:00
|
|
|
module.Module.properties.Instrument = true
|
2018-06-27 02:59:05 +02:00
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2018-05-22 20:11:52 +02:00
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
module.AddProperties(
|
2017-06-23 02:01:52 +02:00
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-12 19:13:39 +01:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-03-28 23:58:31 +02:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
2019-03-01 00:35:54 +01:00
|
|
|
&module.appProperties,
|
2019-05-16 21:28:22 +02:00
|
|
|
&module.overridableAppProperties,
|
|
|
|
&module.usesLibrary.usesLibraryProperties)
|
2017-06-24 00:06:31 +02:00
|
|
|
|
2018-10-02 22:59:46 +02:00
|
|
|
module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
|
|
|
|
return class == android.Device && ctx.Config().DevicePrefer32BitApps()
|
|
|
|
})
|
|
|
|
|
2018-10-03 07:03:40 +02:00
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
2019-03-01 00:35:54 +01:00
|
|
|
android.InitOverridableModule(module, &module.appProperties.Overrides)
|
2018-10-03 07:03:40 +02:00
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
return module
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
2018-05-22 20:11:52 +02:00
|
|
|
|
|
|
|
type appTestProperties struct {
|
|
|
|
Instrumentation_for *string
|
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidTest struct {
|
|
|
|
AndroidApp
|
|
|
|
|
|
|
|
appTestProperties appTestProperties
|
|
|
|
|
|
|
|
testProperties testProperties
|
2018-08-08 01:49:25 +02:00
|
|
|
|
|
|
|
testConfig android.Path
|
2018-08-11 01:06:24 +02:00
|
|
|
data android.Paths
|
2018-05-22 20:11:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2019-02-28 01:26:28 +01:00
|
|
|
// Check if the instrumentation target package is overridden before generating build actions.
|
|
|
|
if a.appTestProperties.Instrumentation_for != nil {
|
|
|
|
manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(*a.appTestProperties.Instrumentation_for)
|
|
|
|
if overridden {
|
|
|
|
a.additionalAaptFlags = append(a.additionalAaptFlags, "--rename-instrumentation-target-package "+manifestPackageName)
|
|
|
|
}
|
|
|
|
}
|
2019-05-01 22:16:22 +02:00
|
|
|
a.aapt.useEmbeddedNativeLibs = a.useEmbeddedNativeLibs(ctx)
|
|
|
|
a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
|
2018-05-22 20:11:52 +02:00
|
|
|
a.generateAndroidBuildActions(ctx)
|
2018-08-08 01:49:25 +02:00
|
|
|
|
2019-02-13 14:45:47 +01:00
|
|
|
a.testConfig = tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites)
|
2019-03-06 07:25:09 +01:00
|
|
|
a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data)
|
2018-08-08 01:49:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
a.AndroidApp.DepsMutator(ctx)
|
2018-10-16 01:18:06 +02:00
|
|
|
if a.appTestProperties.Instrumentation_for != nil {
|
|
|
|
// The android_app dependency listed in instrumentation_for needs to be added to the classpath for javac,
|
|
|
|
// but not added to the aapt2 link includes like a normal android_app or android_library dependency, so
|
|
|
|
// use instrumentationForTag instead of libTag.
|
|
|
|
ctx.AddVariationDependencies(nil, instrumentationForTag, String(a.appTestProperties.Instrumentation_for))
|
|
|
|
}
|
2018-05-22 20:11:52 +02:00
|
|
|
}
|
|
|
|
|
2019-02-12 23:41:32 +01:00
|
|
|
// android_test compiles test sources and Android resources into an Android application package `.apk` file and
|
|
|
|
// creates an `AndroidTest.xml` file to allow running the test with `atest` or a `TEST_MAPPING` file.
|
2018-05-22 20:11:52 +02:00
|
|
|
func AndroidTestFactory() android.Module {
|
|
|
|
module := &AndroidTest{}
|
|
|
|
|
2019-04-17 02:16:58 +02:00
|
|
|
module.Module.deviceProperties.Optimize.EnabledByDefault = true
|
2018-09-18 01:46:35 +02:00
|
|
|
|
|
|
|
module.Module.properties.Instrument = true
|
2018-06-27 02:59:05 +02:00
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2019-02-06 06:55:21 +01:00
|
|
|
module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
|
2019-03-26 18:51:39 +01:00
|
|
|
module.appProperties.AlwaysPackageNativeLibs = true
|
2018-11-12 19:13:39 +01:00
|
|
|
module.Module.dexpreopter.isTest = true
|
2018-05-22 20:11:52 +02:00
|
|
|
|
|
|
|
module.AddProperties(
|
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-12 19:13:39 +01:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-05-22 20:11:52 +02:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
|
|
|
&module.appProperties,
|
2018-07-17 02:21:19 +02:00
|
|
|
&module.appTestProperties,
|
2019-03-01 00:35:54 +01:00
|
|
|
&module.overridableAppProperties,
|
2019-05-16 21:28:22 +02:00
|
|
|
&module.usesLibrary.usesLibraryProperties,
|
2018-07-17 02:21:19 +02:00
|
|
|
&module.testProperties)
|
2018-05-22 20:11:52 +02:00
|
|
|
|
2018-10-03 07:03:40 +02:00
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
2018-05-22 20:11:52 +02:00
|
|
|
return module
|
|
|
|
}
|
2018-10-05 00:21:03 +02:00
|
|
|
|
2018-10-05 00:22:03 +02:00
|
|
|
type appTestHelperAppProperties struct {
|
|
|
|
// list of compatibility suites (for example "cts", "vts") that the module should be
|
|
|
|
// installed into.
|
|
|
|
Test_suites []string `android:"arch_variant"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidTestHelperApp struct {
|
|
|
|
AndroidApp
|
|
|
|
|
|
|
|
appTestHelperAppProperties appTestHelperAppProperties
|
|
|
|
}
|
|
|
|
|
2019-02-12 23:41:32 +01:00
|
|
|
// android_test_helper_app compiles sources and Android resources into an Android application package `.apk` file that
|
|
|
|
// will be used by tests, but does not produce an `AndroidTest.xml` file so the module will not be run directly as a
|
|
|
|
// test.
|
2018-10-05 00:22:03 +02:00
|
|
|
func AndroidTestHelperAppFactory() android.Module {
|
|
|
|
module := &AndroidTestHelperApp{}
|
|
|
|
|
2019-04-17 02:16:58 +02:00
|
|
|
module.Module.deviceProperties.Optimize.EnabledByDefault = true
|
2018-10-05 00:22:03 +02:00
|
|
|
|
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2019-02-06 06:55:21 +01:00
|
|
|
module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
|
2019-03-26 18:51:39 +01:00
|
|
|
module.appProperties.AlwaysPackageNativeLibs = true
|
2018-11-12 19:13:39 +01:00
|
|
|
module.Module.dexpreopter.isTest = true
|
2018-10-05 00:22:03 +02:00
|
|
|
|
|
|
|
module.AddProperties(
|
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-12 19:13:39 +01:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-10-05 00:22:03 +02:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
|
|
|
&module.appProperties,
|
2019-03-01 00:35:54 +01:00
|
|
|
&module.appTestHelperAppProperties,
|
2019-05-16 21:28:22 +02:00
|
|
|
&module.overridableAppProperties,
|
|
|
|
&module.usesLibrary.usesLibraryProperties)
|
2018-10-05 00:22:03 +02:00
|
|
|
|
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2018-10-05 00:21:03 +02:00
|
|
|
type AndroidAppCertificate struct {
|
|
|
|
android.ModuleBase
|
|
|
|
properties AndroidAppCertificateProperties
|
2018-10-30 13:20:05 +01:00
|
|
|
Certificate Certificate
|
2018-10-05 00:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidAppCertificateProperties struct {
|
|
|
|
// Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
|
|
|
|
Certificate *string
|
|
|
|
}
|
|
|
|
|
2019-02-12 23:41:32 +01:00
|
|
|
// android_app_certificate modules can be referenced by the certificates property of android_app modules to select
|
|
|
|
// the signing key.
|
2018-10-05 00:21:03 +02:00
|
|
|
func AndroidAppCertificateFactory() android.Module {
|
|
|
|
module := &AndroidAppCertificate{}
|
|
|
|
module.AddProperties(&module.properties)
|
|
|
|
android.InitAndroidModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *AndroidAppCertificate) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
cert := String(c.properties.Certificate)
|
2018-10-30 13:20:05 +01:00
|
|
|
c.Certificate = Certificate{
|
2018-10-05 00:21:03 +02:00
|
|
|
android.PathForModuleSrc(ctx, cert+".x509.pem"),
|
|
|
|
android.PathForModuleSrc(ctx, cert+".pk8"),
|
|
|
|
}
|
|
|
|
}
|
2019-03-01 00:35:54 +01:00
|
|
|
|
|
|
|
type OverrideAndroidApp struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.OverrideModuleBase
|
|
|
|
}
|
|
|
|
|
|
|
|
func (i *OverrideAndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
// All the overrides happen in the base module.
|
|
|
|
// TODO(jungjw): Check the base module type.
|
|
|
|
}
|
|
|
|
|
|
|
|
// override_android_app is used to create an android_app module based on another android_app by overriding
|
|
|
|
// some of its properties.
|
|
|
|
func OverrideAndroidAppModuleFactory() android.Module {
|
|
|
|
m := &OverrideAndroidApp{}
|
|
|
|
m.AddProperties(&overridableAppProperties{})
|
|
|
|
|
2019-05-11 00:16:29 +02:00
|
|
|
android.InitAndroidMultiTargetsArchModule(m, android.DeviceSupported, android.MultilibCommon)
|
2019-03-01 00:35:54 +01:00
|
|
|
android.InitOverrideModule(m)
|
|
|
|
return m
|
|
|
|
}
|
2019-04-15 18:48:31 +02:00
|
|
|
|
|
|
|
type AndroidAppImport struct {
|
|
|
|
android.ModuleBase
|
|
|
|
android.DefaultableModuleBase
|
|
|
|
prebuilt android.Prebuilt
|
|
|
|
|
|
|
|
properties AndroidAppImportProperties
|
|
|
|
|
|
|
|
outputFile android.Path
|
|
|
|
certificate *Certificate
|
|
|
|
|
|
|
|
dexpreopter
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
usesLibrary usesLibrary
|
2019-04-15 18:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidAppImportProperties struct {
|
|
|
|
// A prebuilt apk to import
|
|
|
|
Apk string
|
|
|
|
|
2019-04-26 23:31:50 +02:00
|
|
|
// Per-DPI settings. This property makes it possible to specify a different source apk path for
|
|
|
|
// each DPI.
|
|
|
|
//
|
|
|
|
// Example:
|
|
|
|
//
|
|
|
|
// android_app_import {
|
|
|
|
// name: "example_import",
|
|
|
|
// apk: "prebuilts/example.apk",
|
|
|
|
// dpi_variants: {
|
|
|
|
// mdpi: {
|
|
|
|
// apk: "prebuilts/example_mdpi.apk",
|
|
|
|
// },
|
|
|
|
// xhdpi: {
|
|
|
|
// apk: "prebuilts/example_xhdpi.apk",
|
|
|
|
// },
|
|
|
|
// },
|
|
|
|
// certificate: "PRESIGNED",
|
|
|
|
// }
|
|
|
|
Dpi_variants interface{}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
// The name of a certificate in the default certificate directory, blank to use the default
|
|
|
|
// product certificate, or an android_app_certificate module name in the form ":module".
|
|
|
|
Certificate *string
|
|
|
|
|
|
|
|
// Set this flag to true if the prebuilt apk is already signed. The certificate property must not
|
|
|
|
// be set for presigned modules.
|
|
|
|
Presigned *bool
|
|
|
|
|
|
|
|
// Specifies that this app should be installed to the priv-app directory,
|
|
|
|
// where the system will grant it additional privileges not available to
|
|
|
|
// normal apps.
|
|
|
|
Privileged *bool
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
Overrides []string
|
|
|
|
}
|
|
|
|
|
2019-04-26 23:31:50 +02:00
|
|
|
func getApkPathForDpi(dpiVariantsValue reflect.Value, dpi string) string {
|
|
|
|
dpiField := dpiVariantsValue.FieldByName(proptools.FieldNameForProperty(dpi))
|
|
|
|
if !dpiField.IsValid() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
apkValue := dpiField.FieldByName("Apk").Elem()
|
|
|
|
if apkValue.IsValid() {
|
|
|
|
return apkValue.String()
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chooses a source APK path to use based on the module's per-DPI settings and the product config.
|
|
|
|
func (a *AndroidAppImport) getSrcApkPath(ctx android.ModuleContext) string {
|
|
|
|
config := ctx.Config()
|
|
|
|
dpiVariantsValue := reflect.ValueOf(a.properties.Dpi_variants).Elem()
|
|
|
|
if !dpiVariantsValue.IsValid() {
|
|
|
|
return a.properties.Apk
|
|
|
|
}
|
|
|
|
// Match PRODUCT_AAPT_PREF_CONFIG first and then PRODUCT_AAPT_PREBUILT_DPI.
|
|
|
|
if config.ProductAAPTPreferredConfig() != "" {
|
|
|
|
if apk := getApkPathForDpi(dpiVariantsValue, config.ProductAAPTPreferredConfig()); apk != "" {
|
|
|
|
return apk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, dpi := range config.ProductAAPTPrebuiltDPI() {
|
|
|
|
if apk := getApkPathForDpi(dpiVariantsValue, dpi); apk != "" {
|
|
|
|
return apk
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No match. Use the generic one.
|
|
|
|
return a.properties.Apk
|
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
func (a *AndroidAppImport) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
cert := android.SrcIsModule(String(a.properties.Certificate))
|
|
|
|
if cert != "" {
|
|
|
|
ctx.AddDependency(ctx.Module(), certificateTag, cert)
|
|
|
|
}
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
a.usesLibrary.deps(ctx, false)
|
2019-04-15 18:48:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidAppImport) uncompressEmbeddedJniLibs(
|
|
|
|
ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.Command().
|
|
|
|
Textf(`if (zipinfo %s 'lib/*.so' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
|
|
|
|
Tool(ctx.Config().HostToolPath(ctx, "zip2zip")).
|
|
|
|
FlagWithInput("-i ", inputPath).
|
|
|
|
FlagWithOutput("-o ", outputPath).
|
|
|
|
FlagWithArg("-0 ", "'lib/**/*.so'").
|
|
|
|
Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
|
|
|
|
rule.Build(pctx, ctx, "uncompress-embedded-jni-libs", "Uncompress embedded JIN libs")
|
|
|
|
}
|
|
|
|
|
2019-05-02 23:55:29 +02:00
|
|
|
// Returns whether this module should have the dex file stored uncompressed in the APK.
|
|
|
|
func (a *AndroidAppImport) shouldUncompressDex(ctx android.ModuleContext) bool {
|
|
|
|
if ctx.Config().UnbundledBuild() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Uncompress dex in APKs of privileged apps
|
|
|
|
if ctx.Config().UncompressPrivAppDex() && Bool(a.properties.Privileged) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
return shouldUncompressDex(ctx, &a.dexpreopter)
|
|
|
|
}
|
|
|
|
|
2019-05-09 23:36:34 +02:00
|
|
|
func (a *AndroidAppImport) uncompressDex(
|
|
|
|
ctx android.ModuleContext, inputPath android.Path, outputPath android.OutputPath) {
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
rule.Command().
|
|
|
|
Textf(`if (zipinfo %s '*.dex' 2>/dev/null | grep -v ' stor ' >/dev/null) ; then`, inputPath).
|
|
|
|
Tool(ctx.Config().HostToolPath(ctx, "zip2zip")).
|
|
|
|
FlagWithInput("-i ", inputPath).
|
|
|
|
FlagWithOutput("-o ", outputPath).
|
|
|
|
FlagWithArg("-0 ", "'classes*.dex'").
|
|
|
|
Textf(`; else cp -f %s %s; fi`, inputPath, outputPath)
|
|
|
|
rule.Build(pctx, ctx, "uncompress-dex", "Uncompress dex files")
|
|
|
|
}
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
func (a *AndroidAppImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
if String(a.properties.Certificate) == "" && !Bool(a.properties.Presigned) {
|
|
|
|
ctx.PropertyErrorf("certificate", "No certificate specified for prebuilt")
|
|
|
|
}
|
|
|
|
if String(a.properties.Certificate) != "" && Bool(a.properties.Presigned) {
|
|
|
|
ctx.PropertyErrorf("certificate", "Certificate can't be specified for presigned modules")
|
|
|
|
}
|
|
|
|
|
|
|
|
_, certificates := collectAppDeps(ctx)
|
|
|
|
|
|
|
|
// TODO: LOCAL_EXTRACT_APK/LOCAL_EXTRACT_DPI_APK
|
|
|
|
// TODO: LOCAL_PACKAGE_SPLITS
|
|
|
|
|
2019-05-16 21:28:22 +02:00
|
|
|
var srcApk android.Path
|
|
|
|
srcApk = android.PathForModuleSrc(ctx, a.getSrcApkPath(ctx))
|
|
|
|
|
|
|
|
if a.usesLibrary.enforceUsesLibraries() {
|
|
|
|
srcApk = a.usesLibrary.verifyUsesLibrariesAPK(ctx, srcApk)
|
|
|
|
}
|
2019-04-15 18:48:31 +02:00
|
|
|
|
|
|
|
// TODO: Install or embed JNI libraries
|
|
|
|
|
|
|
|
// Uncompress JNI libraries in the apk
|
|
|
|
jnisUncompressed := android.PathForModuleOut(ctx, "jnis-uncompressed", ctx.ModuleName()+".apk")
|
|
|
|
a.uncompressEmbeddedJniLibs(ctx, srcApk, jnisUncompressed.OutputPath)
|
|
|
|
|
|
|
|
installDir := android.PathForModuleInstall(ctx, "app", a.BaseModuleName())
|
|
|
|
a.dexpreopter.installPath = installDir.Join(ctx, a.BaseModuleName()+".apk")
|
|
|
|
a.dexpreopter.isInstallable = true
|
|
|
|
a.dexpreopter.isPresignedPrebuilt = Bool(a.properties.Presigned)
|
2019-05-02 23:55:29 +02:00
|
|
|
a.dexpreopter.uncompressedDex = a.shouldUncompressDex(ctx)
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
a.dexpreopter.enforceUsesLibs = a.usesLibrary.enforceUsesLibraries()
|
|
|
|
a.dexpreopter.usesLibs = a.usesLibrary.usesLibraryProperties.Uses_libs
|
|
|
|
a.dexpreopter.optionalUsesLibs = a.usesLibrary.presentOptionalUsesLibs(ctx)
|
|
|
|
a.dexpreopter.libraryPaths = a.usesLibrary.usesLibraryPaths(ctx)
|
|
|
|
|
2019-04-15 18:48:31 +02:00
|
|
|
dexOutput := a.dexpreopter.dexpreopt(ctx, jnisUncompressed)
|
2019-05-09 23:36:34 +02:00
|
|
|
if a.dexpreopter.uncompressedDex {
|
|
|
|
dexUncompressed := android.PathForModuleOut(ctx, "dex-uncompressed", ctx.ModuleName()+".apk")
|
|
|
|
a.uncompressDex(ctx, dexOutput, dexUncompressed.OutputPath)
|
|
|
|
dexOutput = dexUncompressed
|
|
|
|
}
|
2019-04-15 18:48:31 +02:00
|
|
|
|
|
|
|
// Sign or align the package
|
|
|
|
// TODO: Handle EXTERNAL
|
|
|
|
if !Bool(a.properties.Presigned) {
|
|
|
|
certificates = processMainCert(a.ModuleBase, *a.properties.Certificate, certificates, ctx)
|
|
|
|
if len(certificates) != 1 {
|
|
|
|
ctx.ModuleErrorf("Unexpected number of certificates were extracted: %q", certificates)
|
|
|
|
}
|
|
|
|
a.certificate = &certificates[0]
|
|
|
|
signed := android.PathForModuleOut(ctx, "signed", ctx.ModuleName()+".apk")
|
|
|
|
SignAppPackage(ctx, signed, dexOutput, certificates)
|
|
|
|
a.outputFile = signed
|
|
|
|
} else {
|
|
|
|
alignedApk := android.PathForModuleOut(ctx, "zip-aligned", ctx.ModuleName()+".apk")
|
|
|
|
TransformZipAlign(ctx, alignedApk, dexOutput)
|
|
|
|
a.outputFile = alignedApk
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Optionally compress the output apk.
|
|
|
|
|
|
|
|
ctx.InstallFile(installDir, a.BaseModuleName()+".apk", a.outputFile)
|
|
|
|
|
|
|
|
// TODO: androidmk converter jni libs
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidAppImport) Prebuilt() *android.Prebuilt {
|
|
|
|
return &a.prebuilt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidAppImport) Name() string {
|
|
|
|
return a.prebuilt.Name(a.ModuleBase.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
// android_app_import imports a prebuilt apk with additional processing specified in the module.
|
|
|
|
func AndroidAppImportFactory() android.Module {
|
|
|
|
module := &AndroidAppImport{}
|
2019-04-26 23:31:50 +02:00
|
|
|
module.properties.Dpi_variants = reflect.New(dpiVariantsStruct).Interface()
|
2019-04-15 18:48:31 +02:00
|
|
|
module.AddProperties(&module.properties)
|
|
|
|
module.AddProperties(&module.dexpreoptProperties)
|
2019-05-16 21:28:22 +02:00
|
|
|
module.AddProperties(&module.usesLibrary.usesLibraryProperties)
|
2019-04-15 18:48:31 +02:00
|
|
|
|
|
|
|
InitJavaModule(module, android.DeviceSupported)
|
|
|
|
android.InitSingleSourcePrebuiltModule(module, &module.properties.Apk)
|
|
|
|
|
|
|
|
return module
|
|
|
|
}
|
2019-05-16 21:28:22 +02:00
|
|
|
|
|
|
|
type UsesLibraryProperties struct {
|
|
|
|
// A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file.
|
|
|
|
Uses_libs []string
|
|
|
|
|
|
|
|
// A list of shared library modules that will be listed in uses-library tags in the AndroidManifest.xml file with
|
|
|
|
// required=false.
|
|
|
|
Optional_uses_libs []string
|
|
|
|
|
|
|
|
// If true, the list of uses_libs and optional_uses_libs modules must match the AndroidManifest.xml file. Defaults
|
|
|
|
// to true if either uses_libs or optional_uses_libs is set. Will unconditionally default to true in the future.
|
|
|
|
Enforce_uses_libs *bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// usesLibrary provides properties and helper functions for AndroidApp and AndroidAppImport to verify that the
|
|
|
|
// <uses-library> tags that end up in the manifest of an APK match the ones known to the build system through the
|
|
|
|
// uses_libs and optional_uses_libs properties. The build system's values are used by dexpreopt to preopt apps
|
|
|
|
// with knowledge of their shared libraries.
|
|
|
|
type usesLibrary struct {
|
|
|
|
usesLibraryProperties UsesLibraryProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *usesLibrary) deps(ctx android.BottomUpMutatorContext, noFrameworkLibs bool) {
|
2019-06-07 22:18:09 +02:00
|
|
|
if !ctx.Config().UnbundledBuild() {
|
|
|
|
ctx.AddVariationDependencies(nil, usesLibTag, u.usesLibraryProperties.Uses_libs...)
|
|
|
|
ctx.AddVariationDependencies(nil, usesLibTag, u.presentOptionalUsesLibs(ctx)...)
|
|
|
|
if !noFrameworkLibs {
|
|
|
|
// dexpreopt/dexpreopt.go needs the paths to the dex jars of these libraries in case construct_context.sh needs
|
|
|
|
// to pass them to dex2oat. Add them as a dependency so we can determine the path to the dex jar of each
|
|
|
|
// library to dexpreopt.
|
|
|
|
ctx.AddVariationDependencies(nil, usesLibTag,
|
|
|
|
"org.apache.http.legacy",
|
|
|
|
"android.hidl.base-V1.0-java",
|
|
|
|
"android.hidl.manager-V1.0-java")
|
|
|
|
}
|
2019-05-16 21:28:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// presentOptionalUsesLibs returns optional_uses_libs after filtering out MissingUsesLibraries, which don't exist in the
|
|
|
|
// build.
|
|
|
|
func (u *usesLibrary) presentOptionalUsesLibs(ctx android.BaseModuleContext) []string {
|
|
|
|
optionalUsesLibs, _ := android.FilterList(u.usesLibraryProperties.Optional_uses_libs, ctx.Config().MissingUsesLibraries())
|
|
|
|
return optionalUsesLibs
|
|
|
|
}
|
|
|
|
|
|
|
|
// usesLibraryPaths returns a map of module names of shared library dependencies to the paths to their dex jars.
|
|
|
|
func (u *usesLibrary) usesLibraryPaths(ctx android.ModuleContext) map[string]android.Path {
|
|
|
|
usesLibPaths := make(map[string]android.Path)
|
|
|
|
|
|
|
|
if !ctx.Config().UnbundledBuild() {
|
|
|
|
ctx.VisitDirectDepsWithTag(usesLibTag, func(m android.Module) {
|
|
|
|
if lib, ok := m.(Dependency); ok {
|
|
|
|
if dexJar := lib.DexJar(); dexJar != nil {
|
|
|
|
usesLibPaths[ctx.OtherModuleName(m)] = dexJar
|
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must produce a dex jar, does it have installable: true?",
|
|
|
|
ctx.OtherModuleName(m))
|
|
|
|
}
|
|
|
|
} else if ctx.Config().AllowMissingDependencies() {
|
|
|
|
ctx.AddMissingDependencies([]string{ctx.OtherModuleName(m)})
|
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("module %q in uses_libs or optional_uses_libs must be a java library",
|
|
|
|
ctx.OtherModuleName(m))
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return usesLibPaths
|
|
|
|
}
|
|
|
|
|
|
|
|
// enforceUsesLibraries returns true of <uses-library> tags should be checked against uses_libs and optional_uses_libs
|
|
|
|
// properties. Defaults to true if either of uses_libs or optional_uses_libs is specified. Will default to true
|
|
|
|
// unconditionally in the future.
|
|
|
|
func (u *usesLibrary) enforceUsesLibraries() bool {
|
|
|
|
defaultEnforceUsesLibs := len(u.usesLibraryProperties.Uses_libs) > 0 ||
|
|
|
|
len(u.usesLibraryProperties.Optional_uses_libs) > 0
|
|
|
|
return BoolDefault(u.usesLibraryProperties.Enforce_uses_libs, defaultEnforceUsesLibs)
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyUsesLibrariesManifest checks the <uses-library> tags in an AndroidManifest.xml against the ones specified
|
|
|
|
// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the manifest.
|
|
|
|
func (u *usesLibrary) verifyUsesLibrariesManifest(ctx android.ModuleContext, manifest android.Path) android.Path {
|
|
|
|
outputFile := android.PathForModuleOut(ctx, "manifest_check", "AndroidManifest.xml")
|
|
|
|
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
cmd := rule.Command().Tool(ctx.Config().HostToolPath(ctx, "manifest_check")).
|
|
|
|
Flag("--enforce-uses-libraries").
|
|
|
|
Input(manifest).
|
|
|
|
FlagWithOutput("-o ", outputFile)
|
|
|
|
|
|
|
|
for _, lib := range u.usesLibraryProperties.Uses_libs {
|
|
|
|
cmd.FlagWithArg("--uses-library ", lib)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, lib := range u.usesLibraryProperties.Optional_uses_libs {
|
|
|
|
cmd.FlagWithArg("--optional-uses-library ", lib)
|
|
|
|
}
|
|
|
|
|
|
|
|
rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
|
|
|
|
|
|
|
|
return outputFile
|
|
|
|
}
|
|
|
|
|
|
|
|
// verifyUsesLibrariesAPK checks the <uses-library> tags in the manifest of an APK against the ones specified
|
|
|
|
// in the uses_libs and optional_uses_libs properties. It returns the path to a copy of the APK.
|
|
|
|
func (u *usesLibrary) verifyUsesLibrariesAPK(ctx android.ModuleContext, apk android.Path) android.Path {
|
|
|
|
outputFile := android.PathForModuleOut(ctx, "verify_uses_libraries", apk.Base())
|
|
|
|
|
|
|
|
rule := android.NewRuleBuilder()
|
|
|
|
aapt := ctx.Config().HostToolPath(ctx, "aapt")
|
|
|
|
rule.Command().
|
|
|
|
Textf("aapt_binary=%s", aapt.String()).Implicit(aapt).
|
|
|
|
Textf(`uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Uses_libs, " ")).
|
|
|
|
Textf(`optional_uses_library_names="%s"`, strings.Join(u.usesLibraryProperties.Optional_uses_libs, " ")).
|
|
|
|
Tool(android.PathForSource(ctx, "build/make/core/verify_uses_libraries.sh")).Input(apk)
|
|
|
|
rule.Command().Text("cp -f").Input(apk).Output(outputFile)
|
|
|
|
|
|
|
|
rule.Build(pctx, ctx, "verify_uses_libraries", "verify <uses-library>")
|
|
|
|
|
|
|
|
return outputFile
|
|
|
|
}
|