blob: 554ea670bcd42a56c01ce9f32cc662fc98c565b4 [file] [log] [blame]
Colin Crossfabb6082018-02-20 17:22:23 -08001// Copyright 2018 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
17import (
Colin Crossa592e3e2019-02-19 16:59:53 -080018 "fmt"
Jaewoong Jung5b425e22019-06-17 17:40:56 -070019 "path/filepath"
Colin Crossc20dc852020-11-10 12:27:45 -080020 "strconv"
Colin Crossa97c5d32018-03-28 14:58:31 -070021 "strings"
Colin Crossfabb6082018-02-20 17:22:23 -080022
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080023 "android/soong/android"
Ulya Trafimovich31e444e2020-08-14 17:32:16 +010024 "android/soong/dexpreopt"
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080025
Colin Crossfabb6082018-02-20 17:22:23 -080026 "github.com/google/blueprint"
Colin Crossa97c5d32018-03-28 14:58:31 -070027 "github.com/google/blueprint/proptools"
Colin Crossfabb6082018-02-20 17:22:23 -080028)
29
Colin Crossa97c5d32018-03-28 14:58:31 -070030type AndroidLibraryDependency interface {
Colin Crossa97c5d32018-03-28 14:58:31 -070031 ExportPackage() android.Path
Colin Cross89c31582018-04-30 15:55:11 -070032 ExportedProguardFlagFiles() android.Paths
Anton Hansson53c88442019-03-18 15:53:16 +000033 ExportedRRODirs() []rroDir
Colin Cross66f78822018-05-02 12:58:28 -070034 ExportedStaticPackages() android.Paths
Colin Cross90c25c62019-04-19 16:22:57 -070035 ExportedManifests() android.Paths
Jaewoong Jung6431ca72020-01-15 14:15:10 -080036 ExportedAssets() android.OptionalPath
Jaewoong Jungc779cd42020-10-06 18:56:10 -070037 SetRROEnforcedForDependent(enforce bool)
38 IsRROEnforced(ctx android.BaseModuleContext) bool
Colin Crossa97c5d32018-03-28 14:58:31 -070039}
40
41func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000042 RegisterAARBuildComponents(android.InitRegistrationContext)
Jaewoong Jungc779cd42020-10-06 18:56:10 -070043
44 android.PostDepsMutators(func(ctx android.RegisterMutatorsContext) {
45 ctx.TopDown("propagate_rro_enforcement", propagateRROEnforcementMutator).Parallel()
46 })
Paul Duffinf9b1da02019-12-18 19:51:55 +000047}
48
49func RegisterAARBuildComponents(ctx android.RegistrationContext) {
50 ctx.RegisterModuleType("android_library_import", AARImportFactory)
51 ctx.RegisterModuleType("android_library", AndroidLibraryFactory)
Colin Crossa97c5d32018-03-28 14:58:31 -070052}
53
54//
55// AAR (android library)
56//
57
58type androidLibraryProperties struct {
59 BuildAAR bool `blueprint:"mutated"`
60}
61
62type aaptProperties struct {
63 // flags passed to aapt when creating the apk
64 Aaptflags []string
65
Dan Willemsen72be5902018-10-24 20:24:57 -070066 // include all resource configurations, not just the product-configured
67 // ones.
68 Aapt_include_all_resources *bool
69
Colin Crossa97c5d32018-03-28 14:58:31 -070070 // list of directories relative to the Blueprints file containing assets.
Colin Cross0ddae7f2019-02-07 15:30:01 -080071 // Defaults to ["assets"] if a directory called assets exists. Set to []
72 // to disable the default.
Colin Crossa97c5d32018-03-28 14:58:31 -070073 Asset_dirs []string
74
75 // list of directories relative to the Blueprints file containing
Colin Cross0ddae7f2019-02-07 15:30:01 -080076 // Android resources. Defaults to ["res"] if a directory called res exists.
77 // Set to [] to disable the default.
Colin Crossa97c5d32018-03-28 14:58:31 -070078 Resource_dirs []string
79
Colin Crossa592e3e2019-02-19 16:59:53 -080080 // list of zip files containing Android resources.
Colin Cross27b922f2019-03-04 22:35:41 -080081 Resource_zips []string `android:"path"`
Colin Crossa592e3e2019-02-19 16:59:53 -080082
Colin Crossa97c5d32018-03-28 14:58:31 -070083 // path to AndroidManifest.xml. If unset, defaults to "AndroidManifest.xml".
Colin Cross27b922f2019-03-04 22:35:41 -080084 Manifest *string `android:"path"`
changho.shinb5432b72019-08-08 18:37:17 +090085
86 // paths to additional manifest files to merge with main manifest.
87 Additional_manifests []string `android:"path"`
Sasha Smundak541056c2019-10-28 15:50:06 -070088
89 // do not include AndroidManifest from dependent libraries
90 Dont_merge_manifests *bool
Jaewoong Jungc779cd42020-10-06 18:56:10 -070091
92 // true if RRO is enforced for any of the dependent modules
93 RROEnforcedForDependent bool `blueprint:"mutated"`
Colin Crossa97c5d32018-03-28 14:58:31 -070094}
95
96type aapt struct {
Colin Cross90c25c62019-04-19 16:22:57 -070097 aaptSrcJar android.Path
98 exportPackage android.Path
99 manifestPath android.Path
100 transitiveManifestPaths android.Paths
101 proguardOptionsFile android.Path
102 rroDirs []rroDir
103 rTxt android.Path
104 extraAaptPackagesFile android.Path
105 mergedManifestFile android.Path
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700106 noticeFile android.OptionalPath
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800107 assetPackage android.OptionalPath
Colin Cross90c25c62019-04-19 16:22:57 -0700108 isLibrary bool
Sasha Smundak6ad77252019-05-01 13:16:22 -0700109 useEmbeddedNativeLibs bool
Colin Cross90c25c62019-04-19 16:22:57 -0700110 useEmbeddedDex bool
111 usesNonSdkApis bool
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700112 hasNoCode bool
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800113 LoggingParent string
Colin Cross014489c2020-06-02 20:09:13 -0700114 resourceFiles android.Paths
Colin Crossa97c5d32018-03-28 14:58:31 -0700115
Colin Crosse560c4a2019-03-19 16:03:11 -0700116 splitNames []string
117 splits []split
118
Colin Crossa97c5d32018-03-28 14:58:31 -0700119 aaptProperties aaptProperties
120}
121
Colin Crosse560c4a2019-03-19 16:03:11 -0700122type split struct {
123 name string
124 suffix string
125 path android.Path
126}
127
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700128// Propagate RRO enforcement flag to static lib dependencies transitively.
129func propagateRROEnforcementMutator(ctx android.TopDownMutatorContext) {
130 m := ctx.Module()
131 if d, ok := m.(AndroidLibraryDependency); ok && d.IsRROEnforced(ctx) {
132 ctx.VisitDirectDepsWithTag(staticLibTag, func(d android.Module) {
133 if a, ok := d.(AndroidLibraryDependency); ok {
134 a.SetRROEnforcedForDependent(true)
135 }
136 })
137 }
138}
139
Colin Crossa97c5d32018-03-28 14:58:31 -0700140func (a *aapt) ExportPackage() android.Path {
141 return a.exportPackage
142}
143
Anton Hansson53c88442019-03-18 15:53:16 +0000144func (a *aapt) ExportedRRODirs() []rroDir {
Colin Crossc1c37552019-01-31 11:42:41 -0800145 return a.rroDirs
146}
147
Colin Cross90c25c62019-04-19 16:22:57 -0700148func (a *aapt) ExportedManifests() android.Paths {
149 return a.transitiveManifestPaths
Colin Crossc1c37552019-01-31 11:42:41 -0800150}
151
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800152func (a *aapt) ExportedAssets() android.OptionalPath {
153 return a.assetPackage
154}
155
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700156func (a *aapt) SetRROEnforcedForDependent(enforce bool) {
157 a.aaptProperties.RROEnforcedForDependent = enforce
158}
159
160func (a *aapt) IsRROEnforced(ctx android.BaseModuleContext) bool {
161 // True if RRO is enforced for this module or...
162 return ctx.Config().EnforceRROForModule(ctx.ModuleName()) ||
Jeongik Chacee5ba92021-02-19 12:11:51 +0900163 // if RRO is enforced for any of its dependents.
164 a.aaptProperties.RROEnforcedForDependent
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700165}
166
Colin Crossa0ba2f52019-06-22 12:59:27 -0700167func (a *aapt) aapt2Flags(ctx android.ModuleContext, sdkContext sdkContext,
168 manifestPath android.Path) (compileFlags, linkFlags []string, linkDeps android.Paths,
169 resDirs, overlayDirs []globbedResourceDir, rroDirs []rroDir, resZips android.Paths) {
Colin Crossa97c5d32018-03-28 14:58:31 -0700170
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800171 hasVersionCode := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-code")
172 hasVersionName := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-name")
Colin Crossa97c5d32018-03-28 14:58:31 -0700173
Colin Crossa97c5d32018-03-28 14:58:31 -0700174 // Flags specified in Android.bp
175 linkFlags = append(linkFlags, a.aaptProperties.Aaptflags...)
176
177 linkFlags = append(linkFlags, "--no-static-lib-packages")
178
179 // Find implicit or explicit asset and resource dirs
180 assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Asset_dirs, "assets")
181 resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Resource_dirs, "res")
Colin Cross8a497952019-03-05 22:25:09 -0800182 resourceZips := android.PathsForModuleSrc(ctx, a.aaptProperties.Resource_zips)
Colin Crossa97c5d32018-03-28 14:58:31 -0700183
Colin Crossa97c5d32018-03-28 14:58:31 -0700184 // Glob directories into lists of paths
185 for _, dir := range resourceDirs {
186 resDirs = append(resDirs, globbedResourceDir{
187 dir: dir,
188 files: androidResourceGlob(ctx, dir),
189 })
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700190 resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, a, dir)
Colin Crossa97c5d32018-03-28 14:58:31 -0700191 overlayDirs = append(overlayDirs, resOverlayDirs...)
192 rroDirs = append(rroDirs, resRRODirs...)
193 }
194
Colin Crossc20dc852020-11-10 12:27:45 -0800195 var assetDeps android.Paths
196 for i, dir := range assetDirs {
197 // Add a dependency on every file in the asset directory. This ensures the aapt2
198 // rule will be rerun if one of the files in the asset directory is modified.
199 assetDeps = append(assetDeps, androidResourceGlob(ctx, dir)...)
200
201 // Add a dependency on a file that contains a list of all the files in the asset directory.
202 // This ensures the aapt2 rule will be run if a file is removed from the asset directory,
203 // or a file is added whose timestamp is older than the output of aapt2.
204 assetFileListFile := android.PathForModuleOut(ctx, "asset_dir_globs", strconv.Itoa(i)+".glob")
205 androidResourceGlobList(ctx, dir, assetFileListFile)
206 assetDeps = append(assetDeps, assetFileListFile)
Colin Crossa97c5d32018-03-28 14:58:31 -0700207 }
208
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700209 assetDirStrings := assetDirs.Strings()
210 if a.noticeFile.Valid() {
211 assetDirStrings = append(assetDirStrings, filepath.Dir(a.noticeFile.Path().String()))
Colin Crossc20dc852020-11-10 12:27:45 -0800212 assetDeps = append(assetDeps, a.noticeFile.Path())
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700213 }
214
Colin Crossa97c5d32018-03-28 14:58:31 -0700215 linkFlags = append(linkFlags, "--manifest "+manifestPath.String())
216 linkDeps = append(linkDeps, manifestPath)
217
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700218 linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirStrings, "-A "))
Colin Crossc20dc852020-11-10 12:27:45 -0800219 linkDeps = append(linkDeps, assetDeps...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700220
Colin Crossa97c5d32018-03-28 14:58:31 -0700221 // SDK version flags
Jiyong Park6a927c42020-01-21 02:03:43 +0900222 minSdkVersion, err := sdkContext.minSdkVersion().effectiveVersionString(ctx)
223 if err != nil {
224 ctx.ModuleErrorf("invalid minSdkVersion: %s", err)
225 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700226
Colin Cross83bb3162018-06-25 15:48:06 -0700227 linkFlags = append(linkFlags, "--min-sdk-version "+minSdkVersion)
228 linkFlags = append(linkFlags, "--target-sdk-version "+minSdkVersion)
Colin Crossa97c5d32018-03-28 14:58:31 -0700229
Colin Crossa97c5d32018-03-28 14:58:31 -0700230 // Version code
231 if !hasVersionCode {
Dan Albert4f378d72020-07-23 17:32:15 -0700232 linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion().String())
Colin Crossa97c5d32018-03-28 14:58:31 -0700233 }
234
235 if !hasVersionName {
Colin Cross402d5e02018-04-25 14:54:06 -0700236 var versionName string
237 if ctx.ModuleName() == "framework-res" {
238 // Some builds set AppsDefaultVersionName() to include the build number ("O-123456"). aapt2 copies the
239 // version name of framework-res into app manifests as compileSdkVersionCodename, which confuses things
Colin Crossbfd347d2018-05-09 11:11:35 -0700240 // if it contains the build number. Use the PlatformVersionName instead.
241 versionName = ctx.Config().PlatformVersionName()
Colin Cross402d5e02018-04-25 14:54:06 -0700242 } else {
243 versionName = ctx.Config().AppsDefaultVersionName()
244 }
Colin Cross0b9f31f2019-02-28 11:00:01 -0800245 versionName = proptools.NinjaEscape(versionName)
Colin Crossa97c5d32018-03-28 14:58:31 -0700246 linkFlags = append(linkFlags, "--version-name ", versionName)
247 }
248
Colin Crossa0ba2f52019-06-22 12:59:27 -0700249 linkFlags, compileFlags = android.FilterList(linkFlags, []string{"--legacy"})
250
251 // Always set --pseudo-localize, it will be stripped out later for release
252 // builds that don't want it.
253 compileFlags = append(compileFlags, "--pseudo-localize")
254
255 return compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resourceZips
Colin Crossa97c5d32018-03-28 14:58:31 -0700256}
257
Paul Duffin250e6192019-06-07 10:44:37 +0100258func (a *aapt) deps(ctx android.BottomUpMutatorContext, sdkDep sdkDep) {
Colin Cross42308aa2018-11-14 21:44:17 -0800259 if sdkDep.frameworkResModule != "" {
260 ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
Colin Crossa97c5d32018-03-28 14:58:31 -0700261 }
262}
263
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800264var extractAssetsRule = pctx.AndroidStaticRule("extractAssets",
265 blueprint.RuleParams{
266 Command: `${config.Zip2ZipCmd} -i ${in} -o ${out} "assets/**/*"`,
267 CommandDeps: []string{"${config.Zip2ZipCmd}"},
268 })
269
Ulya Trafimovich18554242020-11-03 15:55:11 +0000270func (a *aapt) buildActions(ctx android.ModuleContext, sdkContext sdkContext,
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100271 classLoaderContexts dexpreopt.ClassLoaderContextMap, extraLinkFlags ...string) {
Colin Cross5446e882019-05-22 10:46:27 -0700272
Ulya Trafimovich18554242020-11-03 15:55:11 +0000273 transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assetPackages, libDeps, libFlags :=
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100274 aaptLibs(ctx, sdkContext, classLoaderContexts)
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100275
Colin Cross31656952018-05-24 16:11:20 -0700276 // App manifest file
277 manifestFile := proptools.StringDefault(a.aaptProperties.Manifest, "AndroidManifest.xml")
278 manifestSrcPath := android.PathForModuleSrc(ctx, manifestFile)
279
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100280 manifestPath := manifestFixer(ctx, manifestSrcPath, sdkContext, classLoaderContexts,
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800281 a.isLibrary, a.useEmbeddedNativeLibs, a.usesNonSdkApis, a.useEmbeddedDex, a.hasNoCode,
282 a.LoggingParent)
Colin Cross90c25c62019-04-19 16:22:57 -0700283
Luca Stefanifd898822019-09-10 22:13:31 +0200284 // Add additional manifest files to transitive manifests.
285 additionalManifests := android.PathsForModuleSrc(ctx, a.aaptProperties.Additional_manifests)
286 a.transitiveManifestPaths = append(android.Paths{manifestPath}, additionalManifests...)
287 a.transitiveManifestPaths = append(a.transitiveManifestPaths, transitiveStaticLibManifests...)
Colin Cross90c25c62019-04-19 16:22:57 -0700288
Sasha Smundak541056c2019-10-28 15:50:06 -0700289 if len(a.transitiveManifestPaths) > 1 && !Bool(a.aaptProperties.Dont_merge_manifests) {
Luca Stefanifd898822019-09-10 22:13:31 +0200290 a.mergedManifestFile = manifestMerger(ctx, a.transitiveManifestPaths[0], a.transitiveManifestPaths[1:], a.isLibrary)
Colin Cross90c25c62019-04-19 16:22:57 -0700291 if !a.isLibrary {
292 // Only use the merged manifest for applications. For libraries, the transitive closure of manifests
293 // will be propagated to the final application and merged there. The merged manifest for libraries is
294 // only passed to Make, which can't handle transitive dependencies.
295 manifestPath = a.mergedManifestFile
296 }
297 } else {
298 a.mergedManifestFile = manifestPath
299 }
Colin Cross31656952018-05-24 16:11:20 -0700300
Colin Crossa0ba2f52019-06-22 12:59:27 -0700301 compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resZips := a.aapt2Flags(ctx, sdkContext, manifestPath)
Colin Cross31656952018-05-24 16:11:20 -0700302
Colin Crossc1c37552019-01-31 11:42:41 -0800303 rroDirs = append(rroDirs, staticRRODirs...)
Colin Cross31656952018-05-24 16:11:20 -0700304 linkFlags = append(linkFlags, libFlags...)
305 linkDeps = append(linkDeps, libDeps...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700306 linkFlags = append(linkFlags, extraLinkFlags...)
Colin Cross1b6a3cf2018-07-24 14:51:30 -0700307 if a.isLibrary {
308 linkFlags = append(linkFlags, "--static-lib")
309 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700310
311 packageRes := android.PathForModuleOut(ctx, "package-res.apk")
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900312 // the subdir "android" is required to be filtered by package names
313 srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar")
Colin Crossa97c5d32018-03-28 14:58:31 -0700314 proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
315 rTxt := android.PathForModuleOut(ctx, "R.txt")
Colin Cross66f78822018-05-02 12:58:28 -0700316 // This file isn't used by Soong, but is generated for exporting
317 extraPackages := android.PathForModuleOut(ctx, "extra_packages")
Colin Crossa97c5d32018-03-28 14:58:31 -0700318
Colin Cross4aaa84a2018-08-21 15:14:37 -0700319 var compiledResDirs []android.Paths
Colin Crossa97c5d32018-03-28 14:58:31 -0700320 for _, dir := range resDirs {
Colin Cross014489c2020-06-02 20:09:13 -0700321 a.resourceFiles = append(a.resourceFiles, dir.files...)
Colin Crossa0ba2f52019-06-22 12:59:27 -0700322 compiledResDirs = append(compiledResDirs, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths())
Colin Crossa97c5d32018-03-28 14:58:31 -0700323 }
Colin Cross4aaa84a2018-08-21 15:14:37 -0700324
Colin Crossa592e3e2019-02-19 16:59:53 -0800325 for i, zip := range resZips {
326 flata := android.PathForModuleOut(ctx, fmt.Sprintf("reszip.%d.flata", i))
Colin Crossa0ba2f52019-06-22 12:59:27 -0700327 aapt2CompileZip(ctx, flata, zip, "", compileFlags)
Colin Crossa592e3e2019-02-19 16:59:53 -0800328 compiledResDirs = append(compiledResDirs, android.Paths{flata})
329 }
330
Colin Cross4aaa84a2018-08-21 15:14:37 -0700331 var compiledRes, compiledOverlay android.Paths
332
333 compiledOverlay = append(compiledOverlay, transitiveStaticLibs...)
334
Colin Crossbec85302019-02-13 13:15:46 -0800335 if len(transitiveStaticLibs) > 0 {
Colin Cross4aaa84a2018-08-21 15:14:37 -0700336 // If we are using static android libraries, every source file becomes an overlay.
337 // This is to emulate old AAPT behavior which simulated library support.
338 for _, compiledResDir := range compiledResDirs {
339 compiledOverlay = append(compiledOverlay, compiledResDir...)
340 }
Colin Crossbec85302019-02-13 13:15:46 -0800341 } else if a.isLibrary {
342 // Otherwise, for a static library we treat all the resources equally with no overlay.
343 for _, compiledResDir := range compiledResDirs {
344 compiledRes = append(compiledRes, compiledResDir...)
345 }
Colin Cross4aaa84a2018-08-21 15:14:37 -0700346 } else if len(compiledResDirs) > 0 {
347 // Without static libraries, the first directory is our directory, which can then be
348 // overlaid by the rest.
349 compiledRes = append(compiledRes, compiledResDirs[0]...)
350 for _, compiledResDir := range compiledResDirs[1:] {
351 compiledOverlay = append(compiledOverlay, compiledResDir...)
352 }
353 }
354
Colin Crossa97c5d32018-03-28 14:58:31 -0700355 for _, dir := range overlayDirs {
Colin Crossa0ba2f52019-06-22 12:59:27 -0700356 compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths()...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700357 }
358
Colin Crosse560c4a2019-03-19 16:03:11 -0700359 var splitPackages android.WritablePaths
360 var splits []split
361
362 for _, s := range a.splitNames {
363 suffix := strings.Replace(s, ",", "_", -1)
364 path := android.PathForModuleOut(ctx, "package_"+suffix+".apk")
365 linkFlags = append(linkFlags, "--split", path.String()+":"+s)
366 splitPackages = append(splitPackages, path)
367 splits = append(splits, split{
368 name: s,
369 suffix: suffix,
370 path: path,
371 })
372 }
373
Colin Cross66f78822018-05-02 12:58:28 -0700374 aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile, rTxt, extraPackages,
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800375 linkFlags, linkDeps, compiledRes, compiledOverlay, assetPackages, splitPackages)
376
377 // Extract assets from the resource package output so that they can be used later in aapt2link
378 // for modules that depend on this one.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800379 if android.PrefixInList(linkFlags, "-A ") || len(assetPackages) > 0 {
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800380 assets := android.PathForModuleOut(ctx, "assets.zip")
381 ctx.Build(pctx, android.BuildParams{
382 Rule: extractAssetsRule,
383 Input: packageRes,
384 Output: assets,
385 Description: "extract assets from built resource file",
386 })
387 a.assetPackage = android.OptionalPathForPath(assets)
388 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700389
390 a.aaptSrcJar = srcJar
391 a.exportPackage = packageRes
392 a.manifestPath = manifestPath
393 a.proguardOptionsFile = proguardOptionsFile
394 a.rroDirs = rroDirs
Colin Cross66f78822018-05-02 12:58:28 -0700395 a.extraAaptPackagesFile = extraPackages
Colin Crossa97c5d32018-03-28 14:58:31 -0700396 a.rTxt = rTxt
Colin Crosse560c4a2019-03-19 16:03:11 -0700397 a.splits = splits
Colin Crossa97c5d32018-03-28 14:58:31 -0700398}
399
400// aaptLibs collects libraries from dependencies and sdk_version and converts them into paths
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100401func aaptLibs(ctx android.ModuleContext, sdkContext sdkContext, classLoaderContexts dexpreopt.ClassLoaderContextMap) (
Ulya Trafimovich18554242020-11-03 15:55:11 +0000402 transitiveStaticLibs, transitiveStaticLibManifests android.Paths, staticRRODirs []rroDir, assets, deps android.Paths, flags []string) {
Colin Cross66f78822018-05-02 12:58:28 -0700403
Colin Crossa97c5d32018-03-28 14:58:31 -0700404 var sharedLibs android.Paths
405
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100406 if classLoaderContexts == nil {
Ulya Trafimovich18554242020-11-03 15:55:11 +0000407 // Not all callers need to compute class loader context, those who don't just pass nil.
408 // Create a temporary class loader context here (it will be computed, but not used).
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100409 classLoaderContexts = make(dexpreopt.ClassLoaderContextMap)
Ulya Trafimovich18554242020-11-03 15:55:11 +0000410 }
411
Colin Cross83bb3162018-06-25 15:48:06 -0700412 sdkDep := decodeSdkDep(ctx, sdkContext)
Colin Crossa97c5d32018-03-28 14:58:31 -0700413 if sdkDep.useFiles {
Colin Cross86a60ae2018-05-29 14:44:55 -0700414 sharedLibs = append(sharedLibs, sdkDep.jars...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700415 }
416
417 ctx.VisitDirectDeps(func(module android.Module) {
Ulya Trafimovich65b03192020-12-03 16:50:22 +0000418 depTag := ctx.OtherModuleDependencyTag(module)
Ulya Trafimovich18554242020-11-03 15:55:11 +0000419
Colin Crossa97c5d32018-03-28 14:58:31 -0700420 var exportPackage android.Path
Colin Cross66f78822018-05-02 12:58:28 -0700421 aarDep, _ := module.(AndroidLibraryDependency)
422 if aarDep != nil {
Colin Crossa97c5d32018-03-28 14:58:31 -0700423 exportPackage = aarDep.ExportPackage()
424 }
425
Ulya Trafimovich65b03192020-12-03 16:50:22 +0000426 switch depTag {
Colin Cross4b964c02018-10-15 16:18:06 -0700427 case instrumentationForTag:
428 // Nothing, instrumentationForTag is treated as libTag for javac but not for aapt2.
Colin Cross5446e882019-05-22 10:46:27 -0700429 case libTag:
430 if exportPackage != nil {
431 sharedLibs = append(sharedLibs, exportPackage)
432 }
Colin Cross5446e882019-05-22 10:46:27 -0700433 case frameworkResTag:
Colin Crossa97c5d32018-03-28 14:58:31 -0700434 if exportPackage != nil {
435 sharedLibs = append(sharedLibs, exportPackage)
436 }
437 case staticLibTag:
438 if exportPackage != nil {
Colin Cross66f78822018-05-02 12:58:28 -0700439 transitiveStaticLibs = append(transitiveStaticLibs, aarDep.ExportedStaticPackages()...)
Colin Crossbec85302019-02-13 13:15:46 -0800440 transitiveStaticLibs = append(transitiveStaticLibs, exportPackage)
Colin Cross90c25c62019-04-19 16:22:57 -0700441 transitiveStaticLibManifests = append(transitiveStaticLibManifests, aarDep.ExportedManifests()...)
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800442 if aarDep.ExportedAssets().Valid() {
443 assets = append(assets, aarDep.ExportedAssets().Path())
444 }
Anton Hansson53c88442019-03-18 15:53:16 +0000445
Jeongik Chacee5ba92021-02-19 12:11:51 +0900446 outer:
447 for _, d := range aarDep.ExportedRRODirs() {
448 for _, e := range staticRRODirs {
449 if d.path == e.path {
450 continue outer
Anton Hansson53c88442019-03-18 15:53:16 +0000451 }
452 }
Jeongik Chacee5ba92021-02-19 12:11:51 +0900453 staticRRODirs = append(staticRRODirs, d)
Anton Hansson53c88442019-03-18 15:53:16 +0000454 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700455 }
456 }
Ulya Trafimovich18554242020-11-03 15:55:11 +0000457
Ulya Trafimovich88bb6f62020-12-16 16:16:11 +0000458 addCLCFromDep(ctx, module, classLoaderContexts)
Colin Crossa97c5d32018-03-28 14:58:31 -0700459 })
460
461 deps = append(deps, sharedLibs...)
Colin Cross66f78822018-05-02 12:58:28 -0700462 deps = append(deps, transitiveStaticLibs...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700463
Colin Cross66f78822018-05-02 12:58:28 -0700464 if len(transitiveStaticLibs) > 0 {
Colin Crossa97c5d32018-03-28 14:58:31 -0700465 flags = append(flags, "--auto-add-overlay")
466 }
467
468 for _, sharedLib := range sharedLibs {
469 flags = append(flags, "-I "+sharedLib.String())
470 }
471
Colin Cross66f78822018-05-02 12:58:28 -0700472 transitiveStaticLibs = android.FirstUniquePaths(transitiveStaticLibs)
Colin Cross90c25c62019-04-19 16:22:57 -0700473 transitiveStaticLibManifests = android.FirstUniquePaths(transitiveStaticLibManifests)
Colin Cross66f78822018-05-02 12:58:28 -0700474
Ulya Trafimovich18554242020-11-03 15:55:11 +0000475 return transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assets, deps, flags
Colin Crossa97c5d32018-03-28 14:58:31 -0700476}
477
478type AndroidLibrary struct {
479 Library
480 aapt
481
482 androidLibraryProperties androidLibraryProperties
483
484 aarFile android.WritablePath
Colin Cross89c31582018-04-30 15:55:11 -0700485
486 exportedProguardFlagFiles android.Paths
Colin Cross66f78822018-05-02 12:58:28 -0700487 exportedStaticPackages android.Paths
Colin Cross89c31582018-04-30 15:55:11 -0700488}
489
490func (a *AndroidLibrary) ExportedProguardFlagFiles() android.Paths {
491 return a.exportedProguardFlagFiles
Colin Crossa97c5d32018-03-28 14:58:31 -0700492}
493
Colin Cross66f78822018-05-02 12:58:28 -0700494func (a *AndroidLibrary) ExportedStaticPackages() android.Paths {
495 return a.exportedStaticPackages
496}
497
Colin Crossa97c5d32018-03-28 14:58:31 -0700498var _ AndroidLibraryDependency = (*AndroidLibrary)(nil)
499
500func (a *AndroidLibrary) DepsMutator(ctx android.BottomUpMutatorContext) {
501 a.Module.deps(ctx)
Paul Duffin250e6192019-06-07 10:44:37 +0100502 sdkDep := decodeSdkDep(ctx, sdkContext(a))
503 if sdkDep.hasFrameworkLibs() {
504 a.aapt.deps(ctx, sdkDep)
Colin Crossa97c5d32018-03-28 14:58:31 -0700505 }
506}
507
508func (a *AndroidLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Crosse4246ab2019-02-05 21:55:21 -0800509 a.aapt.isLibrary = true
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100510 a.classLoaderContexts = make(dexpreopt.ClassLoaderContextMap)
511 a.aapt.buildActions(ctx, sdkContext(a), a.classLoaderContexts)
Colin Crossa97c5d32018-03-28 14:58:31 -0700512
Colin Cross56a83212020-09-15 18:30:11 -0700513 a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform()
514
Colin Crossa97c5d32018-03-28 14:58:31 -0700515 ctx.CheckbuildFile(a.proguardOptionsFile)
516 ctx.CheckbuildFile(a.exportPackage)
517 ctx.CheckbuildFile(a.aaptSrcJar)
518
519 // apps manifests are handled by aapt, don't let Module see them
520 a.properties.Manifest = nil
521
Colin Cross014489c2020-06-02 20:09:13 -0700522 a.linter.mergedManifest = a.aapt.mergedManifestFile
523 a.linter.manifest = a.aapt.manifestPath
524 a.linter.resources = a.aapt.resourceFiles
525
Colin Crossa97c5d32018-03-28 14:58:31 -0700526 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles,
527 a.proguardOptionsFile)
528
529 a.Module.compile(ctx, a.aaptSrcJar)
530
Colin Crossf57c5782019-01-25 13:20:38 -0800531 a.aarFile = android.PathForModuleOut(ctx, ctx.ModuleName()+".aar")
Colin Crossa97c5d32018-03-28 14:58:31 -0700532 var res android.Paths
533 if a.androidLibraryProperties.BuildAAR {
534 BuildAAR(ctx, a.aarFile, a.outputFile, a.manifestPath, a.rTxt, res)
535 ctx.CheckbuildFile(a.aarFile)
536 }
Colin Cross89c31582018-04-30 15:55:11 -0700537
Cole Faust9a631312020-10-22 21:05:24 +0000538 a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles,
539 android.PathsForModuleSrc(ctx, a.dexProperties.Optimize.Proguard_flags_files)...)
Colin Cross89c31582018-04-30 15:55:11 -0700540 ctx.VisitDirectDeps(func(m android.Module) {
541 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
542 a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
Colin Cross66f78822018-05-02 12:58:28 -0700543 a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportPackage())
544 a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportedStaticPackages()...)
Colin Cross89c31582018-04-30 15:55:11 -0700545 }
546 })
547
548 a.exportedProguardFlagFiles = android.FirstUniquePaths(a.exportedProguardFlagFiles)
Colin Cross66f78822018-05-02 12:58:28 -0700549 a.exportedStaticPackages = android.FirstUniquePaths(a.exportedStaticPackages)
Colin Crossa97c5d32018-03-28 14:58:31 -0700550}
551
Colin Cross1b16b0e2019-02-12 14:41:32 -0800552// android_library builds and links sources into a `.jar` file for the device along with Android resources.
553//
554// An android_library has a single variant that produces a `.jar` file containing `.class` files that were
555// compiled against the device bootclasspath, along with a `package-res.apk` file containing Android resources compiled
556// with aapt2. This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of
557// an android_app module.
Colin Crossa97c5d32018-03-28 14:58:31 -0700558func AndroidLibraryFactory() android.Module {
559 module := &AndroidLibrary{}
560
Colin Crossce6734e2020-06-15 16:09:53 -0700561 module.Module.addHostAndDeviceProperties()
Colin Crossa97c5d32018-03-28 14:58:31 -0700562 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -0700563 &module.aaptProperties,
564 &module.androidLibraryProperties)
565
566 module.androidLibraryProperties.BuildAAR = true
Colin Cross014489c2020-06-02 20:09:13 -0700567 module.Module.linter.library = true
Colin Crossa97c5d32018-03-28 14:58:31 -0700568
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900569 android.InitApexModule(module)
Colin Cross48de9a42018-10-02 13:53:33 -0700570 InitJavaModule(module, android.DeviceSupported)
Colin Crossa97c5d32018-03-28 14:58:31 -0700571 return module
572}
573
Colin Crossfabb6082018-02-20 17:22:23 -0800574//
575// AAR (android library) prebuilts
576//
Colin Crossfabb6082018-02-20 17:22:23 -0800577
578type AARImportProperties struct {
Colin Cross27b922f2019-03-04 22:35:41 -0800579 Aars []string `android:"path"`
Colin Crossfabb6082018-02-20 17:22:23 -0800580
Colin Cross479884c2018-07-10 13:39:30 -0700581 Sdk_version *string
582 Min_sdk_version *string
Colin Crossa97c5d32018-03-28 14:58:31 -0700583
584 Static_libs []string
585 Libs []string
Nan Zhang4c819fb2018-08-27 18:31:46 -0700586
587 // if set to true, run Jetifier against .aar file. Defaults to false.
Colin Cross1001a792019-03-21 22:21:39 -0700588 Jetifier *bool
Colin Crossfabb6082018-02-20 17:22:23 -0800589}
590
591type AARImport struct {
592 android.ModuleBase
Colin Cross48de9a42018-10-02 13:53:33 -0700593 android.DefaultableModuleBase
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900594 android.ApexModuleBase
Colin Crossfabb6082018-02-20 17:22:23 -0800595 prebuilt android.Prebuilt
596
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900597 // Functionality common to Module and Import.
598 embeddableInModuleAndImport
599
Colin Crossfabb6082018-02-20 17:22:23 -0800600 properties AARImportProperties
601
Colin Cross66f78822018-05-02 12:58:28 -0700602 classpathFile android.WritablePath
603 proguardFlags android.WritablePath
604 exportPackage android.WritablePath
605 extraAaptPackagesFile android.WritablePath
Colin Cross10f7c4a2018-05-23 10:59:28 -0700606 manifest android.WritablePath
Colin Cross66f78822018-05-02 12:58:28 -0700607
608 exportedStaticPackages android.Paths
Colin Cross56a83212020-09-15 18:30:11 -0700609
610 hideApexVariantFromMake bool
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000611
612 aarPath android.Path
613}
614
615var _ android.OutputFileProducer = (*AARImport)(nil)
616
617// For OutputFileProducer interface
618func (a *AARImport) OutputFiles(tag string) (android.Paths, error) {
619 switch tag {
620 case ".aar":
621 return []android.Path{a.aarPath}, nil
622 case "":
623 return []android.Path{a.classpathFile}, nil
624 default:
625 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
626 }
Colin Crossfabb6082018-02-20 17:22:23 -0800627}
628
Jiyong Park6a927c42020-01-21 02:03:43 +0900629func (a *AARImport) sdkVersion() sdkSpec {
630 return sdkSpecFrom(String(a.properties.Sdk_version))
Colin Cross83bb3162018-06-25 15:48:06 -0700631}
632
Paul Duffine25c6442019-10-11 13:50:28 +0100633func (a *AARImport) systemModules() string {
634 return ""
635}
636
Jiyong Park6a927c42020-01-21 02:03:43 +0900637func (a *AARImport) minSdkVersion() sdkSpec {
Colin Cross479884c2018-07-10 13:39:30 -0700638 if a.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +0900639 return sdkSpecFrom(*a.properties.Min_sdk_version)
Colin Cross479884c2018-07-10 13:39:30 -0700640 }
Colin Cross83bb3162018-06-25 15:48:06 -0700641 return a.sdkVersion()
642}
643
Jiyong Park6a927c42020-01-21 02:03:43 +0900644func (a *AARImport) targetSdkVersion() sdkSpec {
Dan Willemsen419290a2018-10-31 15:28:47 -0700645 return a.sdkVersion()
646}
647
Colin Cross1e743852019-10-28 11:37:20 -0700648func (a *AARImport) javaVersion() string {
649 return ""
650}
651
Colin Crossa97c5d32018-03-28 14:58:31 -0700652var _ AndroidLibraryDependency = (*AARImport)(nil)
653
654func (a *AARImport) ExportPackage() android.Path {
655 return a.exportPackage
656}
657
Colin Cross89c31582018-04-30 15:55:11 -0700658func (a *AARImport) ExportedProguardFlagFiles() android.Paths {
659 return android.Paths{a.proguardFlags}
660}
661
Anton Hansson53c88442019-03-18 15:53:16 +0000662func (a *AARImport) ExportedRRODirs() []rroDir {
Colin Crossc1c37552019-01-31 11:42:41 -0800663 return nil
664}
665
Colin Cross66f78822018-05-02 12:58:28 -0700666func (a *AARImport) ExportedStaticPackages() android.Paths {
667 return a.exportedStaticPackages
668}
669
Colin Cross90c25c62019-04-19 16:22:57 -0700670func (a *AARImport) ExportedManifests() android.Paths {
671 return android.Paths{a.manifest}
Colin Cross31656952018-05-24 16:11:20 -0700672}
673
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800674// TODO(jungjw): Decide whether we want to implement this.
675func (a *AARImport) ExportedAssets() android.OptionalPath {
676 return android.OptionalPath{}
677}
678
Jaewoong Jungc779cd42020-10-06 18:56:10 -0700679// RRO enforcement is not available on aar_import since its RRO dirs are not
680// exported.
681func (a *AARImport) SetRROEnforcedForDependent(enforce bool) {
682}
683
684// RRO enforcement is not available on aar_import since its RRO dirs are not
685// exported.
686func (a *AARImport) IsRROEnforced(ctx android.BaseModuleContext) bool {
687 return false
688}
689
Colin Crossfabb6082018-02-20 17:22:23 -0800690func (a *AARImport) Prebuilt() *android.Prebuilt {
691 return &a.prebuilt
692}
693
694func (a *AARImport) Name() string {
695 return a.prebuilt.Name(a.ModuleBase.Name())
696}
697
Jiyong Park618922e2020-01-08 13:35:43 +0900698func (a *AARImport) JacocoReportClassesFile() android.Path {
699 return nil
700}
701
Colin Crossfabb6082018-02-20 17:22:23 -0800702func (a *AARImport) DepsMutator(ctx android.BottomUpMutatorContext) {
Jeongik Cha816a23a2020-07-08 01:09:23 +0900703 if !ctx.Config().AlwaysUsePrebuiltSdks() {
Colin Cross83bb3162018-06-25 15:48:06 -0700704 sdkDep := decodeSdkDep(ctx, sdkContext(a))
Colin Crossa97c5d32018-03-28 14:58:31 -0700705 if sdkDep.useModule && sdkDep.frameworkResModule != "" {
Colin Cross42d48b72018-08-29 14:10:52 -0700706 ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
Colin Crossfabb6082018-02-20 17:22:23 -0800707 }
708 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700709
Colin Cross42d48b72018-08-29 14:10:52 -0700710 ctx.AddVariationDependencies(nil, libTag, a.properties.Libs...)
711 ctx.AddVariationDependencies(nil, staticLibTag, a.properties.Static_libs...)
Colin Crossfabb6082018-02-20 17:22:23 -0800712}
713
714// Unzip an AAR into its constituent files and directories. Any files in Outputs that don't exist in the AAR will be
Dan Willemsen304cfec2019-05-28 14:49:06 -0700715// touched to create an empty file. The res directory is not extracted, as it will be extracted in its own rule.
Colin Crossfabb6082018-02-20 17:22:23 -0800716var unzipAAR = pctx.AndroidStaticRule("unzipAAR",
717 blueprint.RuleParams{
Dan Willemsen304cfec2019-05-28 14:49:06 -0700718 Command: `rm -rf $outDir && mkdir -p $outDir && ` +
Colin Cross205e9112020-08-06 13:20:17 -0700719 `unzip -qoDD -d $outDir $in && rm -rf $outDir/res && touch $out && ` +
720 `${config.MergeZipsCmd} $combinedClassesJar $$(ls $outDir/classes.jar 2> /dev/null) $$(ls $outDir/libs/*.jar 2> /dev/null)`,
721 CommandDeps: []string{"${config.MergeZipsCmd}"},
Colin Crossfabb6082018-02-20 17:22:23 -0800722 },
Colin Cross205e9112020-08-06 13:20:17 -0700723 "outDir", "combinedClassesJar")
Colin Crossfabb6082018-02-20 17:22:23 -0800724
725func (a *AARImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
726 if len(a.properties.Aars) != 1 {
727 ctx.PropertyErrorf("aars", "exactly one aar is required")
728 return
729 }
730
Colin Cross56a83212020-09-15 18:30:11 -0700731 a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform()
732
Nan Zhang4c819fb2018-08-27 18:31:46 -0700733 aarName := ctx.ModuleName() + ".aar"
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000734 a.aarPath = android.PathForModuleSrc(ctx, a.properties.Aars[0])
735
Colin Cross1001a792019-03-21 22:21:39 -0700736 if Bool(a.properties.Jetifier) {
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000737 inputFile := a.aarPath
738 a.aarPath = android.PathForModuleOut(ctx, "jetifier", aarName)
739 TransformJetifier(ctx, a.aarPath.(android.WritablePath), inputFile)
Nan Zhang4c819fb2018-08-27 18:31:46 -0700740 }
Colin Crossfabb6082018-02-20 17:22:23 -0800741
742 extractedAARDir := android.PathForModuleOut(ctx, "aar")
Colin Cross205e9112020-08-06 13:20:17 -0700743 a.classpathFile = extractedAARDir.Join(ctx, "classes-combined.jar")
Colin Crossfabb6082018-02-20 17:22:23 -0800744 a.proguardFlags = extractedAARDir.Join(ctx, "proguard.txt")
Colin Cross10f7c4a2018-05-23 10:59:28 -0700745 a.manifest = extractedAARDir.Join(ctx, "AndroidManifest.xml")
Colin Crossfabb6082018-02-20 17:22:23 -0800746
747 ctx.Build(pctx, android.BuildParams{
748 Rule: unzipAAR,
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000749 Input: a.aarPath,
Colin Cross10f7c4a2018-05-23 10:59:28 -0700750 Outputs: android.WritablePaths{a.classpathFile, a.proguardFlags, a.manifest},
Colin Crossfabb6082018-02-20 17:22:23 -0800751 Description: "unzip AAR",
752 Args: map[string]string{
Colin Cross205e9112020-08-06 13:20:17 -0700753 "outDir": extractedAARDir.String(),
754 "combinedClassesJar": a.classpathFile.String(),
Colin Crossfabb6082018-02-20 17:22:23 -0800755 },
756 })
757
Colin Crossa0ba2f52019-06-22 12:59:27 -0700758 // Always set --pseudo-localize, it will be stripped out later for release
759 // builds that don't want it.
760 compileFlags := []string{"--pseudo-localize"}
Colin Crossfabb6082018-02-20 17:22:23 -0800761 compiledResDir := android.PathForModuleOut(ctx, "flat-res")
Colin Crossfabb6082018-02-20 17:22:23 -0800762 flata := compiledResDir.Join(ctx, "gen_res.flata")
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000763 aapt2CompileZip(ctx, flata, a.aarPath, "res", compileFlags)
Colin Crossfabb6082018-02-20 17:22:23 -0800764
765 a.exportPackage = android.PathForModuleOut(ctx, "package-res.apk")
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900766 // the subdir "android" is required to be filtered by package names
767 srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar")
Colin Crossfabb6082018-02-20 17:22:23 -0800768 proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
Colin Crossa97c5d32018-03-28 14:58:31 -0700769 rTxt := android.PathForModuleOut(ctx, "R.txt")
Colin Cross66f78822018-05-02 12:58:28 -0700770 a.extraAaptPackagesFile = android.PathForModuleOut(ctx, "extra_packages")
Colin Crossfabb6082018-02-20 17:22:23 -0800771
772 var linkDeps android.Paths
773
774 linkFlags := []string{
775 "--static-lib",
776 "--no-static-lib-packages",
777 "--auto-add-overlay",
778 }
779
Colin Cross10f7c4a2018-05-23 10:59:28 -0700780 linkFlags = append(linkFlags, "--manifest "+a.manifest.String())
781 linkDeps = append(linkDeps, a.manifest)
Colin Crossfabb6082018-02-20 17:22:23 -0800782
Ulya Trafimovich18554242020-11-03 15:55:11 +0000783 transitiveStaticLibs, staticLibManifests, staticRRODirs, transitiveAssets, libDeps, libFlags :=
784 aaptLibs(ctx, sdkContext(a), nil)
Colin Cross31656952018-05-24 16:11:20 -0700785
786 _ = staticLibManifests
Colin Crossc1c37552019-01-31 11:42:41 -0800787 _ = staticRRODirs
Colin Crossfabb6082018-02-20 17:22:23 -0800788
Colin Crossa97c5d32018-03-28 14:58:31 -0700789 linkDeps = append(linkDeps, libDeps...)
790 linkFlags = append(linkFlags, libFlags...)
Colin Crossfabb6082018-02-20 17:22:23 -0800791
Colin Cross66f78822018-05-02 12:58:28 -0700792 overlayRes := append(android.Paths{flata}, transitiveStaticLibs...)
Colin Crossfabb6082018-02-20 17:22:23 -0800793
Colin Cross66f78822018-05-02 12:58:28 -0700794 aapt2Link(ctx, a.exportPackage, srcJar, proguardOptionsFile, rTxt, a.extraAaptPackagesFile,
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800795 linkFlags, linkDeps, nil, overlayRes, transitiveAssets, nil)
Colin Crossfabb6082018-02-20 17:22:23 -0800796
Colin Crossdcf71b22021-02-01 13:59:03 -0800797 ctx.SetProvider(JavaInfoProvider, JavaInfo{
798 HeaderJars: android.PathsIfNonNil(a.classpathFile),
799 ImplementationAndResourcesJars: android.PathsIfNonNil(a.classpathFile),
800 ImplementationJars: android.PathsIfNonNil(a.classpathFile),
801 })
802}
Colin Crossfabb6082018-02-20 17:22:23 -0800803
804func (a *AARImport) HeaderJars() android.Paths {
805 return android.Paths{a.classpathFile}
806}
807
Colin Cross331a1212018-08-15 20:40:52 -0700808func (a *AARImport) ImplementationAndResourcesJars() android.Paths {
809 return android.Paths{a.classpathFile}
810}
811
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +0000812func (a *AARImport) DexJarBuildPath() android.Path {
Colin Crossf24a22a2019-01-31 14:12:44 -0800813 return nil
814}
815
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +0100816func (a *AARImport) DexJarInstallPath() android.Path {
817 return nil
818}
819
Ulya Trafimovichb23d28c2020-10-08 12:53:58 +0100820func (a *AARImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap {
Jiyong Park1be96912018-05-28 18:02:19 +0900821 return nil
822}
823
Jiyong Park45bf82e2020-12-15 22:29:02 +0900824var _ android.ApexModule = (*AARImport)(nil)
825
826// Implements android.ApexModule
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900827func (a *AARImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
828 return a.depIsInSameApex(ctx, dep)
829}
830
Jiyong Park45bf82e2020-12-15 22:29:02 +0900831// Implements android.ApexModule
Dan Albertc8060532020-07-22 22:32:17 -0700832func (g *AARImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext,
833 sdkVersion android.ApiLevel) error {
Jooyung Han749dc692020-04-15 11:03:39 +0900834 return nil
835}
836
Colin Crossfabb6082018-02-20 17:22:23 -0800837var _ android.PrebuiltInterface = (*Import)(nil)
838
Colin Cross1b16b0e2019-02-12 14:41:32 -0800839// android_library_import imports an `.aar` file into the build graph as if it was built with android_library.
840//
841// This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of
842// an android_app module.
Colin Crossfabb6082018-02-20 17:22:23 -0800843func AARImportFactory() android.Module {
844 module := &AARImport{}
845
846 module.AddProperties(&module.properties)
847
848 android.InitPrebuiltModule(module, &module.properties.Aars)
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900849 android.InitApexModule(module)
Colin Cross48de9a42018-10-02 13:53:33 -0700850 InitJavaModule(module, android.DeviceSupported)
Colin Crossfabb6082018-02-20 17:22:23 -0800851 return module
852}