2018-02-21 02:22:23 +01:00
|
|
|
// Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package java
|
|
|
|
|
|
|
|
import (
|
|
|
|
"android/soong/android"
|
2018-03-28 23:58:31 +02:00
|
|
|
"strings"
|
2018-02-21 02:22:23 +01:00
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
2018-03-28 23:58:31 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
2018-02-21 02:22:23 +01:00
|
|
|
)
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
type AndroidLibraryDependency interface {
|
|
|
|
Dependency
|
|
|
|
ExportPackage() android.Path
|
2018-05-01 00:55:11 +02:00
|
|
|
ExportedProguardFlagFiles() android.Paths
|
2018-05-02 21:58:28 +02:00
|
|
|
ExportedStaticPackages() android.Paths
|
2018-05-25 01:11:20 +02:00
|
|
|
ExportedManifest() android.Path
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
func init() {
|
|
|
|
android.RegisterModuleType("android_library_import", AARImportFactory)
|
2018-03-28 23:58:31 +02:00
|
|
|
android.RegisterModuleType("android_library", AndroidLibraryFactory)
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// AAR (android library)
|
|
|
|
//
|
|
|
|
|
|
|
|
type androidLibraryProperties struct {
|
|
|
|
BuildAAR bool `blueprint:"mutated"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type aaptProperties struct {
|
|
|
|
// flags passed to aapt when creating the apk
|
|
|
|
Aaptflags []string
|
|
|
|
|
|
|
|
// list of directories relative to the Blueprints file containing assets.
|
|
|
|
// Defaults to "assets"
|
|
|
|
Asset_dirs []string
|
|
|
|
|
|
|
|
// list of directories relative to the Blueprints file containing
|
|
|
|
// Android resources
|
|
|
|
Resource_dirs []string
|
|
|
|
|
|
|
|
// path to AndroidManifest.xml. If unset, defaults to "AndroidManifest.xml".
|
|
|
|
Manifest *string
|
|
|
|
}
|
|
|
|
|
|
|
|
type aapt struct {
|
2018-05-02 21:58:28 +02:00
|
|
|
aaptSrcJar android.Path
|
|
|
|
exportPackage android.Path
|
|
|
|
manifestPath android.Path
|
|
|
|
proguardOptionsFile android.Path
|
|
|
|
rroDirs android.Paths
|
|
|
|
rTxt android.Path
|
|
|
|
extraAaptPackagesFile android.Path
|
2018-07-24 23:51:30 +02:00
|
|
|
isLibrary bool
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
aaptProperties aaptProperties
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *aapt) ExportPackage() android.Path {
|
|
|
|
return a.exportPackage
|
|
|
|
}
|
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
func (a *aapt) aapt2Flags(ctx android.ModuleContext, sdkContext sdkContext, manifestPath android.Path) (flags []string,
|
|
|
|
deps android.Paths, resDirs, overlayDirs []globbedResourceDir, rroDirs android.Paths) {
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
hasVersionCode := false
|
|
|
|
hasVersionName := false
|
|
|
|
for _, f := range a.aaptProperties.Aaptflags {
|
|
|
|
if strings.HasPrefix(f, "--version-code") {
|
|
|
|
hasVersionCode = true
|
|
|
|
} else if strings.HasPrefix(f, "--version-name") {
|
|
|
|
hasVersionName = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var linkFlags []string
|
|
|
|
|
|
|
|
// Flags specified in Android.bp
|
|
|
|
linkFlags = append(linkFlags, a.aaptProperties.Aaptflags...)
|
|
|
|
|
|
|
|
linkFlags = append(linkFlags, "--no-static-lib-packages")
|
|
|
|
|
|
|
|
// Find implicit or explicit asset and resource dirs
|
|
|
|
assetDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Asset_dirs, "assets")
|
|
|
|
resourceDirs := android.PathsWithOptionalDefaultForModuleSrc(ctx, a.aaptProperties.Resource_dirs, "res")
|
|
|
|
|
|
|
|
var linkDeps android.Paths
|
|
|
|
|
|
|
|
// Glob directories into lists of paths
|
|
|
|
for _, dir := range resourceDirs {
|
|
|
|
resDirs = append(resDirs, globbedResourceDir{
|
|
|
|
dir: dir,
|
|
|
|
files: androidResourceGlob(ctx, dir),
|
|
|
|
})
|
|
|
|
resOverlayDirs, resRRODirs := overlayResourceGlob(ctx, dir)
|
|
|
|
overlayDirs = append(overlayDirs, resOverlayDirs...)
|
|
|
|
rroDirs = append(rroDirs, resRRODirs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
var assetFiles android.Paths
|
|
|
|
for _, dir := range assetDirs {
|
|
|
|
assetFiles = append(assetFiles, androidResourceGlob(ctx, dir)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
linkFlags = append(linkFlags, "--manifest "+manifestPath.String())
|
|
|
|
linkDeps = append(linkDeps, manifestPath)
|
|
|
|
|
|
|
|
linkFlags = append(linkFlags, android.JoinWithPrefix(assetDirs.Strings(), "-A "))
|
|
|
|
linkDeps = append(linkDeps, assetFiles...)
|
|
|
|
|
|
|
|
// SDK version flags
|
2018-06-26 00:48:06 +02:00
|
|
|
minSdkVersion := sdkVersionOrDefault(ctx, sdkContext.minSdkVersion())
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
linkFlags = append(linkFlags, "--min-sdk-version "+minSdkVersion)
|
|
|
|
linkFlags = append(linkFlags, "--target-sdk-version "+minSdkVersion)
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
// Version code
|
|
|
|
if !hasVersionCode {
|
|
|
|
linkFlags = append(linkFlags, "--version-code", ctx.Config().PlatformSdkVersion())
|
|
|
|
}
|
|
|
|
|
|
|
|
if !hasVersionName {
|
2018-04-25 23:54:06 +02:00
|
|
|
var versionName string
|
|
|
|
if ctx.ModuleName() == "framework-res" {
|
|
|
|
// Some builds set AppsDefaultVersionName() to include the build number ("O-123456"). aapt2 copies the
|
|
|
|
// version name of framework-res into app manifests as compileSdkVersionCodename, which confuses things
|
2018-05-09 20:11:35 +02:00
|
|
|
// if it contains the build number. Use the PlatformVersionName instead.
|
|
|
|
versionName = ctx.Config().PlatformVersionName()
|
2018-04-25 23:54:06 +02:00
|
|
|
} else {
|
|
|
|
versionName = ctx.Config().AppsDefaultVersionName()
|
|
|
|
}
|
|
|
|
versionName = proptools.NinjaEscape([]string{versionName})[0]
|
2018-03-28 23:58:31 +02:00
|
|
|
linkFlags = append(linkFlags, "--version-name ", versionName)
|
|
|
|
}
|
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
return linkFlags, linkDeps, resDirs, overlayDirs, rroDirs
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
func (a *aapt) deps(ctx android.BottomUpMutatorContext, sdkContext sdkContext) {
|
2018-03-28 23:58:31 +02:00
|
|
|
if !ctx.Config().UnbundledBuild() {
|
2018-06-26 00:48:06 +02:00
|
|
|
sdkDep := decodeSdkDep(ctx, sdkContext)
|
2018-03-28 23:58:31 +02:00
|
|
|
if sdkDep.frameworkResModule != "" {
|
2018-08-29 23:10:52 +02:00
|
|
|
ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
}
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
func (a *aapt) buildActions(ctx android.ModuleContext, sdkContext sdkContext, extraLinkFlags ...string) {
|
2018-05-25 01:11:20 +02:00
|
|
|
transitiveStaticLibs, staticLibManifests, libDeps, libFlags := aaptLibs(ctx, sdkContext)
|
|
|
|
|
|
|
|
// App manifest file
|
|
|
|
manifestFile := proptools.StringDefault(a.aaptProperties.Manifest, "AndroidManifest.xml")
|
|
|
|
manifestSrcPath := android.PathForModuleSrc(ctx, manifestFile)
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2018-07-24 23:51:30 +02:00
|
|
|
manifestPath := manifestMerger(ctx, manifestSrcPath, sdkContext, staticLibManifests, a.isLibrary)
|
2018-05-25 01:11:20 +02:00
|
|
|
|
|
|
|
linkFlags, linkDeps, resDirs, overlayDirs, rroDirs := a.aapt2Flags(ctx, sdkContext, manifestPath)
|
|
|
|
|
|
|
|
linkFlags = append(linkFlags, libFlags...)
|
|
|
|
linkDeps = append(linkDeps, libDeps...)
|
2018-03-28 23:58:31 +02:00
|
|
|
linkFlags = append(linkFlags, extraLinkFlags...)
|
2018-07-24 23:51:30 +02:00
|
|
|
if a.isLibrary {
|
|
|
|
linkFlags = append(linkFlags, "--static-lib")
|
|
|
|
}
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
packageRes := android.PathForModuleOut(ctx, "package-res.apk")
|
|
|
|
srcJar := android.PathForModuleGen(ctx, "R.jar")
|
|
|
|
proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
|
|
|
|
rTxt := android.PathForModuleOut(ctx, "R.txt")
|
2018-05-02 21:58:28 +02:00
|
|
|
// This file isn't used by Soong, but is generated for exporting
|
|
|
|
extraPackages := android.PathForModuleOut(ctx, "extra_packages")
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2018-08-22 00:14:37 +02:00
|
|
|
var compiledResDirs []android.Paths
|
2018-03-28 23:58:31 +02:00
|
|
|
for _, dir := range resDirs {
|
2018-08-22 00:14:37 +02:00
|
|
|
compiledResDirs = append(compiledResDirs, aapt2Compile(ctx, dir.dir, dir.files).Paths())
|
|
|
|
}
|
|
|
|
|
|
|
|
var compiledRes, compiledOverlay android.Paths
|
|
|
|
|
|
|
|
compiledOverlay = append(compiledOverlay, transitiveStaticLibs...)
|
|
|
|
|
|
|
|
if a.isLibrary {
|
|
|
|
// For a static library we treat all the resources equally with no overlay.
|
|
|
|
for _, compiledResDir := range compiledResDirs {
|
|
|
|
compiledRes = append(compiledRes, compiledResDir...)
|
|
|
|
}
|
|
|
|
} else if len(transitiveStaticLibs) > 0 {
|
|
|
|
// If we are using static android libraries, every source file becomes an overlay.
|
|
|
|
// This is to emulate old AAPT behavior which simulated library support.
|
|
|
|
for _, compiledResDir := range compiledResDirs {
|
|
|
|
compiledOverlay = append(compiledOverlay, compiledResDir...)
|
|
|
|
}
|
|
|
|
} else if len(compiledResDirs) > 0 {
|
|
|
|
// Without static libraries, the first directory is our directory, which can then be
|
|
|
|
// overlaid by the rest.
|
|
|
|
compiledRes = append(compiledRes, compiledResDirs[0]...)
|
|
|
|
for _, compiledResDir := range compiledResDirs[1:] {
|
|
|
|
compiledOverlay = append(compiledOverlay, compiledResDir...)
|
|
|
|
}
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
2018-08-22 00:14:37 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
for _, dir := range overlayDirs {
|
|
|
|
compiledOverlay = append(compiledOverlay, aapt2Compile(ctx, dir.dir, dir.files).Paths()...)
|
|
|
|
}
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
aapt2Link(ctx, packageRes, srcJar, proguardOptionsFile, rTxt, extraPackages,
|
2018-03-28 23:58:31 +02:00
|
|
|
linkFlags, linkDeps, compiledRes, compiledOverlay)
|
|
|
|
|
|
|
|
a.aaptSrcJar = srcJar
|
|
|
|
a.exportPackage = packageRes
|
|
|
|
a.manifestPath = manifestPath
|
|
|
|
a.proguardOptionsFile = proguardOptionsFile
|
|
|
|
a.rroDirs = rroDirs
|
2018-05-02 21:58:28 +02:00
|
|
|
a.extraAaptPackagesFile = extraPackages
|
2018-03-28 23:58:31 +02:00
|
|
|
a.rTxt = rTxt
|
|
|
|
}
|
|
|
|
|
|
|
|
// aaptLibs collects libraries from dependencies and sdk_version and converts them into paths
|
2018-05-25 01:11:20 +02:00
|
|
|
func aaptLibs(ctx android.ModuleContext, sdkContext sdkContext) (transitiveStaticLibs, staticLibManifests,
|
|
|
|
deps android.Paths, flags []string) {
|
2018-05-02 21:58:28 +02:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
var sharedLibs android.Paths
|
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
sdkDep := decodeSdkDep(ctx, sdkContext)
|
2018-03-28 23:58:31 +02:00
|
|
|
if sdkDep.useFiles {
|
2018-05-29 23:44:55 +02:00
|
|
|
sharedLibs = append(sharedLibs, sdkDep.jars...)
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.VisitDirectDeps(func(module android.Module) {
|
|
|
|
var exportPackage android.Path
|
2018-05-02 21:58:28 +02:00
|
|
|
aarDep, _ := module.(AndroidLibraryDependency)
|
|
|
|
if aarDep != nil {
|
2018-03-28 23:58:31 +02:00
|
|
|
exportPackage = aarDep.ExportPackage()
|
|
|
|
}
|
|
|
|
|
|
|
|
switch ctx.OtherModuleDependencyTag(module) {
|
2018-10-16 01:18:06 +02:00
|
|
|
case instrumentationForTag:
|
|
|
|
// Nothing, instrumentationForTag is treated as libTag for javac but not for aapt2.
|
2018-03-28 23:58:31 +02:00
|
|
|
case libTag, frameworkResTag:
|
|
|
|
if exportPackage != nil {
|
|
|
|
sharedLibs = append(sharedLibs, exportPackage)
|
|
|
|
}
|
|
|
|
case staticLibTag:
|
|
|
|
if exportPackage != nil {
|
2018-05-02 21:58:28 +02:00
|
|
|
transitiveStaticLibs = append(transitiveStaticLibs, exportPackage)
|
|
|
|
transitiveStaticLibs = append(transitiveStaticLibs, aarDep.ExportedStaticPackages()...)
|
2018-05-25 01:11:20 +02:00
|
|
|
staticLibManifests = append(staticLibManifests, aarDep.ExportedManifest())
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
deps = append(deps, sharedLibs...)
|
2018-05-02 21:58:28 +02:00
|
|
|
deps = append(deps, transitiveStaticLibs...)
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
if len(transitiveStaticLibs) > 0 {
|
2018-03-28 23:58:31 +02:00
|
|
|
flags = append(flags, "--auto-add-overlay")
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, sharedLib := range sharedLibs {
|
|
|
|
flags = append(flags, "-I "+sharedLib.String())
|
|
|
|
}
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
transitiveStaticLibs = android.FirstUniquePaths(transitiveStaticLibs)
|
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
return transitiveStaticLibs, staticLibManifests, deps, flags
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type AndroidLibrary struct {
|
|
|
|
Library
|
|
|
|
aapt
|
|
|
|
|
|
|
|
androidLibraryProperties androidLibraryProperties
|
|
|
|
|
|
|
|
aarFile android.WritablePath
|
2018-05-01 00:55:11 +02:00
|
|
|
|
|
|
|
exportedProguardFlagFiles android.Paths
|
2018-05-02 21:58:28 +02:00
|
|
|
exportedStaticPackages android.Paths
|
2018-05-01 00:55:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidLibrary) ExportedProguardFlagFiles() android.Paths {
|
|
|
|
return a.exportedProguardFlagFiles
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
func (a *AndroidLibrary) ExportedStaticPackages() android.Paths {
|
|
|
|
return a.exportedStaticPackages
|
|
|
|
}
|
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
func (a *AndroidLibrary) ExportedManifest() android.Path {
|
|
|
|
return a.manifestPath
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
var _ AndroidLibraryDependency = (*AndroidLibrary)(nil)
|
|
|
|
|
|
|
|
func (a *AndroidLibrary) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
a.Module.deps(ctx)
|
|
|
|
if !Bool(a.properties.No_framework_libs) && !Bool(a.properties.No_standard_libs) {
|
2018-06-26 00:48:06 +02:00
|
|
|
a.aapt.deps(ctx, sdkContext(a))
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AndroidLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2018-07-24 23:51:30 +02:00
|
|
|
a.isLibrary = true
|
|
|
|
a.aapt.buildActions(ctx, sdkContext(a))
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
ctx.CheckbuildFile(a.proguardOptionsFile)
|
|
|
|
ctx.CheckbuildFile(a.exportPackage)
|
|
|
|
ctx.CheckbuildFile(a.aaptSrcJar)
|
|
|
|
|
|
|
|
// apps manifests are handled by aapt, don't let Module see them
|
|
|
|
a.properties.Manifest = nil
|
|
|
|
|
|
|
|
a.Module.extraProguardFlagFiles = append(a.Module.extraProguardFlagFiles,
|
|
|
|
a.proguardOptionsFile)
|
|
|
|
|
|
|
|
a.Module.compile(ctx, a.aaptSrcJar)
|
|
|
|
|
|
|
|
a.aarFile = android.PathForOutput(ctx, ctx.ModuleName()+".aar")
|
|
|
|
var res android.Paths
|
|
|
|
if a.androidLibraryProperties.BuildAAR {
|
|
|
|
BuildAAR(ctx, a.aarFile, a.outputFile, a.manifestPath, a.rTxt, res)
|
|
|
|
ctx.CheckbuildFile(a.aarFile)
|
|
|
|
}
|
2018-05-01 00:55:11 +02:00
|
|
|
|
|
|
|
ctx.VisitDirectDeps(func(m android.Module) {
|
|
|
|
if lib, ok := m.(AndroidLibraryDependency); ok && ctx.OtherModuleDependencyTag(m) == staticLibTag {
|
|
|
|
a.exportedProguardFlagFiles = append(a.exportedProguardFlagFiles, lib.ExportedProguardFlagFiles()...)
|
2018-05-02 21:58:28 +02:00
|
|
|
a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportPackage())
|
|
|
|
a.exportedStaticPackages = append(a.exportedStaticPackages, lib.ExportedStaticPackages()...)
|
2018-05-01 00:55:11 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
a.exportedProguardFlagFiles = android.FirstUniquePaths(a.exportedProguardFlagFiles)
|
2018-05-02 21:58:28 +02:00
|
|
|
a.exportedStaticPackages = android.FirstUniquePaths(a.exportedStaticPackages)
|
2018-03-28 23:58:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func AndroidLibraryFactory() android.Module {
|
|
|
|
module := &AndroidLibrary{}
|
|
|
|
|
|
|
|
module.AddProperties(
|
|
|
|
&module.Module.properties,
|
|
|
|
&module.Module.deviceProperties,
|
|
|
|
&module.Module.protoProperties,
|
|
|
|
&module.aaptProperties,
|
|
|
|
&module.androidLibraryProperties)
|
|
|
|
|
|
|
|
module.androidLibraryProperties.BuildAAR = true
|
|
|
|
|
2018-10-02 22:53:33 +02:00
|
|
|
InitJavaModule(module, android.DeviceSupported)
|
2018-03-28 23:58:31 +02:00
|
|
|
return module
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// AAR (android library) prebuilts
|
|
|
|
//
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
type AARImportProperties struct {
|
|
|
|
Aars []string
|
|
|
|
|
2018-07-10 22:39:30 +02:00
|
|
|
Sdk_version *string
|
|
|
|
Min_sdk_version *string
|
2018-03-28 23:58:31 +02:00
|
|
|
|
|
|
|
Static_libs []string
|
|
|
|
Libs []string
|
2018-08-28 03:31:46 +02:00
|
|
|
|
|
|
|
// if set to true, run Jetifier against .aar file. Defaults to false.
|
|
|
|
Jetifier_enabled *bool
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type AARImport struct {
|
|
|
|
android.ModuleBase
|
2018-10-02 22:53:33 +02:00
|
|
|
android.DefaultableModuleBase
|
2018-02-21 02:22:23 +01:00
|
|
|
prebuilt android.Prebuilt
|
|
|
|
|
|
|
|
properties AARImportProperties
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
classpathFile android.WritablePath
|
|
|
|
proguardFlags android.WritablePath
|
|
|
|
exportPackage android.WritablePath
|
|
|
|
extraAaptPackagesFile android.WritablePath
|
2018-05-23 19:59:28 +02:00
|
|
|
manifest android.WritablePath
|
2018-05-02 21:58:28 +02:00
|
|
|
|
|
|
|
exportedStaticPackages android.Paths
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:48:06 +02:00
|
|
|
func (a *AARImport) sdkVersion() string {
|
|
|
|
return String(a.properties.Sdk_version)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AARImport) minSdkVersion() string {
|
2018-07-10 22:39:30 +02:00
|
|
|
if a.properties.Min_sdk_version != nil {
|
|
|
|
return *a.properties.Min_sdk_version
|
|
|
|
}
|
2018-06-26 00:48:06 +02:00
|
|
|
return a.sdkVersion()
|
|
|
|
}
|
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
var _ AndroidLibraryDependency = (*AARImport)(nil)
|
|
|
|
|
|
|
|
func (a *AARImport) ExportPackage() android.Path {
|
|
|
|
return a.exportPackage
|
|
|
|
}
|
|
|
|
|
2018-05-01 00:55:11 +02:00
|
|
|
func (a *AARImport) ExportedProguardFlagFiles() android.Paths {
|
|
|
|
return android.Paths{a.proguardFlags}
|
|
|
|
}
|
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
func (a *AARImport) ExportedStaticPackages() android.Paths {
|
|
|
|
return a.exportedStaticPackages
|
|
|
|
}
|
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
func (a *AARImport) ExportedManifest() android.Path {
|
|
|
|
return a.manifest
|
|
|
|
}
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
func (a *AARImport) Prebuilt() *android.Prebuilt {
|
|
|
|
return &a.prebuilt
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AARImport) Name() string {
|
|
|
|
return a.prebuilt.Name(a.ModuleBase.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AARImport) DepsMutator(ctx android.BottomUpMutatorContext) {
|
|
|
|
if !ctx.Config().UnbundledBuild() {
|
2018-06-26 00:48:06 +02:00
|
|
|
sdkDep := decodeSdkDep(ctx, sdkContext(a))
|
2018-03-28 23:58:31 +02:00
|
|
|
if sdkDep.useModule && sdkDep.frameworkResModule != "" {
|
2018-08-29 23:10:52 +02:00
|
|
|
ctx.AddVariationDependencies(nil, frameworkResTag, sdkDep.frameworkResModule)
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
}
|
2018-03-28 23:58:31 +02:00
|
|
|
|
2018-08-29 23:10:52 +02:00
|
|
|
ctx.AddVariationDependencies(nil, libTag, a.properties.Libs...)
|
|
|
|
ctx.AddVariationDependencies(nil, staticLibTag, a.properties.Static_libs...)
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unzip an AAR into its constituent files and directories. Any files in Outputs that don't exist in the AAR will be
|
|
|
|
// touched to create an empty file, and any directories in $expectedDirs will be created.
|
|
|
|
var unzipAAR = pctx.AndroidStaticRule("unzipAAR",
|
|
|
|
blueprint.RuleParams{
|
|
|
|
Command: `rm -rf $outDir && mkdir -p $outDir $expectedDirs && ` +
|
|
|
|
`unzip -qo -d $outDir $in && touch $out`,
|
|
|
|
},
|
|
|
|
"expectedDirs", "outDir")
|
|
|
|
|
|
|
|
func (a *AARImport) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|
|
|
if len(a.properties.Aars) != 1 {
|
|
|
|
ctx.PropertyErrorf("aars", "exactly one aar is required")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-28 03:31:46 +02:00
|
|
|
aarName := ctx.ModuleName() + ".aar"
|
|
|
|
var aar android.Path
|
|
|
|
aar = android.PathForModuleSrc(ctx, a.properties.Aars[0])
|
|
|
|
if Bool(a.properties.Jetifier_enabled) {
|
|
|
|
inputFile := aar
|
|
|
|
aar = android.PathForModuleOut(ctx, "jetifier", aarName)
|
|
|
|
TransformJetifier(ctx, aar.(android.WritablePath), inputFile)
|
|
|
|
}
|
2018-02-21 02:22:23 +01:00
|
|
|
|
|
|
|
extractedAARDir := android.PathForModuleOut(ctx, "aar")
|
|
|
|
extractedResDir := extractedAARDir.Join(ctx, "res")
|
|
|
|
a.classpathFile = extractedAARDir.Join(ctx, "classes.jar")
|
|
|
|
a.proguardFlags = extractedAARDir.Join(ctx, "proguard.txt")
|
2018-05-23 19:59:28 +02:00
|
|
|
a.manifest = extractedAARDir.Join(ctx, "AndroidManifest.xml")
|
2018-02-21 02:22:23 +01:00
|
|
|
|
|
|
|
ctx.Build(pctx, android.BuildParams{
|
|
|
|
Rule: unzipAAR,
|
|
|
|
Input: aar,
|
2018-05-23 19:59:28 +02:00
|
|
|
Outputs: android.WritablePaths{a.classpathFile, a.proguardFlags, a.manifest},
|
2018-02-21 02:22:23 +01:00
|
|
|
Description: "unzip AAR",
|
|
|
|
Args: map[string]string{
|
|
|
|
"expectedDirs": extractedResDir.String(),
|
|
|
|
"outDir": extractedAARDir.String(),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
compiledResDir := android.PathForModuleOut(ctx, "flat-res")
|
|
|
|
aaptCompileDeps := android.Paths{a.classpathFile}
|
|
|
|
aaptCompileDirs := android.Paths{extractedResDir}
|
|
|
|
flata := compiledResDir.Join(ctx, "gen_res.flata")
|
|
|
|
aapt2CompileDirs(ctx, flata, aaptCompileDirs, aaptCompileDeps)
|
|
|
|
|
|
|
|
a.exportPackage = android.PathForModuleOut(ctx, "package-res.apk")
|
|
|
|
srcJar := android.PathForModuleGen(ctx, "R.jar")
|
|
|
|
proguardOptionsFile := android.PathForModuleGen(ctx, "proguard.options")
|
2018-03-28 23:58:31 +02:00
|
|
|
rTxt := android.PathForModuleOut(ctx, "R.txt")
|
2018-05-02 21:58:28 +02:00
|
|
|
a.extraAaptPackagesFile = android.PathForModuleOut(ctx, "extra_packages")
|
2018-02-21 02:22:23 +01:00
|
|
|
|
|
|
|
var linkDeps android.Paths
|
|
|
|
|
|
|
|
linkFlags := []string{
|
|
|
|
"--static-lib",
|
|
|
|
"--no-static-lib-packages",
|
|
|
|
"--auto-add-overlay",
|
|
|
|
}
|
|
|
|
|
2018-05-23 19:59:28 +02:00
|
|
|
linkFlags = append(linkFlags, "--manifest "+a.manifest.String())
|
|
|
|
linkDeps = append(linkDeps, a.manifest)
|
2018-02-21 02:22:23 +01:00
|
|
|
|
2018-05-25 01:11:20 +02:00
|
|
|
transitiveStaticLibs, staticLibManifests, libDeps, libFlags := aaptLibs(ctx, sdkContext(a))
|
|
|
|
|
|
|
|
_ = staticLibManifests
|
2018-02-21 02:22:23 +01:00
|
|
|
|
2018-03-28 23:58:31 +02:00
|
|
|
linkDeps = append(linkDeps, libDeps...)
|
|
|
|
linkFlags = append(linkFlags, libFlags...)
|
2018-02-21 02:22:23 +01:00
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
overlayRes := append(android.Paths{flata}, transitiveStaticLibs...)
|
2018-02-21 02:22:23 +01:00
|
|
|
|
2018-05-02 21:58:28 +02:00
|
|
|
aapt2Link(ctx, a.exportPackage, srcJar, proguardOptionsFile, rTxt, a.extraAaptPackagesFile,
|
2018-03-28 23:58:31 +02:00
|
|
|
linkFlags, linkDeps, nil, overlayRes)
|
2018-02-21 02:22:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var _ Dependency = (*AARImport)(nil)
|
|
|
|
|
|
|
|
func (a *AARImport) HeaderJars() android.Paths {
|
|
|
|
return android.Paths{a.classpathFile}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AARImport) ImplementationJars() android.Paths {
|
|
|
|
return android.Paths{a.classpathFile}
|
|
|
|
}
|
|
|
|
|
2018-08-16 05:40:52 +02:00
|
|
|
func (a *AARImport) ResourceJars() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a *AARImport) ImplementationAndResourcesJars() android.Paths {
|
|
|
|
return android.Paths{a.classpathFile}
|
|
|
|
}
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
func (a *AARImport) AidlIncludeDirs() android.Paths {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-05-28 11:02:19 +02:00
|
|
|
func (a *AARImport) ExportedSdkLibs() []string {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-21 02:22:23 +01:00
|
|
|
var _ android.PrebuiltInterface = (*Import)(nil)
|
|
|
|
|
|
|
|
func AARImportFactory() android.Module {
|
|
|
|
module := &AARImport{}
|
|
|
|
|
|
|
|
module.AddProperties(&module.properties)
|
|
|
|
|
|
|
|
android.InitPrebuiltModule(module, &module.properties.Aars)
|
2018-10-02 22:53:33 +02:00
|
|
|
InitJavaModule(module, android.DeviceSupported)
|
2018-02-21 02:22:23 +01:00
|
|
|
return module
|
|
|
|
}
|