blob: c4e647fbcaf8ade6361d7268db1fd684503893e0 [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 Crossa97c5d32018-03-28 14:58:31 -070020 "strings"
Colin Crossfabb6082018-02-20 17:22:23 -080021
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080022 "android/soong/android"
Ulya Trafimovich31e444e2020-08-14 17:32:16 +010023 "android/soong/dexpreopt"
Jaewoong Jung9befb0c2020-01-18 10:33:43 -080024
Colin Crossfabb6082018-02-20 17:22:23 -080025 "github.com/google/blueprint"
Colin Crossa97c5d32018-03-28 14:58:31 -070026 "github.com/google/blueprint/proptools"
Colin Crossfabb6082018-02-20 17:22:23 -080027)
28
Colin Crossa97c5d32018-03-28 14:58:31 -070029type AndroidLibraryDependency interface {
30 Dependency
31 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
Colin Crossa97c5d32018-03-28 14:58:31 -070037}
38
39func init() {
Paul Duffinf9b1da02019-12-18 19:51:55 +000040 RegisterAARBuildComponents(android.InitRegistrationContext)
41}
42
43func RegisterAARBuildComponents(ctx android.RegistrationContext) {
44 ctx.RegisterModuleType("android_library_import", AARImportFactory)
45 ctx.RegisterModuleType("android_library", AndroidLibraryFactory)
Colin Crossa97c5d32018-03-28 14:58:31 -070046}
47
48//
49// AAR (android library)
50//
51
52type androidLibraryProperties struct {
53 BuildAAR bool `blueprint:"mutated"`
54}
55
56type aaptProperties struct {
57 // flags passed to aapt when creating the apk
58 Aaptflags []string
59
Dan Willemsen72be5902018-10-24 20:24:57 -070060 // include all resource configurations, not just the product-configured
61 // ones.
62 Aapt_include_all_resources *bool
63
Colin Crossa97c5d32018-03-28 14:58:31 -070064 // list of directories relative to the Blueprints file containing assets.
Colin Cross0ddae7f2019-02-07 15:30:01 -080065 // Defaults to ["assets"] if a directory called assets exists. Set to []
66 // to disable the default.
Colin Crossa97c5d32018-03-28 14:58:31 -070067 Asset_dirs []string
68
69 // list of directories relative to the Blueprints file containing
Colin Cross0ddae7f2019-02-07 15:30:01 -080070 // Android resources. Defaults to ["res"] if a directory called res exists.
71 // Set to [] to disable the default.
Colin Crossa97c5d32018-03-28 14:58:31 -070072 Resource_dirs []string
73
Colin Crossa592e3e2019-02-19 16:59:53 -080074 // list of zip files containing Android resources.
Colin Cross27b922f2019-03-04 22:35:41 -080075 Resource_zips []string `android:"path"`
Colin Crossa592e3e2019-02-19 16:59:53 -080076
Colin Crossa97c5d32018-03-28 14:58:31 -070077 // path to AndroidManifest.xml. If unset, defaults to "AndroidManifest.xml".
Colin Cross27b922f2019-03-04 22:35:41 -080078 Manifest *string `android:"path"`
changho.shinb5432b72019-08-08 18:37:17 +090079
80 // paths to additional manifest files to merge with main manifest.
81 Additional_manifests []string `android:"path"`
Sasha Smundak541056c2019-10-28 15:50:06 -070082
83 // do not include AndroidManifest from dependent libraries
84 Dont_merge_manifests *bool
Colin Crossa97c5d32018-03-28 14:58:31 -070085}
86
87type aapt struct {
Colin Cross90c25c62019-04-19 16:22:57 -070088 aaptSrcJar android.Path
89 exportPackage android.Path
90 manifestPath android.Path
91 transitiveManifestPaths android.Paths
92 proguardOptionsFile android.Path
93 rroDirs []rroDir
94 rTxt android.Path
95 extraAaptPackagesFile android.Path
96 mergedManifestFile android.Path
Jaewoong Jung5b425e22019-06-17 17:40:56 -070097 noticeFile android.OptionalPath
Jaewoong Jung6431ca72020-01-15 14:15:10 -080098 assetPackage android.OptionalPath
Colin Cross90c25c62019-04-19 16:22:57 -070099 isLibrary bool
Sasha Smundak6ad77252019-05-01 13:16:22 -0700100 useEmbeddedNativeLibs bool
Colin Cross90c25c62019-04-19 16:22:57 -0700101 useEmbeddedDex bool
102 usesNonSdkApis bool
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100103 sdkLibraries dexpreopt.LibraryPaths
Jaewoong Jungc27ab662019-05-30 15:51:14 -0700104 hasNoCode bool
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800105 LoggingParent string
Colin Cross014489c2020-06-02 20:09:13 -0700106 resourceFiles android.Paths
Colin Crossa97c5d32018-03-28 14:58:31 -0700107
Colin Crosse560c4a2019-03-19 16:03:11 -0700108 splitNames []string
109 splits []split
110
Colin Crossa97c5d32018-03-28 14:58:31 -0700111 aaptProperties aaptProperties
112}
113
Colin Crosse560c4a2019-03-19 16:03:11 -0700114type split struct {
115 name string
116 suffix string
117 path android.Path
118}
119
Colin Crossa97c5d32018-03-28 14:58:31 -0700120func (a *aapt) ExportPackage() android.Path {
121 return a.exportPackage
122}
123
Anton Hansson53c88442019-03-18 15:53:16 +0000124func (a *aapt) ExportedRRODirs() []rroDir {
Colin Crossc1c37552019-01-31 11:42:41 -0800125 return a.rroDirs
126}
127
Colin Cross90c25c62019-04-19 16:22:57 -0700128func (a *aapt) ExportedManifests() android.Paths {
129 return a.transitiveManifestPaths
Colin Crossc1c37552019-01-31 11:42:41 -0800130}
131
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800132func (a *aapt) ExportedAssets() android.OptionalPath {
133 return a.assetPackage
134}
135
Colin Crossa0ba2f52019-06-22 12:59:27 -0700136func (a *aapt) aapt2Flags(ctx android.ModuleContext, sdkContext sdkContext,
137 manifestPath android.Path) (compileFlags, linkFlags []string, linkDeps android.Paths,
138 resDirs, overlayDirs []globbedResourceDir, rroDirs []rroDir, resZips android.Paths) {
Colin Crossa97c5d32018-03-28 14:58:31 -0700139
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800140 hasVersionCode := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-code")
141 hasVersionName := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-name")
Colin Crossa97c5d32018-03-28 14:58:31 -0700142
Colin Crossa97c5d32018-03-28 14:58:31 -0700143 // Flags specified in Android.bp
144 linkFlags = append(linkFlags, a.aaptProperties.Aaptflags...)
145
146 linkFlags = append(linkFlags, "--no-static-lib-packages")
147
148 // Find implicit or explicit asset and resource dirs
149 assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Asset_dirs, "assets")
150 resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Resource_dirs, "res")
Colin Cross8a497952019-03-05 22:25:09 -0800151 resourceZips := android.PathsForModuleSrc(ctx, a.aaptProperties.Resource_zips)
Colin Crossa97c5d32018-03-28 14:58:31 -0700152
Colin Crossa97c5d32018-03-28 14:58:31 -0700153 // Glob directories into lists of paths
154 for _, dir := range resourceDirs {
155 resDirs = append(resDirs, globbedResourceDir{
156 dir: dir,
157 files: androidResourceGlob(ctx, dir),
158 })
159 resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, dir)
160 overlayDirs = append(overlayDirs, resOverlayDirs...)
161 rroDirs = append(rroDirs, resRRODirs...)
162 }
163
164 var assetFiles android.Paths
165 for _, dir := range assetDirs {
166 assetFiles = append(assetFiles, androidResourceGlob(ctx, dir)...)
167 }
168
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700169 assetDirStrings := assetDirs.Strings()
170 if a.noticeFile.Valid() {
171 assetDirStrings = append(assetDirStrings, filepath.Dir(a.noticeFile.Path().String()))
172 assetFiles = append(assetFiles, a.noticeFile.Path())
173 }
174
Colin Crossa97c5d32018-03-28 14:58:31 -0700175 linkFlags = append(linkFlags, "--manifest "+manifestPath.String())
176 linkDeps = append(linkDeps, manifestPath)
177
Jaewoong Jung5b425e22019-06-17 17:40:56 -0700178 linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirStrings, "-A "))
Colin Crossa97c5d32018-03-28 14:58:31 -0700179 linkDeps = append(linkDeps, assetFiles...)
180
Colin Crossa97c5d32018-03-28 14:58:31 -0700181 // SDK version flags
Jiyong Park6a927c42020-01-21 02:03:43 +0900182 minSdkVersion, err := sdkContext.minSdkVersion().effectiveVersionString(ctx)
183 if err != nil {
184 ctx.ModuleErrorf("invalid minSdkVersion: %s", err)
185 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700186
Colin Cross83bb3162018-06-25 15:48:06 -0700187 linkFlags = append(linkFlags, "--min-sdk-version "+minSdkVersion)
188 linkFlags = append(linkFlags, "--target-sdk-version "+minSdkVersion)
Colin Crossa97c5d32018-03-28 14:58:31 -0700189
Colin Crossa97c5d32018-03-28 14:58:31 -0700190 // Version code
191 if !hasVersionCode {
Dan Albert4f378d72020-07-23 17:32:15 -0700192 linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion().String())
Colin Crossa97c5d32018-03-28 14:58:31 -0700193 }
194
195 if !hasVersionName {
Colin Cross402d5e02018-04-25 14:54:06 -0700196 var versionName string
197 if ctx.ModuleName() == "framework-res" {
198 // Some builds set AppsDefaultVersionName() to include the build number ("O-123456"). aapt2 copies the
199 // version name of framework-res into app manifests as compileSdkVersionCodename, which confuses things
Colin Crossbfd347d2018-05-09 11:11:35 -0700200 // if it contains the build number. Use the PlatformVersionName instead.
201 versionName = ctx.Config().PlatformVersionName()
Colin Cross402d5e02018-04-25 14:54:06 -0700202 } else {
203 versionName = ctx.Config().AppsDefaultVersionName()
204 }
Colin Cross0b9f31f2019-02-28 11:00:01 -0800205 versionName = proptools.NinjaEscape(versionName)
Colin Crossa97c5d32018-03-28 14:58:31 -0700206 linkFlags = append(linkFlags, "--version-name ", versionName)
207 }
208
Colin Crossa0ba2f52019-06-22 12:59:27 -0700209 linkFlags, compileFlags = android.FilterList(linkFlags, []string{"--legacy"})
210
211 // Always set --pseudo-localize, it will be stripped out later for release
212 // builds that don't want it.
213 compileFlags = append(compileFlags, "--pseudo-localize")
214
215 return compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resourceZips
Colin Crossa97c5d32018-03-28 14:58:31 -0700216}
217
Paul Duffin250e6192019-06-07 10:44:37 +0100218func (a *aapt) deps(ctx android.BottomUpMutatorContext, sdkDep sdkDep) {
Colin Cross42308aa2018-11-14 21:44:17 -0800219 if sdkDep.frameworkResModule != "" {
220 ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
Colin Crossa97c5d32018-03-28 14:58:31 -0700221 }
222}
223
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800224var extractAssetsRule = pctx.AndroidStaticRule("extractAssets",
225 blueprint.RuleParams{
226 Command: `${config.Zip2ZipCmd} -i ${in} -o ${out} "assets/**/*"`,
227 CommandDeps: []string{"${config.Zip2ZipCmd}"},
228 })
229
Colin Cross83bb3162018-06-25 15:48:06 -0700230func (a *aapt) buildActions(ctx android.ModuleContext, sdkContext sdkContext, extraLinkFlags ...string) {
Colin Cross5446e882019-05-22 10:46:27 -0700231
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800232 transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assetPackages, libDeps, libFlags, sdkLibraries :=
Colin Cross5446e882019-05-22 10:46:27 -0700233 aaptLibs(ctx, sdkContext)
Colin Crossa97c5d32018-03-28 14:58:31 -0700234
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100235 a.sdkLibraries = sdkLibraries
236
Colin Cross31656952018-05-24 16:11:20 -0700237 // App manifest file
238 manifestFile := proptools.StringDefault(a.aaptProperties.Manifest, "AndroidManifest.xml")
239 manifestSrcPath := android.PathForModuleSrc(ctx, manifestFile)
240
Colin Cross5446e882019-05-22 10:46:27 -0700241 manifestPath := manifestFixer(ctx, manifestSrcPath, sdkContext, sdkLibraries,
Baligh Uddin5b16dfb2020-02-11 17:27:19 -0800242 a.isLibrary, a.useEmbeddedNativeLibs, a.usesNonSdkApis, a.useEmbeddedDex, a.hasNoCode,
243 a.LoggingParent)
Colin Cross90c25c62019-04-19 16:22:57 -0700244
Luca Stefanifd898822019-09-10 22:13:31 +0200245 // Add additional manifest files to transitive manifests.
246 additionalManifests := android.PathsForModuleSrc(ctx, a.aaptProperties.Additional_manifests)
247 a.transitiveManifestPaths = append(android.Paths{manifestPath}, additionalManifests...)
248 a.transitiveManifestPaths = append(a.transitiveManifestPaths, transitiveStaticLibManifests...)
Colin Cross90c25c62019-04-19 16:22:57 -0700249
Sasha Smundak541056c2019-10-28 15:50:06 -0700250 if len(a.transitiveManifestPaths) > 1 && !Bool(a.aaptProperties.Dont_merge_manifests) {
Luca Stefanifd898822019-09-10 22:13:31 +0200251 a.mergedManifestFile = manifestMerger(ctx, a.transitiveManifestPaths[0], a.transitiveManifestPaths[1:], a.isLibrary)
Colin Cross90c25c62019-04-19 16:22:57 -0700252 if !a.isLibrary {
253 // Only use the merged manifest for applications. For libraries, the transitive closure of manifests
254 // will be propagated to the final application and merged there. The merged manifest for libraries is
255 // only passed to Make, which can't handle transitive dependencies.
256 manifestPath = a.mergedManifestFile
257 }
258 } else {
259 a.mergedManifestFile = manifestPath
260 }
Colin Cross31656952018-05-24 16:11:20 -0700261
Colin Crossa0ba2f52019-06-22 12:59:27 -0700262 compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resZips := a.aapt2Flags(ctx, sdkContext, manifestPath)
Colin Cross31656952018-05-24 16:11:20 -0700263
Colin Crossc1c37552019-01-31 11:42:41 -0800264 rroDirs = append(rroDirs, staticRRODirs...)
Colin Cross31656952018-05-24 16:11:20 -0700265 linkFlags = append(linkFlags, libFlags...)
266 linkDeps = append(linkDeps, libDeps...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700267 linkFlags = append(linkFlags, extraLinkFlags...)
Colin Cross1b6a3cf2018-07-24 14:51:30 -0700268 if a.isLibrary {
269 linkFlags = append(linkFlags, "--static-lib")
270 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700271
272 packageRes := android.PathForModuleOut(ctx, "package-res.apk")
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900273 // the subdir "android" is required to be filtered by package names
274 srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar")
Colin Crossa97c5d32018-03-28 14:58:31 -0700275 proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
276 rTxt := android.PathForModuleOut(ctx, "R.txt")
Colin Cross66f78822018-05-02 12:58:28 -0700277 // This file isn't used by Soong, but is generated for exporting
278 extraPackages := android.PathForModuleOut(ctx, "extra_packages")
Colin Crossa97c5d32018-03-28 14:58:31 -0700279
Colin Cross4aaa84a2018-08-21 15:14:37 -0700280 var compiledResDirs []android.Paths
Colin Crossa97c5d32018-03-28 14:58:31 -0700281 for _, dir := range resDirs {
Colin Cross014489c2020-06-02 20:09:13 -0700282 a.resourceFiles = append(a.resourceFiles, dir.files...)
Colin Crossa0ba2f52019-06-22 12:59:27 -0700283 compiledResDirs = append(compiledResDirs, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths())
Colin Crossa97c5d32018-03-28 14:58:31 -0700284 }
Colin Cross4aaa84a2018-08-21 15:14:37 -0700285
Colin Crossa592e3e2019-02-19 16:59:53 -0800286 for i, zip := range resZips {
287 flata := android.PathForModuleOut(ctx, fmt.Sprintf("reszip.%d.flata", i))
Colin Crossa0ba2f52019-06-22 12:59:27 -0700288 aapt2CompileZip(ctx, flata, zip, "", compileFlags)
Colin Crossa592e3e2019-02-19 16:59:53 -0800289 compiledResDirs = append(compiledResDirs, android.Paths{flata})
290 }
291
Colin Cross4aaa84a2018-08-21 15:14:37 -0700292 var compiledRes, compiledOverlay android.Paths
293
294 compiledOverlay = append(compiledOverlay, transitiveStaticLibs...)
295
Colin Crossbec85302019-02-13 13:15:46 -0800296 if len(transitiveStaticLibs) > 0 {
Colin Cross4aaa84a2018-08-21 15:14:37 -0700297 // If we are using static android libraries, every source file becomes an overlay.
298 // This is to emulate old AAPT behavior which simulated library support.
299 for _, compiledResDir := range compiledResDirs {
300 compiledOverlay = append(compiledOverlay, compiledResDir...)
301 }
Colin Crossbec85302019-02-13 13:15:46 -0800302 } else if a.isLibrary {
303 // Otherwise, for a static library we treat all the resources equally with no overlay.
304 for _, compiledResDir := range compiledResDirs {
305 compiledRes = append(compiledRes, compiledResDir...)
306 }
Colin Cross4aaa84a2018-08-21 15:14:37 -0700307 } else if len(compiledResDirs) > 0 {
308 // Without static libraries, the first directory is our directory, which can then be
309 // overlaid by the rest.
310 compiledRes = append(compiledRes, compiledResDirs[0]...)
311 for _, compiledResDir := range compiledResDirs[1:] {
312 compiledOverlay = append(compiledOverlay, compiledResDir...)
313 }
314 }
315
Colin Crossa97c5d32018-03-28 14:58:31 -0700316 for _, dir := range overlayDirs {
Colin Crossa0ba2f52019-06-22 12:59:27 -0700317 compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths()...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700318 }
319
Colin Crosse560c4a2019-03-19 16:03:11 -0700320 var splitPackages android.WritablePaths
321 var splits []split
322
323 for _, s := range a.splitNames {
324 suffix := strings.Replace(s, ",", "_", -1)
325 path := android.PathForModuleOut(ctx, "package_"+suffix+".apk")
326 linkFlags = append(linkFlags, "--split", path.String()+":"+s)
327 splitPackages = append(splitPackages, path)
328 splits = append(splits, split{
329 name: s,
330 suffix: suffix,
331 path: path,
332 })
333 }
334
Colin Cross66f78822018-05-02 12:58:28 -0700335 aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile, rTxt, extraPackages,
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800336 linkFlags, linkDeps, compiledRes, compiledOverlay, assetPackages, splitPackages)
337
338 // Extract assets from the resource package output so that they can be used later in aapt2link
339 // for modules that depend on this one.
Jaewoong Jung3aff5782020-02-11 07:54:35 -0800340 if android.PrefixInList(linkFlags, "-A ") || len(assetPackages) > 0 {
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800341 assets := android.PathForModuleOut(ctx, "assets.zip")
342 ctx.Build(pctx, android.BuildParams{
343 Rule: extractAssetsRule,
344 Input: packageRes,
345 Output: assets,
346 Description: "extract assets from built resource file",
347 })
348 a.assetPackage = android.OptionalPathForPath(assets)
349 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700350
351 a.aaptSrcJar = srcJar
352 a.exportPackage = packageRes
353 a.manifestPath = manifestPath
354 a.proguardOptionsFile = proguardOptionsFile
355 a.rroDirs = rroDirs
Colin Cross66f78822018-05-02 12:58:28 -0700356 a.extraAaptPackagesFile = extraPackages
Colin Crossa97c5d32018-03-28 14:58:31 -0700357 a.rTxt = rTxt
Colin Crosse560c4a2019-03-19 16:03:11 -0700358 a.splits = splits
Colin Crossa97c5d32018-03-28 14:58:31 -0700359}
360
361// aaptLibs collects libraries from dependencies and sdk_version and converts them into paths
Colin Cross90c25c62019-04-19 16:22:57 -0700362func aaptLibs(ctx android.ModuleContext, sdkContext sdkContext) (transitiveStaticLibs, transitiveStaticLibManifests android.Paths,
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100363 staticRRODirs []rroDir, assets, deps android.Paths, flags []string, sdkLibraries dexpreopt.LibraryPaths) {
Colin Cross66f78822018-05-02 12:58:28 -0700364
Colin Crossa97c5d32018-03-28 14:58:31 -0700365 var sharedLibs android.Paths
366
Colin Cross83bb3162018-06-25 15:48:06 -0700367 sdkDep := decodeSdkDep(ctx, sdkContext)
Colin Crossa97c5d32018-03-28 14:58:31 -0700368 if sdkDep.useFiles {
Colin Cross86a60ae2018-05-29 14:44:55 -0700369 sharedLibs = append(sharedLibs, sdkDep.jars...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700370 }
371
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100372 sdkLibraries = make(dexpreopt.LibraryPaths)
373
Colin Crossa97c5d32018-03-28 14:58:31 -0700374 ctx.VisitDirectDeps(func(module android.Module) {
375 var exportPackage android.Path
Colin Cross66f78822018-05-02 12:58:28 -0700376 aarDep, _ := module.(AndroidLibraryDependency)
377 if aarDep != nil {
Colin Crossa97c5d32018-03-28 14:58:31 -0700378 exportPackage = aarDep.ExportPackage()
379 }
380
Ulya Trafimovich21a73752020-09-01 17:33:48 +0100381 if dep, ok := module.(Dependency); ok {
382 sdkLibraries.AddLibraryPaths(dep.ExportedSdkLibs())
383 }
384
Colin Crossa97c5d32018-03-28 14:58:31 -0700385 switch ctx.OtherModuleDependencyTag(module) {
Colin Cross4b964c02018-10-15 16:18:06 -0700386 case instrumentationForTag:
387 // Nothing, instrumentationForTag is treated as libTag for javac but not for aapt2.
Colin Cross5446e882019-05-22 10:46:27 -0700388 case libTag:
389 if exportPackage != nil {
390 sharedLibs = append(sharedLibs, exportPackage)
391 }
392
Paul Duffin859fe962020-05-15 10:20:31 +0100393 // If the module is (or possibly could be) a component of a java_sdk_library
394 // (including the java_sdk_library) itself then append any implicit sdk library
395 // names to the list of sdk libraries to be added to the manifest.
396 if component, ok := module.(SdkLibraryComponentDependency); ok {
Ulya Trafimovichfc24ad32020-08-19 16:32:54 +0100397 sdkLibraries.MaybeAddLibraryPath(ctx, component.OptionalImplicitSdkLibrary(),
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100398 component.DexJarBuildPath(), component.DexJarInstallPath())
Colin Cross5446e882019-05-22 10:46:27 -0700399 }
400
401 case frameworkResTag:
Colin Crossa97c5d32018-03-28 14:58:31 -0700402 if exportPackage != nil {
403 sharedLibs = append(sharedLibs, exportPackage)
404 }
405 case staticLibTag:
406 if exportPackage != nil {
Colin Cross66f78822018-05-02 12:58:28 -0700407 transitiveStaticLibs = append(transitiveStaticLibs, aarDep.ExportedStaticPackages()...)
Colin Crossbec85302019-02-13 13:15:46 -0800408 transitiveStaticLibs = append(transitiveStaticLibs, exportPackage)
Colin Cross90c25c62019-04-19 16:22:57 -0700409 transitiveStaticLibManifests = append(transitiveStaticLibManifests, aarDep.ExportedManifests()...)
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100410 sdkLibraries.AddLibraryPaths(aarDep.ExportedSdkLibs())
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800411 if aarDep.ExportedAssets().Valid() {
412 assets = append(assets, aarDep.ExportedAssets().Path())
413 }
Anton Hansson53c88442019-03-18 15:53:16 +0000414
415 outer:
416 for _, d := range aarDep.ExportedRRODirs() {
417 for _, e := range staticRRODirs {
418 if d.path == e.path {
419 continue outer
420 }
421 }
422 staticRRODirs = append(staticRRODirs, d)
423 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700424 }
425 }
426 })
427
428 deps = append(deps, sharedLibs...)
Colin Cross66f78822018-05-02 12:58:28 -0700429 deps = append(deps, transitiveStaticLibs...)
Colin Crossa97c5d32018-03-28 14:58:31 -0700430
Colin Cross66f78822018-05-02 12:58:28 -0700431 if len(transitiveStaticLibs) > 0 {
Colin Crossa97c5d32018-03-28 14:58:31 -0700432 flags = append(flags, "--auto-add-overlay")
433 }
434
435 for _, sharedLib := range sharedLibs {
436 flags = append(flags, "-I "+sharedLib.String())
437 }
438
Colin Cross66f78822018-05-02 12:58:28 -0700439 transitiveStaticLibs = android.FirstUniquePaths(transitiveStaticLibs)
Colin Cross90c25c62019-04-19 16:22:57 -0700440 transitiveStaticLibManifests = android.FirstUniquePaths(transitiveStaticLibManifests)
Colin Cross66f78822018-05-02 12:58:28 -0700441
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800442 return transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assets, deps, flags, sdkLibraries
Colin Crossa97c5d32018-03-28 14:58:31 -0700443}
444
445type AndroidLibrary struct {
446 Library
447 aapt
448
449 androidLibraryProperties androidLibraryProperties
450
451 aarFile android.WritablePath
Colin Cross89c31582018-04-30 15:55:11 -0700452
453 exportedProguardFlagFiles android.Paths
Colin Cross66f78822018-05-02 12:58:28 -0700454 exportedStaticPackages android.Paths
Colin Cross89c31582018-04-30 15:55:11 -0700455}
456
457func (a *AndroidLibrary) ExportedProguardFlagFiles() android.Paths {
458 return a.exportedProguardFlagFiles
Colin Crossa97c5d32018-03-28 14:58:31 -0700459}
460
Colin Cross66f78822018-05-02 12:58:28 -0700461func (a *AndroidLibrary) ExportedStaticPackages() android.Paths {
462 return a.exportedStaticPackages
463}
464
Colin Crossa97c5d32018-03-28 14:58:31 -0700465var _ AndroidLibraryDependency = (*AndroidLibrary)(nil)
466
467func (a *AndroidLibrary) DepsMutator(ctx android.BottomUpMutatorContext) {
468 a.Module.deps(ctx)
Paul Duffin250e6192019-06-07 10:44:37 +0100469 sdkDep := decodeSdkDep(ctx, sdkContext(a))
470 if sdkDep.hasFrameworkLibs() {
471 a.aapt.deps(ctx, sdkDep)
Colin Crossa97c5d32018-03-28 14:58:31 -0700472 }
473}
474
475func (a *AndroidLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Colin Crosse4246ab2019-02-05 21:55:21 -0800476 a.aapt.isLibrary = true
Colin Cross1b6a3cf2018-07-24 14:51:30 -0700477 a.aapt.buildActions(ctx, sdkContext(a))
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100478 a.exportedSdkLibs = a.aapt.sdkLibraries
Colin Crossa97c5d32018-03-28 14:58:31 -0700479
Colin Cross56a83212020-09-15 18:30:11 -0700480 a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform()
481
Colin Crossa97c5d32018-03-28 14:58:31 -0700482 ctx.CheckbuildFile(a.proguardOptionsFile)
483 ctx.CheckbuildFile(a.exportPackage)
484 ctx.CheckbuildFile(a.aaptSrcJar)
485
486 // apps manifests are handled by aapt, don't let Module see them
487 a.properties.Manifest = nil
488
Colin Cross014489c2020-06-02 20:09:13 -0700489 a.linter.mergedManifest = a.aapt.mergedManifestFile
490 a.linter.manifest = a.aapt.manifestPath
491 a.linter.resources = a.aapt.resourceFiles
492
Colin Crossa97c5d32018-03-28 14:58:31 -0700493 a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles,
494 a.proguardOptionsFile)
495
496 a.Module.compile(ctx, a.aaptSrcJar)
497
Colin Crossf57c5782019-01-25 13:20:38 -0800498 a.aarFile = android.PathForModuleOut(ctx, ctx.ModuleName()+".aar")
Colin Crossa97c5d32018-03-28 14:58:31 -0700499 var res android.Paths
500 if a.androidLibraryProperties.BuildAAR {
501 BuildAAR(ctx, a.aarFile, a.outputFile, a.manifestPath, a.rTxt, res)
502 ctx.CheckbuildFile(a.aarFile)
503 }
Colin Cross89c31582018-04-30 15:55:11 -0700504
505 ctx.VisitDirectDeps(func(m android.Module) {
506 if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
507 a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
Colin Cross66f78822018-05-02 12:58:28 -0700508 a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportPackage())
509 a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportedStaticPackages()...)
Colin Cross89c31582018-04-30 15:55:11 -0700510 }
511 })
512
513 a.exportedProguardFlagFiles = android.FirstUniquePaths(a.exportedProguardFlagFiles)
Colin Cross66f78822018-05-02 12:58:28 -0700514 a.exportedStaticPackages = android.FirstUniquePaths(a.exportedStaticPackages)
Colin Crossa97c5d32018-03-28 14:58:31 -0700515}
516
Colin Cross1b16b0e2019-02-12 14:41:32 -0800517// android_library builds and links sources into a `.jar` file for the device along with Android resources.
518//
519// An android_library has a single variant that produces a `.jar` file containing `.class` files that were
520// compiled against the device bootclasspath, along with a `package-res.apk` file containing Android resources compiled
521// with aapt2. This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of
522// an android_app module.
Colin Crossa97c5d32018-03-28 14:58:31 -0700523func AndroidLibraryFactory() android.Module {
524 module := &AndroidLibrary{}
525
Colin Crossce6734e2020-06-15 16:09:53 -0700526 module.Module.addHostAndDeviceProperties()
Colin Crossa97c5d32018-03-28 14:58:31 -0700527 module.AddProperties(
Colin Crossa97c5d32018-03-28 14:58:31 -0700528 &module.aaptProperties,
529 &module.androidLibraryProperties)
530
531 module.androidLibraryProperties.BuildAAR = true
Colin Cross014489c2020-06-02 20:09:13 -0700532 module.Module.linter.library = true
Colin Crossa97c5d32018-03-28 14:58:31 -0700533
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900534 android.InitApexModule(module)
Colin Cross48de9a42018-10-02 13:53:33 -0700535 InitJavaModule(module, android.DeviceSupported)
Colin Crossa97c5d32018-03-28 14:58:31 -0700536 return module
537}
538
Colin Crossfabb6082018-02-20 17:22:23 -0800539//
540// AAR (android library) prebuilts
541//
Colin Crossfabb6082018-02-20 17:22:23 -0800542
543type AARImportProperties struct {
Colin Cross27b922f2019-03-04 22:35:41 -0800544 Aars []string `android:"path"`
Colin Crossfabb6082018-02-20 17:22:23 -0800545
Colin Cross479884c2018-07-10 13:39:30 -0700546 Sdk_version *string
547 Min_sdk_version *string
Colin Crossa97c5d32018-03-28 14:58:31 -0700548
549 Static_libs []string
550 Libs []string
Nan Zhang4c819fb2018-08-27 18:31:46 -0700551
552 // if set to true, run Jetifier against .aar file. Defaults to false.
Colin Cross1001a792019-03-21 22:21:39 -0700553 Jetifier *bool
Colin Crossfabb6082018-02-20 17:22:23 -0800554}
555
556type AARImport struct {
557 android.ModuleBase
Colin Cross48de9a42018-10-02 13:53:33 -0700558 android.DefaultableModuleBase
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900559 android.ApexModuleBase
Colin Crossfabb6082018-02-20 17:22:23 -0800560 prebuilt android.Prebuilt
561
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900562 // Functionality common to Module and Import.
563 embeddableInModuleAndImport
564
Colin Crossfabb6082018-02-20 17:22:23 -0800565 properties AARImportProperties
566
Colin Cross66f78822018-05-02 12:58:28 -0700567 classpathFile android.WritablePath
568 proguardFlags android.WritablePath
569 exportPackage android.WritablePath
570 extraAaptPackagesFile android.WritablePath
Colin Cross10f7c4a2018-05-23 10:59:28 -0700571 manifest android.WritablePath
Colin Cross66f78822018-05-02 12:58:28 -0700572
573 exportedStaticPackages android.Paths
Colin Cross56a83212020-09-15 18:30:11 -0700574
575 hideApexVariantFromMake bool
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000576
577 aarPath android.Path
578}
579
580var _ android.OutputFileProducer = (*AARImport)(nil)
581
582// For OutputFileProducer interface
583func (a *AARImport) OutputFiles(tag string) (android.Paths, error) {
584 switch tag {
585 case ".aar":
586 return []android.Path{a.aarPath}, nil
587 case "":
588 return []android.Path{a.classpathFile}, nil
589 default:
590 return nil, fmt.Errorf("unsupported module reference tag %q", tag)
591 }
Colin Crossfabb6082018-02-20 17:22:23 -0800592}
593
Jiyong Park6a927c42020-01-21 02:03:43 +0900594func (a *AARImport) sdkVersion() sdkSpec {
595 return sdkSpecFrom(String(a.properties.Sdk_version))
Colin Cross83bb3162018-06-25 15:48:06 -0700596}
597
Paul Duffine25c6442019-10-11 13:50:28 +0100598func (a *AARImport) systemModules() string {
599 return ""
600}
601
Jiyong Park6a927c42020-01-21 02:03:43 +0900602func (a *AARImport) minSdkVersion() sdkSpec {
Colin Cross479884c2018-07-10 13:39:30 -0700603 if a.properties.Min_sdk_version != nil {
Jiyong Park6a927c42020-01-21 02:03:43 +0900604 return sdkSpecFrom(*a.properties.Min_sdk_version)
Colin Cross479884c2018-07-10 13:39:30 -0700605 }
Colin Cross83bb3162018-06-25 15:48:06 -0700606 return a.sdkVersion()
607}
608
Jiyong Park6a927c42020-01-21 02:03:43 +0900609func (a *AARImport) targetSdkVersion() sdkSpec {
Dan Willemsen419290a2018-10-31 15:28:47 -0700610 return a.sdkVersion()
611}
612
Colin Cross1e743852019-10-28 11:37:20 -0700613func (a *AARImport) javaVersion() string {
614 return ""
615}
616
Colin Crossa97c5d32018-03-28 14:58:31 -0700617var _ AndroidLibraryDependency = (*AARImport)(nil)
618
619func (a *AARImport) ExportPackage() android.Path {
620 return a.exportPackage
621}
622
Colin Cross89c31582018-04-30 15:55:11 -0700623func (a *AARImport) ExportedProguardFlagFiles() android.Paths {
624 return android.Paths{a.proguardFlags}
625}
626
Anton Hansson53c88442019-03-18 15:53:16 +0000627func (a *AARImport) ExportedRRODirs() []rroDir {
Colin Crossc1c37552019-01-31 11:42:41 -0800628 return nil
629}
630
Colin Cross66f78822018-05-02 12:58:28 -0700631func (a *AARImport) ExportedStaticPackages() android.Paths {
632 return a.exportedStaticPackages
633}
634
Colin Cross90c25c62019-04-19 16:22:57 -0700635func (a *AARImport) ExportedManifests() android.Paths {
636 return android.Paths{a.manifest}
Colin Cross31656952018-05-24 16:11:20 -0700637}
638
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800639// TODO(jungjw): Decide whether we want to implement this.
640func (a *AARImport) ExportedAssets() android.OptionalPath {
641 return android.OptionalPath{}
642}
643
Colin Crossfabb6082018-02-20 17:22:23 -0800644func (a *AARImport) Prebuilt() *android.Prebuilt {
645 return &a.prebuilt
646}
647
648func (a *AARImport) Name() string {
649 return a.prebuilt.Name(a.ModuleBase.Name())
650}
651
Jiyong Park618922e2020-01-08 13:35:43 +0900652func (a *AARImport) JacocoReportClassesFile() android.Path {
653 return nil
654}
655
Colin Crossfabb6082018-02-20 17:22:23 -0800656func (a *AARImport) DepsMutator(ctx android.BottomUpMutatorContext) {
Jeongik Cha816a23a2020-07-08 01:09:23 +0900657 if !ctx.Config().AlwaysUsePrebuiltSdks() {
Colin Cross83bb3162018-06-25 15:48:06 -0700658 sdkDep := decodeSdkDep(ctx, sdkContext(a))
Colin Crossa97c5d32018-03-28 14:58:31 -0700659 if sdkDep.useModule && sdkDep.frameworkResModule != "" {
Colin Cross42d48b72018-08-29 14:10:52 -0700660 ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
Colin Crossfabb6082018-02-20 17:22:23 -0800661 }
662 }
Colin Crossa97c5d32018-03-28 14:58:31 -0700663
Colin Cross42d48b72018-08-29 14:10:52 -0700664 ctx.AddVariationDependencies(nil, libTag, a.properties.Libs...)
665 ctx.AddVariationDependencies(nil, staticLibTag, a.properties.Static_libs...)
Colin Crossfabb6082018-02-20 17:22:23 -0800666}
667
668// 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 -0700669// 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 -0800670var unzipAAR = pctx.AndroidStaticRule("unzipAAR",
671 blueprint.RuleParams{
Dan Willemsen304cfec2019-05-28 14:49:06 -0700672 Command: `rm -rf $outDir && mkdir -p $outDir && ` +
Colin Cross205e9112020-08-06 13:20:17 -0700673 `unzip -qoDD -d $outDir $in && rm -rf $outDir/res && touch $out && ` +
674 `${config.MergeZipsCmd} $combinedClassesJar $$(ls $outDir/classes.jar 2> /dev/null) $$(ls $outDir/libs/*.jar 2> /dev/null)`,
675 CommandDeps: []string{"${config.MergeZipsCmd}"},
Colin Crossfabb6082018-02-20 17:22:23 -0800676 },
Colin Cross205e9112020-08-06 13:20:17 -0700677 "outDir", "combinedClassesJar")
Colin Crossfabb6082018-02-20 17:22:23 -0800678
679func (a *AARImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
680 if len(a.properties.Aars) != 1 {
681 ctx.PropertyErrorf("aars", "exactly one aar is required")
682 return
683 }
684
Colin Cross56a83212020-09-15 18:30:11 -0700685 a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform()
686
Nan Zhang4c819fb2018-08-27 18:31:46 -0700687 aarName := ctx.ModuleName() + ".aar"
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000688 a.aarPath = android.PathForModuleSrc(ctx, a.properties.Aars[0])
689
Colin Cross1001a792019-03-21 22:21:39 -0700690 if Bool(a.properties.Jetifier) {
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000691 inputFile := a.aarPath
692 a.aarPath = android.PathForModuleOut(ctx, "jetifier", aarName)
693 TransformJetifier(ctx, a.aarPath.(android.WritablePath), inputFile)
Nan Zhang4c819fb2018-08-27 18:31:46 -0700694 }
Colin Crossfabb6082018-02-20 17:22:23 -0800695
696 extractedAARDir := android.PathForModuleOut(ctx, "aar")
Colin Cross205e9112020-08-06 13:20:17 -0700697 a.classpathFile = extractedAARDir.Join(ctx, "classes-combined.jar")
Colin Crossfabb6082018-02-20 17:22:23 -0800698 a.proguardFlags = extractedAARDir.Join(ctx, "proguard.txt")
Colin Cross10f7c4a2018-05-23 10:59:28 -0700699 a.manifest = extractedAARDir.Join(ctx, "AndroidManifest.xml")
Colin Crossfabb6082018-02-20 17:22:23 -0800700
701 ctx.Build(pctx, android.BuildParams{
702 Rule: unzipAAR,
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000703 Input: a.aarPath,
Colin Cross10f7c4a2018-05-23 10:59:28 -0700704 Outputs: android.WritablePaths{a.classpathFile, a.proguardFlags, a.manifest},
Colin Crossfabb6082018-02-20 17:22:23 -0800705 Description: "unzip AAR",
706 Args: map[string]string{
Colin Cross205e9112020-08-06 13:20:17 -0700707 "outDir": extractedAARDir.String(),
708 "combinedClassesJar": a.classpathFile.String(),
Colin Crossfabb6082018-02-20 17:22:23 -0800709 },
710 })
711
Colin Crossa0ba2f52019-06-22 12:59:27 -0700712 // Always set --pseudo-localize, it will be stripped out later for release
713 // builds that don't want it.
714 compileFlags := []string{"--pseudo-localize"}
Colin Crossfabb6082018-02-20 17:22:23 -0800715 compiledResDir := android.PathForModuleOut(ctx, "flat-res")
Colin Crossfabb6082018-02-20 17:22:23 -0800716 flata := compiledResDir.Join(ctx, "gen_res.flata")
Saeid Farivar Asanjanf0436962020-10-05 19:09:09 +0000717 aapt2CompileZip(ctx, flata, a.aarPath, "res", compileFlags)
Colin Crossfabb6082018-02-20 17:22:23 -0800718
719 a.exportPackage = android.PathForModuleOut(ctx, "package-res.apk")
Jiyong Parkb7c639e2019-08-19 14:56:02 +0900720 // the subdir "android" is required to be filtered by package names
721 srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar")
Colin Crossfabb6082018-02-20 17:22:23 -0800722 proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
Colin Crossa97c5d32018-03-28 14:58:31 -0700723 rTxt := android.PathForModuleOut(ctx, "R.txt")
Colin Cross66f78822018-05-02 12:58:28 -0700724 a.extraAaptPackagesFile = android.PathForModuleOut(ctx, "extra_packages")
Colin Crossfabb6082018-02-20 17:22:23 -0800725
726 var linkDeps android.Paths
727
728 linkFlags := []string{
729 "--static-lib",
730 "--no-static-lib-packages",
731 "--auto-add-overlay",
732 }
733
Colin Cross10f7c4a2018-05-23 10:59:28 -0700734 linkFlags = append(linkFlags, "--manifest "+a.manifest.String())
735 linkDeps = append(linkDeps, a.manifest)
Colin Crossfabb6082018-02-20 17:22:23 -0800736
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800737 transitiveStaticLibs, staticLibManifests, staticRRODirs, transitiveAssets, libDeps, libFlags, sdkLibraries :=
Colin Cross5446e882019-05-22 10:46:27 -0700738 aaptLibs(ctx, sdkContext(a))
Colin Cross31656952018-05-24 16:11:20 -0700739
740 _ = staticLibManifests
Colin Crossc1c37552019-01-31 11:42:41 -0800741 _ = staticRRODirs
Colin Cross5446e882019-05-22 10:46:27 -0700742 _ = sdkLibraries
Colin Crossfabb6082018-02-20 17:22:23 -0800743
Colin Crossa97c5d32018-03-28 14:58:31 -0700744 linkDeps = append(linkDeps, libDeps...)
745 linkFlags = append(linkFlags, libFlags...)
Colin Crossfabb6082018-02-20 17:22:23 -0800746
Colin Cross66f78822018-05-02 12:58:28 -0700747 overlayRes := append(android.Paths{flata}, transitiveStaticLibs...)
Colin Crossfabb6082018-02-20 17:22:23 -0800748
Colin Cross66f78822018-05-02 12:58:28 -0700749 aapt2Link(ctx, a.exportPackage, srcJar, proguardOptionsFile, rTxt, a.extraAaptPackagesFile,
Jaewoong Jung6431ca72020-01-15 14:15:10 -0800750 linkFlags, linkDeps, nil, overlayRes, transitiveAssets, nil)
Colin Crossfabb6082018-02-20 17:22:23 -0800751}
752
753var _ Dependency = (*AARImport)(nil)
754
755func (a *AARImport) HeaderJars() android.Paths {
756 return android.Paths{a.classpathFile}
757}
758
759func (a *AARImport) ImplementationJars() android.Paths {
760 return android.Paths{a.classpathFile}
761}
762
Colin Cross331a1212018-08-15 20:40:52 -0700763func (a *AARImport) ResourceJars() android.Paths {
764 return nil
765}
766
767func (a *AARImport) ImplementationAndResourcesJars() android.Paths {
768 return android.Paths{a.classpathFile}
769}
770
Ulyana Trafimovich5539e7b2020-06-04 14:08:17 +0000771func (a *AARImport) DexJarBuildPath() android.Path {
Colin Crossf24a22a2019-01-31 14:12:44 -0800772 return nil
773}
774
Ulya Trafimovich9f3052c2020-06-09 14:31:19 +0100775func (a *AARImport) DexJarInstallPath() android.Path {
776 return nil
777}
778
Colin Crossfabb6082018-02-20 17:22:23 -0800779func (a *AARImport) AidlIncludeDirs() android.Paths {
780 return nil
781}
782
Ulya Trafimovich31e444e2020-08-14 17:32:16 +0100783func (a *AARImport) ExportedSdkLibs() dexpreopt.LibraryPaths {
Jiyong Park1be96912018-05-28 18:02:19 +0900784 return nil
785}
786
Artur Satayev9cf46692019-11-26 18:08:34 +0000787func (d *AARImport) ExportedPlugins() (android.Paths, []string) {
788 return nil, nil
789}
790
Colin Cross0c4ce212019-05-03 15:28:19 -0700791func (a *AARImport) SrcJarArgs() ([]string, android.Paths) {
792 return nil, nil
793}
794
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900795func (a *AARImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool {
796 return a.depIsInSameApex(ctx, dep)
797}
798
Dan Albertc8060532020-07-22 22:32:17 -0700799func (g *AARImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext,
800 sdkVersion android.ApiLevel) error {
Jooyung Han749dc692020-04-15 11:03:39 +0900801 return nil
802}
803
Colin Crossfabb6082018-02-20 17:22:23 -0800804var _ android.PrebuiltInterface = (*Import)(nil)
805
Colin Cross1b16b0e2019-02-12 14:41:32 -0800806// android_library_import imports an `.aar` file into the build graph as if it was built with android_library.
807//
808// This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of
809// an android_app module.
Colin Crossfabb6082018-02-20 17:22:23 -0800810func AARImportFactory() android.Module {
811 module := &AARImport{}
812
813 module.AddProperties(&module.properties)
814
815 android.InitPrebuiltModule(module, &module.properties.Aars)
Jooyung Hanacc7bbe2020-05-20 09:06:00 +0900816 android.InitApexModule(module)
Colin Cross48de9a42018-10-02 13:53:33 -0700817 InitJavaModule(module, android.DeviceSupported)
Colin Crossfabb6082018-02-20 17:22:23 -0800818 return module
819}