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 (
|
|
|
|
"strings"
|
|
|
|
|
2017-08-30 01:02:06 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
"android/soong/android"
|
2015-04-13 22:58:27 +02:00
|
|
|
)
|
|
|
|
|
2017-11-23 01:19:37 +01:00
|
|
|
func init() {
|
2017-11-23 01:20:45 +01:00
|
|
|
android.RegisterModuleType("android_app", AndroidAppFactory)
|
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 {
|
2015-05-11 22:39:40 +02:00
|
|
|
// path to a certificate, or the name of a certificate in the default
|
|
|
|
// certificate directory, or blank to use the default product certificate
|
2017-11-09 06:20:04 +01:00
|
|
|
Certificate *string
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
// paths to extra certificates to sign the apk with
|
|
|
|
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
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2017-11-22 22:49:43 +01:00
|
|
|
Instrumentation_for *string
|
2015-05-11 22:39:40 +02:00
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
type AndroidApp struct {
|
2018-03-28 23:58:31 +02:00
|
|
|
Library
|
|
|
|
aapt
|
2015-05-11 22:39:40 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
certificate certificate
|
2015-04-13 22:58:27 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
appProperties appProperties
|
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-03-28 23:58:31 +02:00
|
|
|
var _ AndroidLibraryDependency = (*AndroidApp)(nil)
|
|
|
|
|
2017-12-14 20:22:55 +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)
|
2017-11-23 01:19:37 +01:00
|
|
|
if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
|
2018-03-28 23:58:31 +02:00
|
|
|
a.aapt.deps(ctx, String(a.deviceProperties.Sdk_version))
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-23 01:51:17 +02:00
|
|
|
func (a *AndroidApp) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2018-03-28 23:58:31 +02:00
|
|
|
var linkFlags []string
|
|
|
|
if String(a.appProperties.Instrumentation_for) != "" {
|
|
|
|
linkFlags = append(linkFlags,
|
|
|
|
"--rename-instrumentation-target-package",
|
|
|
|
String(a.appProperties.Instrumentation_for))
|
|
|
|
} else {
|
|
|
|
a.properties.Instrument = true
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2018-04-20 00:25:19 +02:00
|
|
|
hasProduct := false
|
|
|
|
for _, f := range a.aaptProperties.Aaptflags {
|
|
|
|
if strings.HasPrefix(f, "--product") {
|
|
|
|
hasProduct = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Product characteristics
|
|
|
|
if !hasProduct && len(ctx.Config().ProductAAPTCharacteristics()) > 0 {
|
|
|
|
linkFlags = append(linkFlags, "--product", ctx.Config().ProductAAPTCharacteristics())
|
|
|
|
}
|
|
|
|
|
|
|
|
// Product AAPT config
|
|
|
|
for _, aaptConfig := range ctx.Config().ProductAAPTConfig() {
|
|
|
|
linkFlags = append(linkFlags, "-c", aaptConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Product AAPT preferred config
|
|
|
|
if len(ctx.Config().ProductAAPTPreferredConfig()) > 0 {
|
|
|
|
linkFlags = append(linkFlags, "--preferred-density", ctx.Config().ProductAAPTPreferredConfig())
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
// TODO: LOCAL_PACKAGE_OVERRIDES
|
|
|
|
// $(addprefix --rename-manifest-package , $(PRIVATE_MANIFEST_PACKAGE_NAME)) \
|
2017-11-23 01:19:37 +01:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
a.aapt.buildActions(ctx, String(a.deviceProperties.Sdk_version), linkFlags...)
|
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
|
2015-04-13 22:58:27 +02:00
|
|
|
|
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)
|
2017-12-28 21:23:20 +01: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
|
|
|
|
2017-12-14 20:22:55 +01:00
|
|
|
c := String(a.appProperties.Certificate)
|
|
|
|
switch {
|
|
|
|
case c == "":
|
|
|
|
pem, key := ctx.Config().DefaultAppCertificate(ctx)
|
|
|
|
a.certificate = certificate{pem, key}
|
|
|
|
case strings.ContainsRune(c, '/'):
|
|
|
|
a.certificate = certificate{
|
|
|
|
android.PathForSource(ctx, c+".x509.pem"),
|
|
|
|
android.PathForSource(ctx, c+".pk8"),
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
defaultDir := ctx.Config().DefaultAppCertificateDir(ctx)
|
|
|
|
a.certificate = certificate{
|
|
|
|
defaultDir.Join(ctx, c+".x509.pem"),
|
|
|
|
defaultDir.Join(ctx, c+".pk8"),
|
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2017-12-14 20:22:55 +01:00
|
|
|
certificates := []certificate{a.certificate}
|
2015-04-13 22:58:27 +02:00
|
|
|
for _, c := range a.appProperties.Additional_certificates {
|
2017-12-14 20:22:55 +01:00
|
|
|
certificates = append(certificates, certificate{
|
|
|
|
android.PathForSource(ctx, c+".x509.pem"),
|
|
|
|
android.PathForSource(ctx, c+".pk8"),
|
|
|
|
})
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2017-11-23 01:19:37 +01:00
|
|
|
packageFile := android.PathForModuleOut(ctx, "package.apk")
|
|
|
|
|
|
|
|
CreateAppPackage(ctx, packageFile, a.exportPackage, a.outputFile, certificates)
|
|
|
|
|
|
|
|
a.outputFile = packageFile
|
|
|
|
|
2017-11-23 01:20:45 +01: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 07:46:28 +01:00
|
|
|
} else if Bool(a.appProperties.Privileged) {
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "priv-app"), ctx.ModuleName()+".apk", a.outputFile)
|
2017-11-23 01:20:45 +01:00
|
|
|
} else {
|
|
|
|
ctx.InstallFile(android.PathForModuleInstall(ctx, "app"), ctx.ModuleName()+".apk", a.outputFile)
|
|
|
|
}
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
func AndroidAppFactory() android.Module {
|
2015-04-13 22:58:27 +02:00
|
|
|
module := &AndroidApp{}
|
|
|
|
|
2017-12-28 21:23:20 +01:00
|
|
|
module.Module.deviceProperties.Optimize.Enabled = proptools.BoolPtr(true)
|
|
|
|
module.Module.deviceProperties.Optimize.Shrink = proptools.BoolPtr(true)
|
|
|
|
|
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-03-28 23:58:31 +02:00
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
2017-06-23 02:01:52 +02:00
|
|
|
&module.appProperties)
|
2017-06-24 00:06:31 +02:00
|
|
|
|
|
|
|
android.InitAndroidArchModule(module, android.DeviceSupported, android.MultilibCommon)
|
|
|
|
return module
|
2015-04-13 22:58:27 +02:00
|
|
|
}
|