Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 1 | // 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 | |
| 15 | package java |
| 16 | |
| 17 | import ( |
Colin Cross | a592e3e | 2019-02-19 16:59:53 -0800 | [diff] [blame] | 18 | "fmt" |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 19 | "path/filepath" |
Colin Cross | c20dc85 | 2020-11-10 12:27:45 -0800 | [diff] [blame] | 20 | "strconv" |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 21 | "strings" |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 22 | |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 23 | "android/soong/android" |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 24 | "android/soong/dexpreopt" |
Jaewoong Jung | 9befb0c | 2020-01-18 10:33:43 -0800 | [diff] [blame] | 25 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 26 | "github.com/google/blueprint" |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 27 | "github.com/google/blueprint/proptools" |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 28 | ) |
| 29 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 30 | type AndroidLibraryDependency interface { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 31 | ExportPackage() android.Path |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 32 | ExportedProguardFlagFiles() android.Paths |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 33 | ExportedRRODirs() []rroDir |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 34 | ExportedStaticPackages() android.Paths |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 35 | ExportedManifests() android.Paths |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 36 | ExportedAssets() android.OptionalPath |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 37 | SetRROEnforcedForDependent(enforce bool) |
| 38 | IsRROEnforced(ctx android.BaseModuleContext) bool |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | func init() { |
Paul Duffin | f9b1da0 | 2019-12-18 19:51:55 +0000 | [diff] [blame] | 42 | RegisterAARBuildComponents(android.InitRegistrationContext) |
| 43 | } |
| 44 | |
| 45 | func RegisterAARBuildComponents(ctx android.RegistrationContext) { |
| 46 | ctx.RegisterModuleType("android_library_import", AARImportFactory) |
| 47 | ctx.RegisterModuleType("android_library", AndroidLibraryFactory) |
Paul Duffin | 04ba70d | 2021-03-22 13:56:43 +0000 | [diff] [blame] | 48 | ctx.PostDepsMutators(func(ctx android.RegisterMutatorsContext) { |
| 49 | ctx.TopDown("propagate_rro_enforcement", propagateRROEnforcementMutator).Parallel() |
| 50 | }) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | // |
| 54 | // AAR (android library) |
| 55 | // |
| 56 | |
| 57 | type androidLibraryProperties struct { |
| 58 | BuildAAR bool `blueprint:"mutated"` |
| 59 | } |
| 60 | |
| 61 | type aaptProperties struct { |
| 62 | // flags passed to aapt when creating the apk |
| 63 | Aaptflags []string |
| 64 | |
Dan Willemsen | 72be590 | 2018-10-24 20:24:57 -0700 | [diff] [blame] | 65 | // include all resource configurations, not just the product-configured |
| 66 | // ones. |
| 67 | Aapt_include_all_resources *bool |
| 68 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 69 | // list of directories relative to the Blueprints file containing assets. |
Colin Cross | 0ddae7f | 2019-02-07 15:30:01 -0800 | [diff] [blame] | 70 | // Defaults to ["assets"] if a directory called assets exists. Set to [] |
| 71 | // to disable the default. |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 72 | Asset_dirs []string |
| 73 | |
| 74 | // list of directories relative to the Blueprints file containing |
Colin Cross | 0ddae7f | 2019-02-07 15:30:01 -0800 | [diff] [blame] | 75 | // Android resources. Defaults to ["res"] if a directory called res exists. |
| 76 | // Set to [] to disable the default. |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 77 | Resource_dirs []string |
| 78 | |
Colin Cross | a592e3e | 2019-02-19 16:59:53 -0800 | [diff] [blame] | 79 | // list of zip files containing Android resources. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 80 | Resource_zips []string `android:"path"` |
Colin Cross | a592e3e | 2019-02-19 16:59:53 -0800 | [diff] [blame] | 81 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 82 | // path to AndroidManifest.xml. If unset, defaults to "AndroidManifest.xml". |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 83 | Manifest *string `android:"path"` |
changho.shin | b5432b7 | 2019-08-08 18:37:17 +0900 | [diff] [blame] | 84 | |
| 85 | // paths to additional manifest files to merge with main manifest. |
| 86 | Additional_manifests []string `android:"path"` |
Sasha Smundak | 541056c | 2019-10-28 15:50:06 -0700 | [diff] [blame] | 87 | |
| 88 | // do not include AndroidManifest from dependent libraries |
| 89 | Dont_merge_manifests *bool |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 90 | |
| 91 | // true if RRO is enforced for any of the dependent modules |
| 92 | RROEnforcedForDependent bool `blueprint:"mutated"` |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | type aapt struct { |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 96 | aaptSrcJar android.Path |
| 97 | exportPackage android.Path |
| 98 | manifestPath android.Path |
| 99 | transitiveManifestPaths android.Paths |
| 100 | proguardOptionsFile android.Path |
| 101 | rroDirs []rroDir |
| 102 | rTxt android.Path |
| 103 | extraAaptPackagesFile android.Path |
| 104 | mergedManifestFile android.Path |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 105 | noticeFile android.OptionalPath |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 106 | assetPackage android.OptionalPath |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 107 | isLibrary bool |
Sasha Smundak | 6ad7725 | 2019-05-01 13:16:22 -0700 | [diff] [blame] | 108 | useEmbeddedNativeLibs bool |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 109 | useEmbeddedDex bool |
| 110 | usesNonSdkApis bool |
Jaewoong Jung | c27ab66 | 2019-05-30 15:51:14 -0700 | [diff] [blame] | 111 | hasNoCode bool |
Baligh Uddin | 5b16dfb | 2020-02-11 17:27:19 -0800 | [diff] [blame] | 112 | LoggingParent string |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 113 | resourceFiles android.Paths |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 114 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 115 | splitNames []string |
| 116 | splits []split |
| 117 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 118 | aaptProperties aaptProperties |
| 119 | } |
| 120 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 121 | type split struct { |
| 122 | name string |
| 123 | suffix string |
| 124 | path android.Path |
| 125 | } |
| 126 | |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 127 | // Propagate RRO enforcement flag to static lib dependencies transitively. |
| 128 | func propagateRROEnforcementMutator(ctx android.TopDownMutatorContext) { |
| 129 | m := ctx.Module() |
| 130 | if d, ok := m.(AndroidLibraryDependency); ok && d.IsRROEnforced(ctx) { |
| 131 | ctx.VisitDirectDepsWithTag(staticLibTag, func(d android.Module) { |
| 132 | if a, ok := d.(AndroidLibraryDependency); ok { |
| 133 | a.SetRROEnforcedForDependent(true) |
| 134 | } |
| 135 | }) |
| 136 | } |
| 137 | } |
| 138 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 139 | func (a *aapt) ExportPackage() android.Path { |
| 140 | return a.exportPackage |
| 141 | } |
| 142 | |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 143 | func (a *aapt) ExportedRRODirs() []rroDir { |
Colin Cross | c1c3755 | 2019-01-31 11:42:41 -0800 | [diff] [blame] | 144 | return a.rroDirs |
| 145 | } |
| 146 | |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 147 | func (a *aapt) ExportedManifests() android.Paths { |
| 148 | return a.transitiveManifestPaths |
Colin Cross | c1c3755 | 2019-01-31 11:42:41 -0800 | [diff] [blame] | 149 | } |
| 150 | |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 151 | func (a *aapt) ExportedAssets() android.OptionalPath { |
| 152 | return a.assetPackage |
| 153 | } |
| 154 | |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 155 | func (a *aapt) SetRROEnforcedForDependent(enforce bool) { |
| 156 | a.aaptProperties.RROEnforcedForDependent = enforce |
| 157 | } |
| 158 | |
| 159 | func (a *aapt) IsRROEnforced(ctx android.BaseModuleContext) bool { |
| 160 | // True if RRO is enforced for this module or... |
| 161 | return ctx.Config().EnforceRROForModule(ctx.ModuleName()) || |
Jeongik Cha | cee5ba9 | 2021-02-19 12:11:51 +0900 | [diff] [blame] | 162 | // if RRO is enforced for any of its dependents. |
| 163 | a.aaptProperties.RROEnforcedForDependent |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 164 | } |
| 165 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 166 | func (a *aapt) aapt2Flags(ctx android.ModuleContext, sdkContext android.SdkContext, |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 167 | manifestPath android.Path) (compileFlags, linkFlags []string, linkDeps android.Paths, |
| 168 | resDirs, overlayDirs []globbedResourceDir, rroDirs []rroDir, resZips android.Paths) { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 169 | |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 170 | hasVersionCode := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-code") |
| 171 | hasVersionName := android.PrefixInList(a.aaptProperties.Aaptflags, "--version-name") |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 172 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 173 | // Flags specified in Android.bp |
| 174 | linkFlags = append(linkFlags, a.aaptProperties.Aaptflags...) |
| 175 | |
| 176 | linkFlags = append(linkFlags, "--no-static-lib-packages") |
| 177 | |
| 178 | // Find implicit or explicit asset and resource dirs |
| 179 | assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Asset_dirs, "assets") |
| 180 | resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Resource_dirs, "res") |
Colin Cross | 8a49795 | 2019-03-05 22:25:09 -0800 | [diff] [blame] | 181 | resourceZips := android.PathsForModuleSrc(ctx, a.aaptProperties.Resource_zips) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 182 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 183 | // Glob directories into lists of paths |
| 184 | for _, dir := range resourceDirs { |
| 185 | resDirs = append(resDirs, globbedResourceDir{ |
| 186 | dir: dir, |
| 187 | files: androidResourceGlob(ctx, dir), |
| 188 | }) |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 189 | resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, a, dir) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 190 | overlayDirs = append(overlayDirs, resOverlayDirs...) |
| 191 | rroDirs = append(rroDirs, resRRODirs...) |
| 192 | } |
| 193 | |
Colin Cross | c20dc85 | 2020-11-10 12:27:45 -0800 | [diff] [blame] | 194 | var assetDeps android.Paths |
| 195 | for i, dir := range assetDirs { |
| 196 | // Add a dependency on every file in the asset directory. This ensures the aapt2 |
| 197 | // rule will be rerun if one of the files in the asset directory is modified. |
| 198 | assetDeps = append(assetDeps, androidResourceGlob(ctx, dir)...) |
| 199 | |
| 200 | // Add a dependency on a file that contains a list of all the files in the asset directory. |
| 201 | // This ensures the aapt2 rule will be run if a file is removed from the asset directory, |
| 202 | // or a file is added whose timestamp is older than the output of aapt2. |
| 203 | assetFileListFile := android.PathForModuleOut(ctx, "asset_dir_globs", strconv.Itoa(i)+".glob") |
| 204 | androidResourceGlobList(ctx, dir, assetFileListFile) |
| 205 | assetDeps = append(assetDeps, assetFileListFile) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 206 | } |
| 207 | |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 208 | assetDirStrings := assetDirs.Strings() |
| 209 | if a.noticeFile.Valid() { |
| 210 | assetDirStrings = append(assetDirStrings, filepath.Dir(a.noticeFile.Path().String())) |
Colin Cross | c20dc85 | 2020-11-10 12:27:45 -0800 | [diff] [blame] | 211 | assetDeps = append(assetDeps, a.noticeFile.Path()) |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 212 | } |
| 213 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 214 | linkFlags = append(linkFlags, "--manifest "+manifestPath.String()) |
| 215 | linkDeps = append(linkDeps, manifestPath) |
| 216 | |
Jaewoong Jung | 5b425e2 | 2019-06-17 17:40:56 -0700 | [diff] [blame] | 217 | linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirStrings, "-A ")) |
Colin Cross | c20dc85 | 2020-11-10 12:27:45 -0800 | [diff] [blame] | 218 | linkDeps = append(linkDeps, assetDeps...) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 219 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 220 | // SDK version flags |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 221 | minSdkVersion, err := sdkContext.MinSdkVersion(ctx).EffectiveVersionString(ctx) |
Jiyong Park | 6a927c4 | 2020-01-21 02:03:43 +0900 | [diff] [blame] | 222 | if err != nil { |
| 223 | ctx.ModuleErrorf("invalid minSdkVersion: %s", err) |
| 224 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 225 | |
Colin Cross | 83bb316 | 2018-06-25 15:48:06 -0700 | [diff] [blame] | 226 | linkFlags = append(linkFlags, "--min-sdk-version "+minSdkVersion) |
| 227 | linkFlags = append(linkFlags, "--target-sdk-version "+minSdkVersion) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 228 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 229 | // Version code |
| 230 | if !hasVersionCode { |
Dan Albert | 4f378d7 | 2020-07-23 17:32:15 -0700 | [diff] [blame] | 231 | linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion().String()) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | if !hasVersionName { |
Colin Cross | 402d5e0 | 2018-04-25 14:54:06 -0700 | [diff] [blame] | 235 | var versionName string |
Rashed Abdel-Tawab | 8782f15 | 2018-08-09 14:08:53 -0700 | [diff] [blame] | 236 | if ctx.ModuleName() == "framework-res" || ctx.ModuleName() == "org.lineageos.platform-res" { |
Colin Cross | 402d5e0 | 2018-04-25 14:54:06 -0700 | [diff] [blame] | 237 | // Some builds set AppsDefaultVersionName() to include the build number ("O-123456"). aapt2 copies the |
| 238 | // version name of framework-res into app manifests as compileSdkVersionCodename, which confuses things |
Colin Cross | bfd347d | 2018-05-09 11:11:35 -0700 | [diff] [blame] | 239 | // if it contains the build number. Use the PlatformVersionName instead. |
| 240 | versionName = ctx.Config().PlatformVersionName() |
Colin Cross | 402d5e0 | 2018-04-25 14:54:06 -0700 | [diff] [blame] | 241 | } else { |
| 242 | versionName = ctx.Config().AppsDefaultVersionName() |
| 243 | } |
Colin Cross | 0b9f31f | 2019-02-28 11:00:01 -0800 | [diff] [blame] | 244 | versionName = proptools.NinjaEscape(versionName) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 245 | linkFlags = append(linkFlags, "--version-name ", versionName) |
| 246 | } |
| 247 | |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 248 | linkFlags, compileFlags = android.FilterList(linkFlags, []string{"--legacy"}) |
| 249 | |
| 250 | // Always set --pseudo-localize, it will be stripped out later for release |
| 251 | // builds that don't want it. |
| 252 | compileFlags = append(compileFlags, "--pseudo-localize") |
| 253 | |
| 254 | return compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resourceZips |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 257 | func (a *aapt) deps(ctx android.BottomUpMutatorContext, sdkDep sdkDep) { |
Colin Cross | 42308aa | 2018-11-14 21:44:17 -0800 | [diff] [blame] | 258 | if sdkDep.frameworkResModule != "" { |
| 259 | ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 260 | } |
Rashed Abdel-Tawab | 8782f15 | 2018-08-09 14:08:53 -0700 | [diff] [blame] | 261 | if sdkDep.lineageResModule != "" { |
| 262 | ctx.AddVariationDependencies(nil, lineageResTag, sdkDep.lineageResModule) |
| 263 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 266 | var extractAssetsRule = pctx.AndroidStaticRule("extractAssets", |
| 267 | blueprint.RuleParams{ |
| 268 | Command: `${config.Zip2ZipCmd} -i ${in} -o ${out} "assets/**/*"`, |
| 269 | CommandDeps: []string{"${config.Zip2ZipCmd}"}, |
| 270 | }) |
| 271 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 272 | func (a *aapt) buildActions(ctx android.ModuleContext, sdkContext android.SdkContext, |
Paul Duffin | 0653057 | 2022-02-03 17:54:15 +0000 | [diff] [blame] | 273 | classLoaderContexts dexpreopt.ClassLoaderContextMap, excludedLibs []string, |
| 274 | extraLinkFlags ...string) { |
Colin Cross | 5446e88 | 2019-05-22 10:46:27 -0700 | [diff] [blame] | 275 | |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 276 | transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assetPackages, libDeps, libFlags := |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 277 | aaptLibs(ctx, sdkContext, classLoaderContexts) |
Ulya Trafimovich | 31e444e | 2020-08-14 17:32:16 +0100 | [diff] [blame] | 278 | |
Paul Duffin | 0653057 | 2022-02-03 17:54:15 +0000 | [diff] [blame] | 279 | // Exclude any libraries from the supplied list. |
| 280 | classLoaderContexts = classLoaderContexts.ExcludeLibs(excludedLibs) |
| 281 | |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 282 | // App manifest file |
| 283 | manifestFile := proptools.StringDefault(a.aaptProperties.Manifest, "AndroidManifest.xml") |
| 284 | manifestSrcPath := android.PathForModuleSrc(ctx, manifestFile) |
| 285 | |
Gurpreet Singh | 7deabfa | 2022-02-10 13:28:35 +0000 | [diff] [blame] | 286 | manifestPath := ManifestFixer(ctx, manifestSrcPath, ManifestFixerParams{ |
Gurpreet Singh | 75d65f3 | 2022-01-24 17:44:05 +0000 | [diff] [blame] | 287 | SdkContext: sdkContext, |
| 288 | ClassLoaderContexts: classLoaderContexts, |
| 289 | IsLibrary: a.isLibrary, |
| 290 | UseEmbeddedNativeLibs: a.useEmbeddedNativeLibs, |
| 291 | UsesNonSdkApis: a.usesNonSdkApis, |
| 292 | UseEmbeddedDex: a.useEmbeddedDex, |
| 293 | HasNoCode: a.hasNoCode, |
Gurpreet Singh | 75d65f3 | 2022-01-24 17:44:05 +0000 | [diff] [blame] | 294 | LoggingParent: a.LoggingParent, |
| 295 | }) |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 296 | |
Luca Stefani | fd89882 | 2019-09-10 22:13:31 +0200 | [diff] [blame] | 297 | // Add additional manifest files to transitive manifests. |
| 298 | additionalManifests := android.PathsForModuleSrc(ctx, a.aaptProperties.Additional_manifests) |
| 299 | a.transitiveManifestPaths = append(android.Paths{manifestPath}, additionalManifests...) |
| 300 | a.transitiveManifestPaths = append(a.transitiveManifestPaths, transitiveStaticLibManifests...) |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 301 | |
Sasha Smundak | 541056c | 2019-10-28 15:50:06 -0700 | [diff] [blame] | 302 | if len(a.transitiveManifestPaths) > 1 && !Bool(a.aaptProperties.Dont_merge_manifests) { |
Luca Stefani | fd89882 | 2019-09-10 22:13:31 +0200 | [diff] [blame] | 303 | a.mergedManifestFile = manifestMerger(ctx, a.transitiveManifestPaths[0], a.transitiveManifestPaths[1:], a.isLibrary) |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 304 | if !a.isLibrary { |
| 305 | // Only use the merged manifest for applications. For libraries, the transitive closure of manifests |
| 306 | // will be propagated to the final application and merged there. The merged manifest for libraries is |
| 307 | // only passed to Make, which can't handle transitive dependencies. |
| 308 | manifestPath = a.mergedManifestFile |
| 309 | } |
| 310 | } else { |
| 311 | a.mergedManifestFile = manifestPath |
| 312 | } |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 313 | |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 314 | compileFlags, linkFlags, linkDeps, resDirs, overlayDirs, rroDirs, resZips := a.aapt2Flags(ctx, sdkContext, manifestPath) |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 315 | |
Colin Cross | c1c3755 | 2019-01-31 11:42:41 -0800 | [diff] [blame] | 316 | rroDirs = append(rroDirs, staticRRODirs...) |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 317 | linkFlags = append(linkFlags, libFlags...) |
| 318 | linkDeps = append(linkDeps, libDeps...) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 319 | linkFlags = append(linkFlags, extraLinkFlags...) |
Colin Cross | 1b6a3cf | 2018-07-24 14:51:30 -0700 | [diff] [blame] | 320 | if a.isLibrary { |
| 321 | linkFlags = append(linkFlags, "--static-lib") |
| 322 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 323 | |
| 324 | packageRes := android.PathForModuleOut(ctx, "package-res.apk") |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 325 | // the subdir "android" is required to be filtered by package names |
| 326 | srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar") |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 327 | proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options") |
| 328 | rTxt := android.PathForModuleOut(ctx, "R.txt") |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 329 | // This file isn't used by Soong, but is generated for exporting |
| 330 | extraPackages := android.PathForModuleOut(ctx, "extra_packages") |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 331 | |
Colin Cross | 4aaa84a | 2018-08-21 15:14:37 -0700 | [diff] [blame] | 332 | var compiledResDirs []android.Paths |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 333 | for _, dir := range resDirs { |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 334 | a.resourceFiles = append(a.resourceFiles, dir.files...) |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 335 | compiledResDirs = append(compiledResDirs, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths()) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 336 | } |
Colin Cross | 4aaa84a | 2018-08-21 15:14:37 -0700 | [diff] [blame] | 337 | |
Colin Cross | a592e3e | 2019-02-19 16:59:53 -0800 | [diff] [blame] | 338 | for i, zip := range resZips { |
| 339 | flata := android.PathForModuleOut(ctx, fmt.Sprintf("reszip.%d.flata", i)) |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 340 | aapt2CompileZip(ctx, flata, zip, "", compileFlags) |
Colin Cross | a592e3e | 2019-02-19 16:59:53 -0800 | [diff] [blame] | 341 | compiledResDirs = append(compiledResDirs, android.Paths{flata}) |
| 342 | } |
| 343 | |
Colin Cross | 4aaa84a | 2018-08-21 15:14:37 -0700 | [diff] [blame] | 344 | var compiledRes, compiledOverlay android.Paths |
| 345 | |
| 346 | compiledOverlay = append(compiledOverlay, transitiveStaticLibs...) |
| 347 | |
Colin Cross | bec8530 | 2019-02-13 13:15:46 -0800 | [diff] [blame] | 348 | if len(transitiveStaticLibs) > 0 { |
Colin Cross | 4aaa84a | 2018-08-21 15:14:37 -0700 | [diff] [blame] | 349 | // If we are using static android libraries, every source file becomes an overlay. |
| 350 | // This is to emulate old AAPT behavior which simulated library support. |
| 351 | for _, compiledResDir := range compiledResDirs { |
| 352 | compiledOverlay = append(compiledOverlay, compiledResDir...) |
| 353 | } |
Colin Cross | bec8530 | 2019-02-13 13:15:46 -0800 | [diff] [blame] | 354 | } else if a.isLibrary { |
| 355 | // Otherwise, for a static library we treat all the resources equally with no overlay. |
| 356 | for _, compiledResDir := range compiledResDirs { |
| 357 | compiledRes = append(compiledRes, compiledResDir...) |
| 358 | } |
Colin Cross | 4aaa84a | 2018-08-21 15:14:37 -0700 | [diff] [blame] | 359 | } else if len(compiledResDirs) > 0 { |
| 360 | // Without static libraries, the first directory is our directory, which can then be |
| 361 | // overlaid by the rest. |
| 362 | compiledRes = append(compiledRes, compiledResDirs[0]...) |
| 363 | for _, compiledResDir := range compiledResDirs[1:] { |
| 364 | compiledOverlay = append(compiledOverlay, compiledResDir...) |
| 365 | } |
| 366 | } |
| 367 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 368 | for _, dir := range overlayDirs { |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 369 | compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files, compileFlags).Paths()...) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 370 | } |
| 371 | |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 372 | var splitPackages android.WritablePaths |
| 373 | var splits []split |
| 374 | |
| 375 | for _, s := range a.splitNames { |
| 376 | suffix := strings.Replace(s, ",", "_", -1) |
| 377 | path := android.PathForModuleOut(ctx, "package_"+suffix+".apk") |
| 378 | linkFlags = append(linkFlags, "--split", path.String()+":"+s) |
| 379 | splitPackages = append(splitPackages, path) |
| 380 | splits = append(splits, split{ |
| 381 | name: s, |
| 382 | suffix: suffix, |
| 383 | path: path, |
| 384 | }) |
| 385 | } |
| 386 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 387 | aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile, rTxt, extraPackages, |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 388 | linkFlags, linkDeps, compiledRes, compiledOverlay, assetPackages, splitPackages) |
| 389 | |
| 390 | // Extract assets from the resource package output so that they can be used later in aapt2link |
| 391 | // for modules that depend on this one. |
Jaewoong Jung | 3aff578 | 2020-02-11 07:54:35 -0800 | [diff] [blame] | 392 | if android.PrefixInList(linkFlags, "-A ") || len(assetPackages) > 0 { |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 393 | assets := android.PathForModuleOut(ctx, "assets.zip") |
| 394 | ctx.Build(pctx, android.BuildParams{ |
| 395 | Rule: extractAssetsRule, |
| 396 | Input: packageRes, |
| 397 | Output: assets, |
| 398 | Description: "extract assets from built resource file", |
| 399 | }) |
| 400 | a.assetPackage = android.OptionalPathForPath(assets) |
| 401 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 402 | |
| 403 | a.aaptSrcJar = srcJar |
| 404 | a.exportPackage = packageRes |
| 405 | a.manifestPath = manifestPath |
| 406 | a.proguardOptionsFile = proguardOptionsFile |
| 407 | a.rroDirs = rroDirs |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 408 | a.extraAaptPackagesFile = extraPackages |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 409 | a.rTxt = rTxt |
Colin Cross | e560c4a | 2019-03-19 16:03:11 -0700 | [diff] [blame] | 410 | a.splits = splits |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 411 | } |
| 412 | |
| 413 | // aaptLibs collects libraries from dependencies and sdk_version and converts them into paths |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 414 | func aaptLibs(ctx android.ModuleContext, sdkContext android.SdkContext, classLoaderContexts dexpreopt.ClassLoaderContextMap) ( |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 415 | transitiveStaticLibs, transitiveStaticLibManifests android.Paths, staticRRODirs []rroDir, assets, deps android.Paths, flags []string) { |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 416 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 417 | var sharedLibs android.Paths |
| 418 | |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 419 | if classLoaderContexts == nil { |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 420 | // Not all callers need to compute class loader context, those who don't just pass nil. |
| 421 | // Create a temporary class loader context here (it will be computed, but not used). |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 422 | classLoaderContexts = make(dexpreopt.ClassLoaderContextMap) |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Colin Cross | 83bb316 | 2018-06-25 15:48:06 -0700 | [diff] [blame] | 425 | sdkDep := decodeSdkDep(ctx, sdkContext) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 426 | if sdkDep.useFiles { |
Colin Cross | 86a60ae | 2018-05-29 14:44:55 -0700 | [diff] [blame] | 427 | sharedLibs = append(sharedLibs, sdkDep.jars...) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 428 | } |
| 429 | |
| 430 | ctx.VisitDirectDeps(func(module android.Module) { |
Ulya Trafimovich | 65b0319 | 2020-12-03 16:50:22 +0000 | [diff] [blame] | 431 | depTag := ctx.OtherModuleDependencyTag(module) |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 432 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 433 | var exportPackage android.Path |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 434 | aarDep, _ := module.(AndroidLibraryDependency) |
| 435 | if aarDep != nil { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 436 | exportPackage = aarDep.ExportPackage() |
| 437 | } |
| 438 | |
Ulya Trafimovich | 65b0319 | 2020-12-03 16:50:22 +0000 | [diff] [blame] | 439 | switch depTag { |
Colin Cross | 4b964c0 | 2018-10-15 16:18:06 -0700 | [diff] [blame] | 440 | case instrumentationForTag: |
| 441 | // Nothing, instrumentationForTag is treated as libTag for javac but not for aapt2. |
Colin Cross | 5446e88 | 2019-05-22 10:46:27 -0700 | [diff] [blame] | 442 | case libTag: |
| 443 | if exportPackage != nil { |
| 444 | sharedLibs = append(sharedLibs, exportPackage) |
| 445 | } |
Rashed Abdel-Tawab | 8782f15 | 2018-08-09 14:08:53 -0700 | [diff] [blame] | 446 | case frameworkResTag, lineageResTag: |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 447 | if exportPackage != nil { |
| 448 | sharedLibs = append(sharedLibs, exportPackage) |
| 449 | } |
| 450 | case staticLibTag: |
| 451 | if exportPackage != nil { |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 452 | transitiveStaticLibs = append(transitiveStaticLibs, aarDep.ExportedStaticPackages()...) |
Colin Cross | bec8530 | 2019-02-13 13:15:46 -0800 | [diff] [blame] | 453 | transitiveStaticLibs = append(transitiveStaticLibs, exportPackage) |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 454 | transitiveStaticLibManifests = append(transitiveStaticLibManifests, aarDep.ExportedManifests()...) |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 455 | if aarDep.ExportedAssets().Valid() { |
| 456 | assets = append(assets, aarDep.ExportedAssets().Path()) |
| 457 | } |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 458 | |
Jeongik Cha | cee5ba9 | 2021-02-19 12:11:51 +0900 | [diff] [blame] | 459 | outer: |
| 460 | for _, d := range aarDep.ExportedRRODirs() { |
| 461 | for _, e := range staticRRODirs { |
| 462 | if d.path == e.path { |
| 463 | continue outer |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 464 | } |
| 465 | } |
Jeongik Cha | cee5ba9 | 2021-02-19 12:11:51 +0900 | [diff] [blame] | 466 | staticRRODirs = append(staticRRODirs, d) |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 467 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 468 | } |
| 469 | } |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 470 | |
Ulya Trafimovich | 88bb6f6 | 2020-12-16 16:16:11 +0000 | [diff] [blame] | 471 | addCLCFromDep(ctx, module, classLoaderContexts) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 472 | }) |
| 473 | |
| 474 | deps = append(deps, sharedLibs...) |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 475 | deps = append(deps, transitiveStaticLibs...) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 476 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 477 | if len(transitiveStaticLibs) > 0 { |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 478 | flags = append(flags, "--auto-add-overlay") |
| 479 | } |
| 480 | |
| 481 | for _, sharedLib := range sharedLibs { |
| 482 | flags = append(flags, "-I "+sharedLib.String()) |
| 483 | } |
| 484 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 485 | transitiveStaticLibs = android.FirstUniquePaths(transitiveStaticLibs) |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 486 | transitiveStaticLibManifests = android.FirstUniquePaths(transitiveStaticLibManifests) |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 487 | |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 488 | return transitiveStaticLibs, transitiveStaticLibManifests, staticRRODirs, assets, deps, flags |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 489 | } |
| 490 | |
| 491 | type AndroidLibrary struct { |
| 492 | Library |
| 493 | aapt |
| 494 | |
| 495 | androidLibraryProperties androidLibraryProperties |
| 496 | |
| 497 | aarFile android.WritablePath |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 498 | |
| 499 | exportedProguardFlagFiles android.Paths |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 500 | exportedStaticPackages android.Paths |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 501 | } |
| 502 | |
Saeid Farivar Asanjan | 1fca301 | 2021-09-14 18:40:19 +0000 | [diff] [blame] | 503 | var _ android.OutputFileProducer = (*AndroidLibrary)(nil) |
| 504 | |
| 505 | // For OutputFileProducer interface |
| 506 | func (a *AndroidLibrary) OutputFiles(tag string) (android.Paths, error) { |
| 507 | switch tag { |
| 508 | case ".aar": |
| 509 | return []android.Path{a.aarFile}, nil |
| 510 | default: |
| 511 | return a.Library.OutputFiles(tag) |
| 512 | } |
| 513 | } |
| 514 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 515 | func (a *AndroidLibrary) ExportedProguardFlagFiles() android.Paths { |
| 516 | return a.exportedProguardFlagFiles |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 517 | } |
| 518 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 519 | func (a *AndroidLibrary) ExportedStaticPackages() android.Paths { |
| 520 | return a.exportedStaticPackages |
| 521 | } |
| 522 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 523 | var _ AndroidLibraryDependency = (*AndroidLibrary)(nil) |
| 524 | |
| 525 | func (a *AndroidLibrary) DepsMutator(ctx android.BottomUpMutatorContext) { |
| 526 | a.Module.deps(ctx) |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 527 | sdkDep := decodeSdkDep(ctx, android.SdkContext(a)) |
Paul Duffin | 250e619 | 2019-06-07 10:44:37 +0100 | [diff] [blame] | 528 | if sdkDep.hasFrameworkLibs() { |
| 529 | a.aapt.deps(ctx, sdkDep) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 530 | } |
Ulya Trafimovich | 42c7f0d | 2021-08-17 16:20:29 +0100 | [diff] [blame] | 531 | a.usesLibrary.deps(ctx, sdkDep.hasFrameworkLibs()) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 532 | } |
| 533 | |
| 534 | func (a *AndroidLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | e4246ab | 2019-02-05 21:55:21 -0800 | [diff] [blame] | 535 | a.aapt.isLibrary = true |
Ulya Trafimovich | 42c7f0d | 2021-08-17 16:20:29 +0100 | [diff] [blame] | 536 | a.classLoaderContexts = a.usesLibrary.classLoaderContextForUsesLibDeps(ctx) |
Paul Duffin | 0653057 | 2022-02-03 17:54:15 +0000 | [diff] [blame] | 537 | a.aapt.buildActions(ctx, android.SdkContext(a), a.classLoaderContexts, nil) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 538 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 539 | a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() |
| 540 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 541 | ctx.CheckbuildFile(a.proguardOptionsFile) |
| 542 | ctx.CheckbuildFile(a.exportPackage) |
| 543 | ctx.CheckbuildFile(a.aaptSrcJar) |
| 544 | |
| 545 | // apps manifests are handled by aapt, don't let Module see them |
| 546 | a.properties.Manifest = nil |
| 547 | |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 548 | a.linter.mergedManifest = a.aapt.mergedManifestFile |
| 549 | a.linter.manifest = a.aapt.manifestPath |
| 550 | a.linter.resources = a.aapt.resourceFiles |
| 551 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 552 | a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles, |
| 553 | a.proguardOptionsFile) |
| 554 | |
| 555 | a.Module.compile(ctx, a.aaptSrcJar) |
| 556 | |
Colin Cross | f57c578 | 2019-01-25 13:20:38 -0800 | [diff] [blame] | 557 | a.aarFile = android.PathForModuleOut(ctx, ctx.ModuleName()+".aar") |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 558 | var res android.Paths |
| 559 | if a.androidLibraryProperties.BuildAAR { |
| 560 | BuildAAR(ctx, a.aarFile, a.outputFile, a.manifestPath, a.rTxt, res) |
| 561 | ctx.CheckbuildFile(a.aarFile) |
| 562 | } |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 563 | |
Cole Faust | 9a63131 | 2020-10-22 21:05:24 +0000 | [diff] [blame] | 564 | a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles, |
| 565 | android.PathsForModuleSrc(ctx, a.dexProperties.Optimize.Proguard_flags_files)...) |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 566 | ctx.VisitDirectDeps(func(m android.Module) { |
| 567 | if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag { |
| 568 | a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles, lib.ExportedProguardFlagFiles()...) |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 569 | a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportPackage()) |
| 570 | a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportedStaticPackages()...) |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 571 | } |
| 572 | }) |
| 573 | |
| 574 | a.exportedProguardFlagFiles = android.FirstUniquePaths(a.exportedProguardFlagFiles) |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 575 | a.exportedStaticPackages = android.FirstUniquePaths(a.exportedStaticPackages) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 576 | } |
| 577 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 578 | // android_library builds and links sources into a `.jar` file for the device along with Android resources. |
| 579 | // |
| 580 | // An android_library has a single variant that produces a `.jar` file containing `.class` files that were |
| 581 | // compiled against the device bootclasspath, along with a `package-res.apk` file containing Android resources compiled |
| 582 | // with aapt2. This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of |
| 583 | // an android_app module. |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 584 | func AndroidLibraryFactory() android.Module { |
| 585 | module := &AndroidLibrary{} |
| 586 | |
Colin Cross | ce6734e | 2020-06-15 16:09:53 -0700 | [diff] [blame] | 587 | module.Module.addHostAndDeviceProperties() |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 588 | module.AddProperties( |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 589 | &module.aaptProperties, |
| 590 | &module.androidLibraryProperties) |
| 591 | |
| 592 | module.androidLibraryProperties.BuildAAR = true |
Colin Cross | 014489c | 2020-06-02 20:09:13 -0700 | [diff] [blame] | 593 | module.Module.linter.library = true |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 594 | |
Jooyung Han | acc7bbe | 2020-05-20 09:06:00 +0900 | [diff] [blame] | 595 | android.InitApexModule(module) |
Colin Cross | 48de9a4 | 2018-10-02 13:53:33 -0700 | [diff] [blame] | 596 | InitJavaModule(module, android.DeviceSupported) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 597 | return module |
| 598 | } |
| 599 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 600 | // |
| 601 | // AAR (android library) prebuilts |
| 602 | // |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 603 | |
Vinh Tran | ce0781f | 2022-04-13 01:30:44 +0000 | [diff] [blame] | 604 | // Properties for android_library_import |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 605 | type AARImportProperties struct { |
Vinh Tran | ce0781f | 2022-04-13 01:30:44 +0000 | [diff] [blame] | 606 | // ARR (android library prebuilt) filepath. Exactly one ARR is required. |
Colin Cross | 27b922f | 2019-03-04 22:35:41 -0800 | [diff] [blame] | 607 | Aars []string `android:"path"` |
Vinh Tran | ce0781f | 2022-04-13 01:30:44 +0000 | [diff] [blame] | 608 | // If not blank, set to the version of the sdk to compile against. |
| 609 | // Defaults to private. |
| 610 | // Values are of one of the following forms: |
| 611 | // 1) numerical API level, "current", "none", or "core_platform" |
| 612 | // 2) An SDK kind with an API level: "<sdk kind>_<API level>" |
| 613 | // See build/soong/android/sdk_version.go for the complete and up to date list of SDK kinds. |
| 614 | // If the SDK kind is empty, it will be set to public |
| 615 | Sdk_version *string |
| 616 | // If not blank, set the minimum version of the sdk that the compiled artifacts will run against. |
| 617 | // Defaults to sdk_version if not set. See sdk_version for possible values. |
Colin Cross | 479884c | 2018-07-10 13:39:30 -0700 | [diff] [blame] | 618 | Min_sdk_version *string |
Vinh Tran | ce0781f | 2022-04-13 01:30:44 +0000 | [diff] [blame] | 619 | // List of java static libraries that the included ARR (android library prebuilts) has dependencies to. |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 620 | Static_libs []string |
Vinh Tran | ce0781f | 2022-04-13 01:30:44 +0000 | [diff] [blame] | 621 | // List of java libraries that the included ARR (android library prebuilts) has dependencies to. |
| 622 | Libs []string |
| 623 | // If set to true, run Jetifier against .aar file. Defaults to false. |
Colin Cross | 1001a79 | 2019-03-21 22:21:39 -0700 | [diff] [blame] | 624 | Jetifier *bool |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | type AARImport struct { |
| 628 | android.ModuleBase |
Colin Cross | 48de9a4 | 2018-10-02 13:53:33 -0700 | [diff] [blame] | 629 | android.DefaultableModuleBase |
Jooyung Han | acc7bbe | 2020-05-20 09:06:00 +0900 | [diff] [blame] | 630 | android.ApexModuleBase |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 631 | prebuilt android.Prebuilt |
| 632 | |
Jooyung Han | acc7bbe | 2020-05-20 09:06:00 +0900 | [diff] [blame] | 633 | // Functionality common to Module and Import. |
| 634 | embeddableInModuleAndImport |
| 635 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 636 | properties AARImportProperties |
| 637 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 638 | classpathFile android.WritablePath |
| 639 | proguardFlags android.WritablePath |
| 640 | exportPackage android.WritablePath |
| 641 | extraAaptPackagesFile android.WritablePath |
Colin Cross | 10f7c4a | 2018-05-23 10:59:28 -0700 | [diff] [blame] | 642 | manifest android.WritablePath |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 643 | assetsPackage android.WritablePath |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 644 | |
| 645 | exportedStaticPackages android.Paths |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 646 | |
| 647 | hideApexVariantFromMake bool |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 648 | |
| 649 | aarPath android.Path |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 650 | |
| 651 | sdkVersion android.SdkSpec |
| 652 | minSdkVersion android.SdkSpec |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 653 | } |
| 654 | |
| 655 | var _ android.OutputFileProducer = (*AARImport)(nil) |
| 656 | |
| 657 | // For OutputFileProducer interface |
| 658 | func (a *AARImport) OutputFiles(tag string) (android.Paths, error) { |
| 659 | switch tag { |
| 660 | case ".aar": |
| 661 | return []android.Path{a.aarPath}, nil |
| 662 | case "": |
| 663 | return []android.Path{a.classpathFile}, nil |
| 664 | default: |
| 665 | return nil, fmt.Errorf("unsupported module reference tag %q", tag) |
| 666 | } |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 667 | } |
| 668 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 669 | func (a *AARImport) SdkVersion(ctx android.EarlyModuleContext) android.SdkSpec { |
| 670 | return android.SdkSpecFrom(ctx, String(a.properties.Sdk_version)) |
Colin Cross | 83bb316 | 2018-06-25 15:48:06 -0700 | [diff] [blame] | 671 | } |
| 672 | |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 673 | func (a *AARImport) SystemModules() string { |
Paul Duffin | e25c644 | 2019-10-11 13:50:28 +0100 | [diff] [blame] | 674 | return "" |
| 675 | } |
| 676 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 677 | func (a *AARImport) MinSdkVersion(ctx android.EarlyModuleContext) android.SdkSpec { |
Colin Cross | 479884c | 2018-07-10 13:39:30 -0700 | [diff] [blame] | 678 | if a.properties.Min_sdk_version != nil { |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 679 | return android.SdkSpecFrom(ctx, *a.properties.Min_sdk_version) |
Colin Cross | 479884c | 2018-07-10 13:39:30 -0700 | [diff] [blame] | 680 | } |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 681 | return a.SdkVersion(ctx) |
Colin Cross | 83bb316 | 2018-06-25 15:48:06 -0700 | [diff] [blame] | 682 | } |
| 683 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 684 | func (a *AARImport) TargetSdkVersion(ctx android.EarlyModuleContext) android.SdkSpec { |
| 685 | return a.SdkVersion(ctx) |
Dan Willemsen | 419290a | 2018-10-31 15:28:47 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Colin Cross | 1e74385 | 2019-10-28 11:37:20 -0700 | [diff] [blame] | 688 | func (a *AARImport) javaVersion() string { |
| 689 | return "" |
| 690 | } |
| 691 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 692 | var _ AndroidLibraryDependency = (*AARImport)(nil) |
| 693 | |
| 694 | func (a *AARImport) ExportPackage() android.Path { |
| 695 | return a.exportPackage |
| 696 | } |
| 697 | |
Colin Cross | 89c3158 | 2018-04-30 15:55:11 -0700 | [diff] [blame] | 698 | func (a *AARImport) ExportedProguardFlagFiles() android.Paths { |
| 699 | return android.Paths{a.proguardFlags} |
| 700 | } |
| 701 | |
Anton Hansson | 53c8844 | 2019-03-18 15:53:16 +0000 | [diff] [blame] | 702 | func (a *AARImport) ExportedRRODirs() []rroDir { |
Colin Cross | c1c3755 | 2019-01-31 11:42:41 -0800 | [diff] [blame] | 703 | return nil |
| 704 | } |
| 705 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 706 | func (a *AARImport) ExportedStaticPackages() android.Paths { |
| 707 | return a.exportedStaticPackages |
| 708 | } |
| 709 | |
Colin Cross | 90c25c6 | 2019-04-19 16:22:57 -0700 | [diff] [blame] | 710 | func (a *AARImport) ExportedManifests() android.Paths { |
| 711 | return android.Paths{a.manifest} |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 712 | } |
| 713 | |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 714 | func (a *AARImport) ExportedAssets() android.OptionalPath { |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 715 | return android.OptionalPathForPath(a.assetsPackage) |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 716 | } |
| 717 | |
Jaewoong Jung | c779cd4 | 2020-10-06 18:56:10 -0700 | [diff] [blame] | 718 | // RRO enforcement is not available on aar_import since its RRO dirs are not |
| 719 | // exported. |
| 720 | func (a *AARImport) SetRROEnforcedForDependent(enforce bool) { |
| 721 | } |
| 722 | |
| 723 | // RRO enforcement is not available on aar_import since its RRO dirs are not |
| 724 | // exported. |
| 725 | func (a *AARImport) IsRROEnforced(ctx android.BaseModuleContext) bool { |
| 726 | return false |
| 727 | } |
| 728 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 729 | func (a *AARImport) Prebuilt() *android.Prebuilt { |
| 730 | return &a.prebuilt |
| 731 | } |
| 732 | |
| 733 | func (a *AARImport) Name() string { |
| 734 | return a.prebuilt.Name(a.ModuleBase.Name()) |
| 735 | } |
| 736 | |
Jiyong Park | 618922e | 2020-01-08 13:35:43 +0900 | [diff] [blame] | 737 | func (a *AARImport) JacocoReportClassesFile() android.Path { |
| 738 | return nil |
| 739 | } |
| 740 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 741 | func (a *AARImport) DepsMutator(ctx android.BottomUpMutatorContext) { |
Jeongik Cha | 816a23a | 2020-07-08 01:09:23 +0900 | [diff] [blame] | 742 | if !ctx.Config().AlwaysUsePrebuiltSdks() { |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 743 | sdkDep := decodeSdkDep(ctx, android.SdkContext(a)) |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 744 | if sdkDep.useModule && sdkDep.frameworkResModule != "" { |
Colin Cross | 42d48b7 | 2018-08-29 14:10:52 -0700 | [diff] [blame] | 745 | ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 746 | } |
Rashed Abdel-Tawab | 8782f15 | 2018-08-09 14:08:53 -0700 | [diff] [blame] | 747 | if sdkDep.useModule && sdkDep.lineageResModule != "" { |
| 748 | ctx.AddVariationDependencies(nil, lineageResTag, sdkDep.lineageResModule) |
| 749 | } |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 750 | } |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 751 | |
Colin Cross | 42d48b7 | 2018-08-29 14:10:52 -0700 | [diff] [blame] | 752 | ctx.AddVariationDependencies(nil, libTag, a.properties.Libs...) |
| 753 | ctx.AddVariationDependencies(nil, staticLibTag, a.properties.Static_libs...) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | // Unzip an AAR into its constituent files and directories. Any files in Outputs that don't exist in the AAR will be |
Dan Willemsen | 304cfec | 2019-05-28 14:49:06 -0700 | [diff] [blame] | 757 | // touched to create an empty file. The res directory is not extracted, as it will be extracted in its own rule. |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 758 | var unzipAAR = pctx.AndroidStaticRule("unzipAAR", |
| 759 | blueprint.RuleParams{ |
Dan Willemsen | 304cfec | 2019-05-28 14:49:06 -0700 | [diff] [blame] | 760 | Command: `rm -rf $outDir && mkdir -p $outDir && ` + |
Colin Cross | 205e911 | 2020-08-06 13:20:17 -0700 | [diff] [blame] | 761 | `unzip -qoDD -d $outDir $in && rm -rf $outDir/res && touch $out && ` + |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 762 | `${config.Zip2ZipCmd} -i $in -o $assetsPackage 'assets/**/*' && ` + |
Colin Cross | 205e911 | 2020-08-06 13:20:17 -0700 | [diff] [blame] | 763 | `${config.MergeZipsCmd} $combinedClassesJar $$(ls $outDir/classes.jar 2> /dev/null) $$(ls $outDir/libs/*.jar 2> /dev/null)`, |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 764 | CommandDeps: []string{"${config.MergeZipsCmd}", "${config.Zip2ZipCmd}"}, |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 765 | }, |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 766 | "outDir", "combinedClassesJar", "assetsPackage") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 767 | |
| 768 | func (a *AARImport) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
| 769 | if len(a.properties.Aars) != 1 { |
| 770 | ctx.PropertyErrorf("aars", "exactly one aar is required") |
| 771 | return |
| 772 | } |
| 773 | |
Jiyong Park | 9231537 | 2021-04-02 08:45:46 +0900 | [diff] [blame] | 774 | a.sdkVersion = a.SdkVersion(ctx) |
| 775 | a.minSdkVersion = a.MinSdkVersion(ctx) |
| 776 | |
Colin Cross | 56a8321 | 2020-09-15 18:30:11 -0700 | [diff] [blame] | 777 | a.hideApexVariantFromMake = !ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).IsForPlatform() |
| 778 | |
Nan Zhang | 4c819fb | 2018-08-27 18:31:46 -0700 | [diff] [blame] | 779 | aarName := ctx.ModuleName() + ".aar" |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 780 | a.aarPath = android.PathForModuleSrc(ctx, a.properties.Aars[0]) |
| 781 | |
Colin Cross | 1001a79 | 2019-03-21 22:21:39 -0700 | [diff] [blame] | 782 | if Bool(a.properties.Jetifier) { |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 783 | inputFile := a.aarPath |
| 784 | a.aarPath = android.PathForModuleOut(ctx, "jetifier", aarName) |
| 785 | TransformJetifier(ctx, a.aarPath.(android.WritablePath), inputFile) |
Nan Zhang | 4c819fb | 2018-08-27 18:31:46 -0700 | [diff] [blame] | 786 | } |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 787 | |
| 788 | extractedAARDir := android.PathForModuleOut(ctx, "aar") |
Colin Cross | 205e911 | 2020-08-06 13:20:17 -0700 | [diff] [blame] | 789 | a.classpathFile = extractedAARDir.Join(ctx, "classes-combined.jar") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 790 | a.proguardFlags = extractedAARDir.Join(ctx, "proguard.txt") |
Colin Cross | 10f7c4a | 2018-05-23 10:59:28 -0700 | [diff] [blame] | 791 | a.manifest = extractedAARDir.Join(ctx, "AndroidManifest.xml") |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 792 | a.assetsPackage = android.PathForModuleOut(ctx, "assets.zip") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 793 | |
| 794 | ctx.Build(pctx, android.BuildParams{ |
| 795 | Rule: unzipAAR, |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 796 | Input: a.aarPath, |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 797 | Outputs: android.WritablePaths{a.classpathFile, a.proguardFlags, a.manifest, a.assetsPackage}, |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 798 | Description: "unzip AAR", |
| 799 | Args: map[string]string{ |
Colin Cross | 205e911 | 2020-08-06 13:20:17 -0700 | [diff] [blame] | 800 | "outDir": extractedAARDir.String(), |
| 801 | "combinedClassesJar": a.classpathFile.String(), |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 802 | "assetsPackage": a.assetsPackage.String(), |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 803 | }, |
| 804 | }) |
| 805 | |
Colin Cross | a0ba2f5 | 2019-06-22 12:59:27 -0700 | [diff] [blame] | 806 | // Always set --pseudo-localize, it will be stripped out later for release |
| 807 | // builds that don't want it. |
| 808 | compileFlags := []string{"--pseudo-localize"} |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 809 | compiledResDir := android.PathForModuleOut(ctx, "flat-res") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 810 | flata := compiledResDir.Join(ctx, "gen_res.flata") |
Saeid Farivar Asanjan | f043696 | 2020-10-05 19:09:09 +0000 | [diff] [blame] | 811 | aapt2CompileZip(ctx, flata, a.aarPath, "res", compileFlags) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 812 | |
| 813 | a.exportPackage = android.PathForModuleOut(ctx, "package-res.apk") |
Jiyong Park | b7c639e | 2019-08-19 14:56:02 +0900 | [diff] [blame] | 814 | // the subdir "android" is required to be filtered by package names |
| 815 | srcJar := android.PathForModuleGen(ctx, "android", "R.srcjar") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 816 | proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options") |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 817 | rTxt := android.PathForModuleOut(ctx, "R.txt") |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 818 | a.extraAaptPackagesFile = android.PathForModuleOut(ctx, "extra_packages") |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 819 | |
| 820 | var linkDeps android.Paths |
| 821 | |
| 822 | linkFlags := []string{ |
| 823 | "--static-lib", |
| 824 | "--no-static-lib-packages", |
| 825 | "--auto-add-overlay", |
| 826 | } |
| 827 | |
Colin Cross | 10f7c4a | 2018-05-23 10:59:28 -0700 | [diff] [blame] | 828 | linkFlags = append(linkFlags, "--manifest "+a.manifest.String()) |
| 829 | linkDeps = append(linkDeps, a.manifest) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 830 | |
Ulya Trafimovich | 1855424 | 2020-11-03 15:55:11 +0000 | [diff] [blame] | 831 | transitiveStaticLibs, staticLibManifests, staticRRODirs, transitiveAssets, libDeps, libFlags := |
Jiyong Park | f1691d2 | 2021-03-29 20:11:58 +0900 | [diff] [blame] | 832 | aaptLibs(ctx, android.SdkContext(a), nil) |
Colin Cross | 3165695 | 2018-05-24 16:11:20 -0700 | [diff] [blame] | 833 | |
| 834 | _ = staticLibManifests |
Colin Cross | c1c3755 | 2019-01-31 11:42:41 -0800 | [diff] [blame] | 835 | _ = staticRRODirs |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 836 | |
Colin Cross | a97c5d3 | 2018-03-28 14:58:31 -0700 | [diff] [blame] | 837 | linkDeps = append(linkDeps, libDeps...) |
| 838 | linkFlags = append(linkFlags, libFlags...) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 839 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 840 | overlayRes := append(android.Paths{flata}, transitiveStaticLibs...) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 841 | |
Colin Cross | 66f7882 | 2018-05-02 12:58:28 -0700 | [diff] [blame] | 842 | aapt2Link(ctx, a.exportPackage, srcJar, proguardOptionsFile, rTxt, a.extraAaptPackagesFile, |
Jaewoong Jung | 6431ca7 | 2020-01-15 14:15:10 -0800 | [diff] [blame] | 843 | linkFlags, linkDeps, nil, overlayRes, transitiveAssets, nil) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 844 | |
Michael Rosenfeld | 5ad1557 | 2021-12-03 13:25:10 -0800 | [diff] [blame] | 845 | // Merge this import's assets with its dependencies' assets (if there are any). |
| 846 | if len(transitiveAssets) > 0 { |
| 847 | mergedAssets := android.PathForModuleOut(ctx, "merged-assets.zip") |
| 848 | inputZips := append(android.Paths{a.assetsPackage}, transitiveAssets...) |
| 849 | ctx.Build(pctx, android.BuildParams{ |
| 850 | Rule: mergeAssetsRule, |
| 851 | Inputs: inputZips, |
| 852 | Output: mergedAssets, |
| 853 | Description: "merge assets from dependencies and self", |
| 854 | }) |
| 855 | a.assetsPackage = mergedAssets |
| 856 | } |
| 857 | |
Colin Cross | dcf71b2 | 2021-02-01 13:59:03 -0800 | [diff] [blame] | 858 | ctx.SetProvider(JavaInfoProvider, JavaInfo{ |
| 859 | HeaderJars: android.PathsIfNonNil(a.classpathFile), |
| 860 | ImplementationAndResourcesJars: android.PathsIfNonNil(a.classpathFile), |
| 861 | ImplementationJars: android.PathsIfNonNil(a.classpathFile), |
| 862 | }) |
| 863 | } |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 864 | |
| 865 | func (a *AARImport) HeaderJars() android.Paths { |
| 866 | return android.Paths{a.classpathFile} |
| 867 | } |
| 868 | |
Colin Cross | 331a121 | 2018-08-15 20:40:52 -0700 | [diff] [blame] | 869 | func (a *AARImport) ImplementationAndResourcesJars() android.Paths { |
| 870 | return android.Paths{a.classpathFile} |
| 871 | } |
| 872 | |
Ulyana Trafimovich | 5539e7b | 2020-06-04 14:08:17 +0000 | [diff] [blame] | 873 | func (a *AARImport) DexJarBuildPath() android.Path { |
Colin Cross | f24a22a | 2019-01-31 14:12:44 -0800 | [diff] [blame] | 874 | return nil |
| 875 | } |
| 876 | |
Ulya Trafimovich | 9f3052c | 2020-06-09 14:31:19 +0100 | [diff] [blame] | 877 | func (a *AARImport) DexJarInstallPath() android.Path { |
| 878 | return nil |
| 879 | } |
| 880 | |
Ulya Trafimovich | b23d28c | 2020-10-08 12:53:58 +0100 | [diff] [blame] | 881 | func (a *AARImport) ClassLoaderContexts() dexpreopt.ClassLoaderContextMap { |
Jiyong Park | 1be9691 | 2018-05-28 18:02:19 +0900 | [diff] [blame] | 882 | return nil |
| 883 | } |
| 884 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 885 | var _ android.ApexModule = (*AARImport)(nil) |
| 886 | |
| 887 | // Implements android.ApexModule |
Jooyung Han | acc7bbe | 2020-05-20 09:06:00 +0900 | [diff] [blame] | 888 | func (a *AARImport) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { |
| 889 | return a.depIsInSameApex(ctx, dep) |
| 890 | } |
| 891 | |
Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 892 | // Implements android.ApexModule |
Dan Albert | c806053 | 2020-07-22 22:32:17 -0700 | [diff] [blame] | 893 | func (g *AARImport) ShouldSupportSdkVersion(ctx android.BaseModuleContext, |
| 894 | sdkVersion android.ApiLevel) error { |
Jooyung Han | 749dc69 | 2020-04-15 11:03:39 +0900 | [diff] [blame] | 895 | return nil |
| 896 | } |
| 897 | |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 898 | var _ android.PrebuiltInterface = (*Import)(nil) |
| 899 | |
Colin Cross | 1b16b0e | 2019-02-12 14:41:32 -0800 | [diff] [blame] | 900 | // android_library_import imports an `.aar` file into the build graph as if it was built with android_library. |
| 901 | // |
| 902 | // This module is not suitable for installing on a device, but can be used as a `static_libs` dependency of |
| 903 | // an android_app module. |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 904 | func AARImportFactory() android.Module { |
| 905 | module := &AARImport{} |
| 906 | |
| 907 | module.AddProperties(&module.properties) |
| 908 | |
| 909 | android.InitPrebuiltModule(module, &module.properties.Aars) |
Jooyung Han | acc7bbe | 2020-05-20 09:06:00 +0900 | [diff] [blame] | 910 | android.InitApexModule(module) |
Colin Cross | 48de9a4 | 2018-10-02 13:53:33 -0700 | [diff] [blame] | 911 | InitJavaModule(module, android.DeviceSupported) |
Colin Cross | fabb608 | 2018-02-20 17:22:23 -0800 | [diff] [blame] | 912 | return module |
| 913 | } |