2015-04-14 04:58:27 +08: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 (
|
2018-11-13 02:13:39 +08:00
|
|
|
"path/filepath"
|
2015-04-14 04:58:27 +08:00
|
|
|
"strings"
|
|
|
|
|
2018-10-03 13:03:40 +08:00
|
|
|
"github.com/google/blueprint"
|
2017-08-30 07:02:06 +08:00
|
|
|
"github.com/google/blueprint/proptools"
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2016-05-19 06:37:25 +08:00
|
|
|
"android/soong/android"
|
2018-10-03 13:03:40 +08:00
|
|
|
"android/soong/cc"
|
2018-08-08 07:49:25 +08:00
|
|
|
"android/soong/tradefed"
|
2015-04-14 04:58:27 +08:00
|
|
|
)
|
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
func init() {
|
2017-11-23 08:20:45 +08:00
|
|
|
android.RegisterModuleType("android_app", AndroidAppFactory)
|
2018-05-23 02:11:52 +08:00
|
|
|
android.RegisterModuleType("android_test", AndroidTestFactory)
|
2018-10-05 06:22:03 +08:00
|
|
|
android.RegisterModuleType("android_test_helper_app", AndroidTestHelperAppFactory)
|
2018-10-05 06:21:03 +08:00
|
|
|
android.RegisterModuleType("android_app_certificate", AndroidAppCertificateFactory)
|
2017-11-23 08:19:37 +08:00
|
|
|
}
|
|
|
|
|
2015-04-14 04:58:27 +08:00
|
|
|
// AndroidManifest.xml merging
|
|
|
|
// package splits
|
|
|
|
|
2018-02-21 09:22:23 +08:00
|
|
|
type appProperties struct {
|
2018-10-05 06:21:03 +08: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".
|
2017-11-09 13:20:04 +08:00
|
|
|
Certificate *string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2018-10-05 06:21:03 +08:00
|
|
|
// Names of extra android_app_certificate modules to sign the apk with in the form ":module".
|
2015-05-12 04:39:40 +08:00
|
|
|
Additional_certificates []string
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08: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 13:20:04 +08:00
|
|
|
Export_package_resources *bool
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2018-03-29 05:58:31 +08: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-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
// list of resource labels to generate individual resource packages
|
|
|
|
Package_splits []string
|
2018-08-10 21:33:36 +08: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 13:03:40 +08:00
|
|
|
|
|
|
|
// list of native libraries that will be provided in or alongside the resulting jar
|
|
|
|
Jni_libs []string `android:"arch_variant"`
|
|
|
|
|
2019-02-06 13:55:21 +08: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-08 05:07:08 +08: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
|
2015-05-12 04:39:40 +08:00
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2015-05-12 04:39:40 +08:00
|
|
|
type AndroidApp struct {
|
2018-03-29 05:58:31 +08:00
|
|
|
Library
|
|
|
|
aapt
|
2015-05-12 04:39:40 +08:00
|
|
|
|
2018-10-30 20:20:05 +08:00
|
|
|
certificate Certificate
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2018-03-29 05:58:31 +08:00
|
|
|
appProperties appProperties
|
2018-05-23 02:11:52 +08:00
|
|
|
|
2018-10-03 13:03:40 +08:00
|
|
|
installJniLibs []jniLib
|
2018-10-30 14:14:58 +08:00
|
|
|
|
|
|
|
bundleFile android.Path
|
2019-01-24 08:27:47 +08:00
|
|
|
|
|
|
|
// the install APK name is normally the same as the module name, but can be overridden with PRODUCT_PACKAGE_NAME_OVERRIDES.
|
|
|
|
installApkName string
|
2017-12-15 03:22:55 +08:00
|
|
|
}
|
|
|
|
|
2018-05-01 06:55:11 +08:00
|
|
|
func (a *AndroidApp) ExportedProguardFlagFiles() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-03 03:58:28 +08:00
|
|
|
func (a *AndroidApp) ExportedStaticPackages() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-03-29 05:58:31 +08:00
|
|
|
var _ AndroidLibraryDependency = (*AndroidApp)(nil)
|
|
|
|
|
2018-10-30 20:20:05 +08:00
|
|
|
type Certificate struct {
|
|
|
|
Pem, Key android.Path
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
func (a *AndroidApp) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
a.Module.deps(ctx)
|
2018-10-03 13:03:40 +08:00
|
|
|
|
2017-11-23 08:19:37 +08:00
|
|
|
if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
|
2018-06-26 06:48:06 +08:00
|
|
|
a.aapt.deps(ctx, sdkContext(a))
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
2018-10-03 13:03:40 +08: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...)
|
|
|
|
}
|
2018-10-05 06:21:03 +08:00
|
|
|
|
2019-01-19 06:27:16 +08:00
|
|
|
cert := android.SrcIsModule(a.getCertString(ctx))
|
2018-10-05 06:21:03 +08: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-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2019-02-06 13:55:21 +08:00
|
|
|
a.aapt.uncompressedJNI = a.shouldUncompressJNI(ctx)
|
2019-02-08 05:07:08 +08:00
|
|
|
a.aapt.useEmbeddedDex = Bool(a.appProperties.Use_embedded_dex)
|
2018-05-23 02:11:52 +08:00
|
|
|
a.generateAndroidBuildActions(ctx)
|
|
|
|
}
|
|
|
|
|
2019-02-06 13:55:21 +08:00
|
|
|
// shouldUncompressJNI returns true if the native libraries should be stored in the APK uncompressed and the
|
|
|
|
// extractNativeLibs application flag should be set to false in the manifest.
|
|
|
|
func (a *AndroidApp) shouldUncompressJNI(ctx android.ModuleContext) bool {
|
|
|
|
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-13 02:13:39 +08: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-08 05:07:08 +08:00
|
|
|
if Bool(a.appProperties.Use_embedded_dex) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-10-06 05:20:06 +08:00
|
|
|
if ctx.Config().UnbundledBuild() {
|
2018-11-13 02:13:39 +08:00
|
|
|
return false
|
2018-10-06 05:20:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Uncompress dex in APKs of privileged apps, and modules used by privileged apps.
|
2018-11-13 02:13:39 +08:00
|
|
|
return ctx.Config().UncompressPrivAppDex() &&
|
2018-10-06 05:20:06 +08:00
|
|
|
(Bool(a.appProperties.Privileged) ||
|
2018-11-13 02:13:39 +08:00
|
|
|
inList(ctx.ModuleName(), ctx.Config().ModulesLoadedByPrivilegedModules()))
|
2018-10-06 05:20:06 +08:00
|
|
|
}
|
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
func (a *AndroidApp) aaptBuildActions(ctx android.ModuleContext) {
|
2019-01-23 03:19:56 +08:00
|
|
|
aaptLinkFlags := []string{}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2019-01-23 03:19:56 +08:00
|
|
|
// Add TARGET_AAPT_CHARACTERISTICS values to AAPT link flags if they exist and --product flags were not provided.
|
2018-04-20 06:25:19 +08:00
|
|
|
hasProduct := false
|
|
|
|
for _, f := range a.aaptProperties.Aaptflags {
|
|
|
|
if strings.HasPrefix(f, "--product") {
|
|
|
|
hasProduct = true
|
2019-01-23 03:19:56 +08:00
|
|
|
break
|
2018-04-20 06:25:19 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
|
2019-01-23 03:19:56 +08:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
|
2018-04-20 06:25:19 +08:00
|
|
|
}
|
|
|
|
|
2018-10-25 11:24:57 +08:00
|
|
|
if !Bool(a.aaptProperties.Aapt_include_all_resources) {
|
|
|
|
// Product AAPT config
|
|
|
|
for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
|
2019-01-23 03:19:56 +08:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "-c", aaptConfig)
|
2018-10-25 11:24:57 +08:00
|
|
|
}
|
2018-04-20 06:25:19 +08:00
|
|
|
|
2018-10-25 11:24:57 +08:00
|
|
|
// Product AAPT preferred config
|
|
|
|
if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
|
2019-01-23 03:19:56 +08:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
|
2018-10-25 11:24:57 +08:00
|
|
|
}
|
2018-04-20 06:25:19 +08:00
|
|
|
}
|
|
|
|
|
2018-03-29 05:58:31 +08:00
|
|
|
// TODO: LOCAL_PACKAGE_OVERRIDES
|
|
|
|
// $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
|
2017-11-23 08:19:37 +08:00
|
|
|
|
2019-01-05 11:57:48 +08:00
|
|
|
manifestPackageName, overridden := ctx.DeviceConfig().OverrideManifestPackageNameFor(ctx.ModuleName())
|
|
|
|
if overridden {
|
2019-01-23 03:19:56 +08:00
|
|
|
aaptLinkFlags = append(aaptLinkFlags, "--rename-manifest-package "+manifestPackageName)
|
2019-01-05 11:57:48 +08:00
|
|
|
}
|
|
|
|
|
2019-01-23 03:19:56 +08:00
|
|
|
a.aapt.buildActions(ctx, sdkContext(a), aaptLinkFlags...)
|
2017-11-23 08:19:37 +08:00
|
|
|
|
2017-06-23 07:51:17 +08:00
|
|
|
// apps manifests are handled by aapt, don't let Module see them
|
2015-09-24 06:26:20 +08:00
|
|
|
a.properties.Manifest = nil
|
2019-01-23 08:40:58 +08:00
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
func (a *AndroidApp) proguardBuildActions(ctx android.ModuleContext) {
|
2018-05-01 06:55:11 +08: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 08:40:58 +08:00
|
|
|
}
|
2017-12-29 04:23:20 +08:00
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
func (a *AndroidApp) dexBuildActions(ctx android.ModuleContext) android.Path {
|
2018-11-13 02:13:39 +08:00
|
|
|
a.deviceProperties.UncompressDex = a.shouldUncompressDex(ctx)
|
|
|
|
|
|
|
|
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 08:27:47 +08:00
|
|
|
installDir = filepath.Join("priv-app", a.installApkName)
|
2018-11-13 02:13:39 +08:00
|
|
|
} else {
|
2019-01-24 08:27:47 +08:00
|
|
|
installDir = filepath.Join("app", a.installApkName)
|
2018-11-13 02:13:39 +08:00
|
|
|
}
|
2019-01-24 08:27:47 +08:00
|
|
|
a.dexpreopter.installPath = android.PathForModuleInstall(ctx, installDir, a.installApkName+".apk")
|
2018-10-06 05:20:06 +08:00
|
|
|
|
2017-11-23 08:20:45 +08:00
|
|
|
if ctx.ModuleName() != "framework-res" {
|
|
|
|
a.Module.compile(ctx, a.aaptSrcJar)
|
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
return a.maybeStrippedDexJarFile
|
|
|
|
}
|
2018-10-05 06:21:03 +08:00
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
func (a *AndroidApp) jniBuildActions(jniLibs []jniLib, ctx android.ModuleContext) android.WritablePath {
|
2018-10-03 13:03:40 +08:00
|
|
|
var jniJarFile android.WritablePath
|
|
|
|
if len(jniLibs) > 0 {
|
2019-02-06 13:55:21 +08:00
|
|
|
embedJni := ctx.Config().UnbundledBuild() || Bool(a.appProperties.Use_embedded_native_libs)
|
2018-10-03 13:03:40 +08:00
|
|
|
if embedJni {
|
|
|
|
jniJarFile = android.PathForModuleOut(ctx, "jnilibs.zip")
|
2019-02-06 13:55:21 +08:00
|
|
|
TransformJniLibsToJar(ctx, jniJarFile, jniLibs, a.shouldUncompressJNI(ctx))
|
2018-10-03 13:03:40 +08:00
|
|
|
} else {
|
|
|
|
a.installJniLibs = jniLibs
|
|
|
|
}
|
|
|
|
}
|
2019-01-23 08:40:58 +08:00
|
|
|
return jniJarFile
|
|
|
|
}
|
2018-10-03 13:03:40 +08:00
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
func (a *AndroidApp) certificateBuildActions(certificateDeps []Certificate, ctx android.ModuleContext) []Certificate {
|
2019-01-19 06:27:16 +08:00
|
|
|
cert := a.getCertString(ctx)
|
2018-10-05 06:21:03 +08:00
|
|
|
certModule := android.SrcIsModule(cert)
|
|
|
|
if certModule != "" {
|
|
|
|
a.certificate = certificateDeps[0]
|
|
|
|
certificateDeps = certificateDeps[1:]
|
|
|
|
} else if cert != "" {
|
|
|
|
defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
|
2018-10-30 20:20:05 +08:00
|
|
|
a.certificate = Certificate{
|
2018-10-05 06:21:03 +08:00
|
|
|
defaultDir.Join(ctx, cert+".x509.pem"),
|
|
|
|
defaultDir.Join(ctx, cert+".pk8"),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
pem, key := ctx.Config().DefaultAppCertificate(ctx)
|
2018-10-30 20:20:05 +08:00
|
|
|
a.certificate = Certificate{pem, key}
|
2018-10-05 06:21:03 +08:00
|
|
|
}
|
|
|
|
|
2019-01-07 11:07:27 +08:00
|
|
|
if !a.Module.Platform() {
|
|
|
|
certPath := a.certificate.Pem.String()
|
|
|
|
systemCertPath := ctx.Config().DefaultAppCertificateDir(ctx).String()
|
|
|
|
if strings.HasPrefix(certPath, systemCertPath) {
|
|
|
|
enforceSystemCert := ctx.Config().EnforceSystemCertificate()
|
|
|
|
whitelist := ctx.Config().EnforceSystemCertificateWhitelist()
|
|
|
|
|
|
|
|
if enforceSystemCert && !inList(a.Module.Name(), whitelist) {
|
|
|
|
ctx.PropertyErrorf("certificate", "The module in product partition cannot be signed with certificate in system.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
return append([]Certificate{a.certificate}, certificateDeps...)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidApp) generateAndroidBuildActions(ctx android.ModuleContext) {
|
2019-01-24 08:27:47 +08:00
|
|
|
// Check if the install APK name needs to be overridden.
|
|
|
|
a.installApkName = ctx.DeviceConfig().OverridePackageNameFor(ctx.ModuleName())
|
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
// Process all building blocks, from AAPT to certificates.
|
|
|
|
a.aaptBuildActions(ctx)
|
|
|
|
|
|
|
|
a.proguardBuildActions(ctx)
|
|
|
|
|
|
|
|
dexJarFile := a.dexBuildActions(ctx)
|
|
|
|
|
|
|
|
jniLibs, certificateDeps := a.collectAppDeps(ctx)
|
|
|
|
jniJarFile := a.jniBuildActions(jniLibs, ctx)
|
|
|
|
|
|
|
|
if ctx.Failed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
certificates := a.certificateBuildActions(certificateDeps, ctx)
|
|
|
|
|
|
|
|
// Build a final signed app package.
|
|
|
|
packageFile := android.PathForModuleOut(ctx, ctx.ModuleName()+".apk")
|
|
|
|
CreateAppPackage(ctx, packageFile, a.exportPackage, jniJarFile, dexJarFile, certificates)
|
2017-11-23 08:19:37 +08:00
|
|
|
a.outputFile = packageFile
|
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
// Build an app bundle.
|
2018-10-30 14:14:58 +08:00
|
|
|
bundleFile := android.PathForModuleOut(ctx, "base.zip")
|
|
|
|
BuildBundleModule(ctx, bundleFile, a.exportPackage, jniJarFile, dexJarFile)
|
|
|
|
a.bundleFile = bundleFile
|
|
|
|
|
2019-01-23 08:40:58 +08:00
|
|
|
// Install the app package.
|
2017-11-23 08:20:45 +08:00
|
|
|
if ctx.ModuleName() == "framework-res" {
|
|
|
|
// framework-res.apk is installed as system/framework/framework-res.apk
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "framework"), ctx.ModuleName()+".apk", a.outputFile)
|
2017-12-14 14:46:28 +08:00
|
|
|
} else if Bool(a.appProperties.Privileged) {
|
2019-01-24 08:27:47 +08:00
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app", a.installApkName), a.installApkName+".apk", a.outputFile)
|
2017-11-23 08:20:45 +08:00
|
|
|
} else {
|
2019-01-24 08:27:47 +08:00
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "app", a.installApkName), a.installApkName+".apk", a.outputFile)
|
2017-11-23 08:20:45 +08:00
|
|
|
}
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
|
|
|
|
2018-10-30 20:20:05 +08:00
|
|
|
func (a *AndroidApp) collectAppDeps(ctx android.ModuleContext) ([]jniLib, []Certificate) {
|
2018-10-03 13:03:40 +08:00
|
|
|
var jniLibs []jniLib
|
2018-10-30 20:20:05 +08:00
|
|
|
var certificates []Certificate
|
2018-10-03 13:03:40 +08: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 06:21:03 +08:00
|
|
|
} else if tag == certificateTag {
|
|
|
|
if dep, ok := module.(*AndroidAppCertificate); ok {
|
2018-10-30 20:20:05 +08:00
|
|
|
certificates = append(certificates, dep.Certificate)
|
2018-10-05 06:21:03 +08:00
|
|
|
} else {
|
|
|
|
ctx.ModuleErrorf("certificate dependency %q must be an android_app_certificate module", otherName)
|
|
|
|
}
|
2018-10-03 13:03:40 +08:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-10-05 06:21:03 +08:00
|
|
|
return jniLibs, certificates
|
2018-10-03 13:03:40 +08:00
|
|
|
}
|
|
|
|
|
2019-01-19 06:27:16 +08:00
|
|
|
func (a *AndroidApp) getCertString(ctx android.BaseContext) string {
|
|
|
|
certificate, overridden := ctx.DeviceConfig().OverrideCertificateFor(ctx.ModuleName())
|
|
|
|
if overridden {
|
|
|
|
return ":" + certificate
|
|
|
|
}
|
|
|
|
return String(a.appProperties.Certificate)
|
|
|
|
}
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
func AndroidAppFactory() android.Module {
|
2015-04-14 04:58:27 +08:00
|
|
|
module := &AndroidApp{}
|
|
|
|
|
2017-12-29 04:23:20 +08:00
|
|
|
module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true)
|
|
|
|
module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
|
|
|
|
|
2018-05-23 02:11:52 +08:00
|
|
|
module.Module.properties.Instrument = true
|
2018-06-27 08:59:05 +08:00
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2018-05-23 02:11:52 +08:00
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
module.AddProperties(
|
2017-06-23 08:01:52 +08:00
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-13 02:13:39 +08:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-03-29 05:58:31 +08:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
2017-06-23 08:01:52 +08:00
|
|
|
&module.appProperties)
|
2017-06-24 06:06:31 +08:00
|
|
|
|
2018-10-03 04:59:46 +08:00
|
|
|
module.Prefer32(func(ctx android.BaseModuleContext, base *android.ModuleBase, class android.OsClass) bool {
|
|
|
|
return class == android.Device && ctx.Config().DevicePrefer32BitApps()
|
|
|
|
})
|
|
|
|
|
2018-10-03 13:03:40 +08:00
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
|
2017-06-24 06:06:31 +08:00
|
|
|
return module
|
2015-04-14 04:58:27 +08:00
|
|
|
}
|
2018-05-23 02:11:52 +08:00
|
|
|
|
|
|
|
type appTestProperties struct {
|
|
|
|
Instrumentation_for *string
|
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidTest struct {
|
|
|
|
AndroidApp
|
|
|
|
|
|
|
|
appTestProperties appTestProperties
|
|
|
|
|
|
|
|
testProperties testProperties
|
2018-08-08 07:49:25 +08:00
|
|
|
|
|
|
|
testConfig android.Path
|
2018-08-11 07:06:24 +08:00
|
|
|
data android.Paths
|
2018-05-23 02:11:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
a.generateAndroidBuildActions(ctx)
|
2018-08-08 07:49:25 +08:00
|
|
|
|
2018-09-19 17:21:28 +08:00
|
|
|
a.testConfig = tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, a.testProperties.Test_config_template, a.manifestPath)
|
2018-08-11 07:06:24 +08:00
|
|
|
a.data = ctx.ExpandSources(a.testProperties.Data, nil)
|
2018-08-08 07:49:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidTest) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
android.ExtractSourceDeps(ctx, a.testProperties.Test_config)
|
2018-09-19 17:21:28 +08:00
|
|
|
android.ExtractSourceDeps(ctx, a.testProperties.Test_config_template)
|
2018-08-11 07:06:24 +08:00
|
|
|
android.ExtractSourcesDeps(ctx, a.testProperties.Data)
|
2018-08-08 07:49:25 +08:00
|
|
|
a.AndroidApp.DepsMutator(ctx)
|
2018-10-16 07:18:06 +08: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-23 02:11:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func AndroidTestFactory() android.Module {
|
|
|
|
module := &AndroidTest{}
|
|
|
|
|
|
|
|
module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true)
|
2018-09-18 07:46:35 +08:00
|
|
|
|
|
|
|
module.Module.properties.Instrument = true
|
2018-06-27 08:59:05 +08:00
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2019-02-06 13:55:21 +08:00
|
|
|
module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
|
2018-11-13 02:13:39 +08:00
|
|
|
module.Module.dexpreopter.isTest = true
|
2018-05-23 02:11:52 +08:00
|
|
|
|
|
|
|
module.AddProperties(
|
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-13 02:13:39 +08:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-05-23 02:11:52 +08:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
|
|
|
&module.appProperties,
|
2018-07-17 08:21:19 +08:00
|
|
|
&module.appTestProperties,
|
|
|
|
&module.testProperties)
|
2018-05-23 02:11:52 +08:00
|
|
|
|
2018-10-03 13:03:40 +08:00
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
2018-05-23 02:11:52 +08:00
|
|
|
return module
|
|
|
|
}
|
2018-10-05 06:21:03 +08:00
|
|
|
|
2018-10-05 06:22:03 +08: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
|
|
|
|
}
|
|
|
|
|
|
|
|
func AndroidTestHelperAppFactory() android.Module {
|
|
|
|
module := &AndroidTestHelperApp{}
|
|
|
|
|
|
|
|
module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true)
|
|
|
|
|
|
|
|
module.Module.properties.Installable = proptools.BoolPtr(true)
|
2019-02-06 13:55:21 +08:00
|
|
|
module.appProperties.Use_embedded_native_libs = proptools.BoolPtr(true)
|
2018-11-13 02:13:39 +08:00
|
|
|
module.Module.dexpreopter.isTest = true
|
2018-10-05 06:22:03 +08:00
|
|
|
|
|
|
|
module.AddProperties(
|
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
2018-11-13 02:13:39 +08:00
|
|
|
&module.Module.dexpreoptProperties,
|
2018-10-05 06:22:03 +08:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
|
|
|
&module.appProperties,
|
|
|
|
&module.appTestHelperAppProperties)
|
|
|
|
|
|
|
|
android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
android.InitDefaultableModule(module)
|
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
2018-10-05 06:21:03 +08:00
|
|
|
type AndroidAppCertificate struct {
|
|
|
|
android.ModuleBase
|
|
|
|
properties AndroidAppCertificateProperties
|
2018-10-30 20:20:05 +08:00
|
|
|
Certificate Certificate
|
2018-10-05 06:21:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidAppCertificateProperties struct {
|
|
|
|
// Name of the certificate files. Extensions .x509.pem and .pk8 will be added to the name.
|
|
|
|
Certificate *string
|
|
|
|
}
|
|
|
|
|
|
|
|
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 20:20:05 +08:00
|
|
|
c.Certificate = Certificate{
|
2018-10-05 06:21:03 +08:00
|
|
|
android.PathForModuleSrc(ctx, cert+".x509.pem"),
|
|
|
|
android.PathForModuleSrc(ctx, cert+".pk8"),
|
|
|
|
}
|
|
|
|
}
|