blob: 0f55b77917b98cd5ee0b6167e64f56e1db2699d8 [file] [log] [blame]
Jaewoong Jungf9b44652020-12-21 12:29:12 -08001// Copyright 2020 Google Inc. All rights reserved.
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package java
16
17// This file contains the module implementation for android_app_set.
18
19import (
20 "strconv"
21 "strings"
22
23 "github.com/google/blueprint/proptools"
24
25 "android/soong/android"
26)
27
28func init() {
29 RegisterAppSetBuildComponents(android.InitRegistrationContext)
30}
31
32func RegisterAppSetBuildComponents(ctx android.RegistrationContext) {
33 ctx.RegisterModuleType("android_app_set", AndroidAppSetFactory)
34}
35
36type AndroidAppSetProperties struct {
37 // APK Set path
38 Set *string
39
40 // Specifies that this app should be installed to the priv-app directory,
41 // where the system will grant it additional privileges not available to
42 // normal apps.
43 Privileged *bool
44
45 // APKs in this set use prerelease SDK version
46 Prerelease *bool
47
48 // Names of modules to be overridden. Listed modules can only be other apps
49 // (in Make or Soong).
50 Overrides []string
51}
52
53type AndroidAppSet struct {
54 android.ModuleBase
55 android.DefaultableModuleBase
56 prebuilt android.Prebuilt
57
Colin Crossffbcd1d2021-11-12 12:19:42 -080058 properties AndroidAppSetProperties
59 packedOutput android.WritablePath
60 primaryOutput android.WritablePath
61 apkcertsFile android.ModuleOutPath
Jaewoong Jungf9b44652020-12-21 12:29:12 -080062}
63
64func (as *AndroidAppSet) Name() string {
65 return as.prebuilt.Name(as.ModuleBase.Name())
66}
67
68func (as *AndroidAppSet) IsInstallable() bool {
69 return true
70}
71
72func (as *AndroidAppSet) Prebuilt() *android.Prebuilt {
73 return &as.prebuilt
74}
75
76func (as *AndroidAppSet) Privileged() bool {
77 return Bool(as.properties.Privileged)
78}
79
80func (as *AndroidAppSet) OutputFile() android.Path {
Colin Crossffbcd1d2021-11-12 12:19:42 -080081 return as.primaryOutput
Jaewoong Jungf9b44652020-12-21 12:29:12 -080082}
83
Colin Crossffbcd1d2021-11-12 12:19:42 -080084func (as *AndroidAppSet) PackedAdditionalOutputs() android.Path {
85 return as.packedOutput
Jaewoong Jungf9b44652020-12-21 12:29:12 -080086}
87
88func (as *AndroidAppSet) APKCertsFile() android.Path {
89 return as.apkcertsFile
90}
91
92var TargetCpuAbi = map[string]string{
Colin Cross9f093162022-11-01 16:14:33 -070093 "arm": "ARMEABI_V7A",
94 "arm64": "ARM64_V8A",
95 // TODO: use "RISCV64" when that is supported in bundles
96 "riscv64": "ARM64_V8A",
Colin Crossa2aaa2f2022-10-03 12:41:50 -070097 "x86": "X86",
98 "x86_64": "X86_64",
Jaewoong Jungf9b44652020-12-21 12:29:12 -080099}
100
Anton Hansson805e0a52022-11-25 14:06:46 +0000101func SupportedAbis(ctx android.ModuleContext, excludeNativeBridgeAbis bool) []string {
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800102 abiName := func(targetIdx int, deviceArch string) string {
103 if abi, found := TargetCpuAbi[deviceArch]; found {
104 return abi
105 }
106 ctx.ModuleErrorf("Target %d has invalid Arch: %s", targetIdx, deviceArch)
107 return "BAD_ABI"
108 }
109
110 var result []string
111 for i, target := range ctx.Config().Targets[android.Android] {
Anton Hansson805e0a52022-11-25 14:06:46 +0000112 if target.NativeBridge == android.NativeBridgeEnabled && excludeNativeBridgeAbis {
113 continue
114 }
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800115 result = append(result, abiName(i, target.Arch.ArchType.String()))
116 }
117 return result
118}
119
120func (as *AndroidAppSet) GenerateAndroidBuildActions(ctx android.ModuleContext) {
121 as.packedOutput = android.PathForModuleOut(ctx, ctx.ModuleName()+".zip")
Colin Crossffbcd1d2021-11-12 12:19:42 -0800122 as.primaryOutput = android.PathForModuleOut(ctx, as.BaseModuleName()+".apk")
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800123 as.apkcertsFile = android.PathForModuleOut(ctx, "apkcerts.txt")
124 // We are assuming here that the install file in the APK
125 // set has `.apk` suffix. If it doesn't the build will fail.
126 // APK sets containing APEX files are handled elsewhere.
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800127 screenDensities := "all"
128 if dpis := ctx.Config().ProductAAPTPrebuiltDPI(); len(dpis) > 0 {
129 screenDensities = strings.ToUpper(strings.Join(dpis, ","))
130 }
131 // TODO(asmundak): handle locales.
132 // TODO(asmundak): do we support device features
133 ctx.Build(pctx,
134 android.BuildParams{
Colin Crossffbcd1d2021-11-12 12:19:42 -0800135 Rule: extractMatchingApks,
136 Description: "Extract APKs from APK set",
137 Output: as.primaryOutput,
138 ImplicitOutputs: android.WritablePaths{as.packedOutput, as.apkcertsFile},
139 Inputs: android.Paths{as.prebuilt.SingleSourcePath(ctx)},
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800140 Args: map[string]string{
Anton Hansson805e0a52022-11-25 14:06:46 +0000141 "abis": strings.Join(SupportedAbis(ctx, false), ","),
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800142 "allow-prereleased": strconv.FormatBool(proptools.Bool(as.properties.Prerelease)),
143 "screen-densities": screenDensities,
144 "sdk-version": ctx.Config().PlatformSdkVersion().String(),
145 "stem": as.BaseModuleName(),
146 "apkcerts": as.apkcertsFile.String(),
147 "partition": as.PartitionTag(ctx.DeviceConfig()),
Colin Crossffbcd1d2021-11-12 12:19:42 -0800148 "zip": as.packedOutput.String(),
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800149 },
150 })
Colin Cross50ed1f92021-11-12 17:41:02 -0800151
152 var installDir android.InstallPath
153 if as.Privileged() {
154 installDir = android.PathForModuleInstall(ctx, "priv-app", as.BaseModuleName())
155 } else {
156 installDir = android.PathForModuleInstall(ctx, "app", as.BaseModuleName())
157 }
158 ctx.InstallFileWithExtraFilesZip(installDir, as.BaseModuleName()+".apk", as.primaryOutput, as.packedOutput)
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800159}
160
Colin Cross50ed1f92021-11-12 17:41:02 -0800161func (as *AndroidAppSet) InstallBypassMake() bool { return true }
162
Jaewoong Jungf9b44652020-12-21 12:29:12 -0800163// android_app_set extracts a set of APKs based on the target device
164// configuration and installs this set as "split APKs".
165// The extracted set always contains an APK whose name is
166// _module_name_.apk and every split APK matching target device.
167// The extraction of the density-specific splits depends on
168// PRODUCT_AAPT_PREBUILT_DPI variable. If present (its value should
169// be a list density names: LDPI, MDPI, HDPI, etc.), only listed
170// splits will be extracted. Otherwise all density-specific splits
171// will be extracted.
172func AndroidAppSetFactory() android.Module {
173 module := &AndroidAppSet{}
174 module.AddProperties(&module.properties)
175 InitJavaModule(module, android.DeviceSupported)
176 android.InitSingleSourcePrebuiltModule(module, &module.properties, "Set")
177 return module
178}