2015-01-31 02:27:36 +01:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
package android
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
import (
|
2015-12-18 01:39:19 +01:00
|
|
|
"fmt"
|
2019-01-17 22:57:45 +01:00
|
|
|
"path"
|
2015-01-31 02:27:36 +01:00
|
|
|
"path/filepath"
|
2015-12-18 01:39:19 +01:00
|
|
|
"strings"
|
2017-11-29 09:27:14 +01:00
|
|
|
"text/scanner"
|
2015-03-24 19:13:38 +01:00
|
|
|
|
|
|
|
"github.com/google/blueprint"
|
2016-11-01 19:10:25 +01:00
|
|
|
"github.com/google/blueprint/pathtools"
|
2018-09-12 19:02:13 +02:00
|
|
|
"github.com/google/blueprint/proptools"
|
2015-01-31 02:27:36 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
DeviceSharedLibrary = "shared_library"
|
|
|
|
DeviceStaticLibrary = "static_library"
|
|
|
|
DeviceExecutable = "executable"
|
|
|
|
HostSharedLibrary = "host_shared_library"
|
|
|
|
HostStaticLibrary = "host_static_library"
|
|
|
|
HostExecutable = "host_executable"
|
|
|
|
)
|
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
type BuildParams struct {
|
2016-11-03 22:28:31 +01:00
|
|
|
Rule blueprint.Rule
|
2016-11-22 02:23:08 +01:00
|
|
|
Deps blueprint.Deps
|
|
|
|
Depfile WritablePath
|
2017-05-09 22:45:28 +02:00
|
|
|
Description string
|
2016-11-03 22:28:31 +01:00
|
|
|
Output WritablePath
|
|
|
|
Outputs WritablePaths
|
|
|
|
ImplicitOutput WritablePath
|
|
|
|
ImplicitOutputs WritablePaths
|
|
|
|
Input Path
|
|
|
|
Inputs Paths
|
|
|
|
Implicit Path
|
|
|
|
Implicits Paths
|
|
|
|
OrderOnly Paths
|
|
|
|
Default bool
|
|
|
|
Args map[string]string
|
2015-09-24 00:26:20 +02:00
|
|
|
}
|
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
type ModuleBuildParams BuildParams
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
// BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns
|
2019-06-07 01:13:11 +02:00
|
|
|
// a Config instead of an interface{}, and some methods have been wrapped to use an android.Module
|
|
|
|
// instead of a blueprint.Module, plus some extra methods that return Android-specific information
|
2019-06-06 23:33:29 +02:00
|
|
|
// about the current module.
|
|
|
|
type BaseModuleContext interface {
|
2019-06-07 01:13:11 +02:00
|
|
|
Module() Module
|
2019-06-06 23:33:29 +02:00
|
|
|
ModuleName() string
|
|
|
|
ModuleDir() string
|
|
|
|
ModuleType() string
|
|
|
|
Config() Config
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
OtherModuleName(m blueprint.Module) string
|
|
|
|
OtherModuleDir(m blueprint.Module) string
|
|
|
|
OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{})
|
|
|
|
OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag
|
|
|
|
OtherModuleExists(name string) bool
|
2019-08-09 13:39:45 +02:00
|
|
|
OtherModuleType(m blueprint.Module) string
|
2019-06-07 01:13:11 +02:00
|
|
|
|
|
|
|
GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module
|
|
|
|
GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module
|
|
|
|
GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag)
|
|
|
|
|
|
|
|
VisitDirectDepsBlueprint(visit func(blueprint.Module))
|
|
|
|
VisitDirectDeps(visit func(Module))
|
|
|
|
VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module))
|
|
|
|
VisitDirectDepsIf(pred func(Module) bool, visit func(Module))
|
|
|
|
// Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
|
|
|
|
VisitDepsDepthFirst(visit func(Module))
|
|
|
|
// Deprecated: use WalkDeps instead to support multiple dependency tags on the same module
|
|
|
|
VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module))
|
|
|
|
WalkDeps(visit func(Module, Module) bool)
|
|
|
|
WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool)
|
|
|
|
// GetWalkPath is supposed to be called in visit function passed in WalkDeps()
|
|
|
|
// and returns a top-down dependency path from a start module to current child module.
|
|
|
|
GetWalkPath() []Module
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
ContainsProperty(name string) bool
|
|
|
|
Errorf(pos scanner.Position, fmt string, args ...interface{})
|
|
|
|
ModuleErrorf(fmt string, args ...interface{})
|
|
|
|
PropertyErrorf(property, fmt string, args ...interface{})
|
|
|
|
Failed() bool
|
|
|
|
|
|
|
|
// GlobWithDeps returns a list of files that match the specified pattern but do not match any
|
|
|
|
// of the patterns in excludes. It also adds efficient dependencies to rerun the primary
|
|
|
|
// builder whenever a file matching the pattern as added or removed, without rerunning if a
|
|
|
|
// file that does not match the pattern is added to a searched directory.
|
|
|
|
GlobWithDeps(pattern string, excludes []string) ([]string, error)
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
Glob(globPattern string, excludes []string) Paths
|
|
|
|
GlobFiles(globPattern string, excludes []string) Paths
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
Fs() pathtools.FileSystem
|
|
|
|
AddNinjaFileDeps(deps ...string)
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
AddMissingDependencies(missingDeps []string)
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
Target() Target
|
2016-09-13 18:59:14 +02:00
|
|
|
TargetPrimary() bool
|
2018-10-03 07:01:37 +02:00
|
|
|
MultiTargets() []Target
|
2015-03-24 19:13:38 +01:00
|
|
|
Arch() Arch
|
2016-06-02 02:09:44 +02:00
|
|
|
Os() OsType
|
2015-03-24 19:13:38 +01:00
|
|
|
Host() bool
|
|
|
|
Device() bool
|
2015-05-01 01:36:18 +02:00
|
|
|
Darwin() bool
|
2019-01-16 21:06:11 +01:00
|
|
|
Fuchsia() bool
|
2017-04-04 21:59:48 +02:00
|
|
|
Windows() bool
|
2015-03-24 19:13:38 +01:00
|
|
|
Debug() bool
|
2016-08-25 00:25:47 +02:00
|
|
|
PrimaryArch() bool
|
2017-11-08 08:03:48 +01:00
|
|
|
Platform() bool
|
|
|
|
DeviceSpecific() bool
|
|
|
|
SocSpecific() bool
|
|
|
|
ProductSpecific() bool
|
2019-06-25 09:47:17 +02:00
|
|
|
SystemExtSpecific() bool
|
2015-04-08 02:11:30 +02:00
|
|
|
AConfig() Config
|
2016-08-18 00:24:12 +02:00
|
|
|
DeviceConfig() DeviceConfig
|
2015-03-24 19:13:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
// Deprecated: use BaseModuleContext instead
|
2016-05-19 00:37:25 +02:00
|
|
|
type BaseContext interface {
|
2017-11-29 09:27:14 +01:00
|
|
|
BaseModuleContext
|
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type ModuleContext interface {
|
2017-11-29 09:27:14 +01:00
|
|
|
BaseModuleContext
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
// Deprecated: use ModuleContext.Build instead.
|
2017-11-29 02:34:01 +01:00
|
|
|
ModuleBuild(pctx PackageContext, params ModuleBuildParams)
|
2015-09-24 00:26:20 +02:00
|
|
|
|
|
|
|
ExpandSources(srcFiles, excludes []string) Paths
|
2017-12-12 01:29:02 +01:00
|
|
|
ExpandSource(srcFile, prop string) Path
|
2018-02-06 23:40:13 +01:00
|
|
|
ExpandOptionalSource(srcFile *string, prop string) OptionalPath
|
2015-06-18 00:09:06 +02:00
|
|
|
|
2017-08-31 21:29:17 +02:00
|
|
|
InstallExecutable(installPath OutputPath, name string, srcPath Path, deps ...Path) OutputPath
|
|
|
|
InstallFile(installPath OutputPath, name string, srcPath Path, deps ...Path) OutputPath
|
2016-01-11 21:49:11 +01:00
|
|
|
InstallSymlink(installPath OutputPath, name string, srcPath OutputPath) OutputPath
|
2019-02-25 03:05:47 +01:00
|
|
|
InstallAbsoluteSymlink(installPath OutputPath, name string, absPath string) OutputPath
|
2015-09-24 00:26:20 +02:00
|
|
|
CheckbuildFile(srcPath Path)
|
2016-03-11 03:14:25 +01:00
|
|
|
|
2016-08-03 20:57:50 +02:00
|
|
|
InstallInData() bool
|
2019-09-11 19:25:18 +02:00
|
|
|
InstallInTestcases() bool
|
2017-03-30 07:00:18 +02:00
|
|
|
InstallInSanitizerDir() bool
|
2018-01-31 16:54:12 +01:00
|
|
|
InstallInRecovery() bool
|
2019-10-02 20:10:58 +02:00
|
|
|
InstallInRoot() bool
|
2019-07-30 01:44:46 +02:00
|
|
|
InstallBypassMake() bool
|
2017-02-05 02:47:46 +01:00
|
|
|
|
|
|
|
RequiredModuleNames() []string
|
2019-04-02 03:37:36 +02:00
|
|
|
HostRequiredModuleNames() []string
|
|
|
|
TargetRequiredModuleNames() []string
|
2017-10-24 02:10:29 +02:00
|
|
|
|
|
|
|
ModuleSubDir() string
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
Variable(pctx PackageContext, name, value string)
|
|
|
|
Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule
|
2017-10-24 02:16:14 +02:00
|
|
|
// Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string,
|
|
|
|
// and performs more verification.
|
2017-11-29 02:34:01 +01:00
|
|
|
Build(pctx PackageContext, params BuildParams)
|
2017-10-24 02:10:29 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
PrimaryModule() Module
|
|
|
|
FinalModule() Module
|
|
|
|
VisitAllModuleVariants(visit func(Module))
|
2017-10-24 02:10:29 +02:00
|
|
|
|
|
|
|
GetMissingDependencies() []string
|
2017-11-30 01:47:17 +01:00
|
|
|
Namespace() blueprint.Namespace
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
type Module interface {
|
2015-01-31 02:27:36 +01:00
|
|
|
blueprint.Module
|
|
|
|
|
2017-09-28 02:01:44 +02:00
|
|
|
// GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions,
|
|
|
|
// but GenerateAndroidBuildActions also has access to Android-specific information.
|
|
|
|
// For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go
|
2016-05-19 00:37:25 +02:00
|
|
|
GenerateAndroidBuildActions(ModuleContext)
|
2017-09-28 02:01:44 +02:00
|
|
|
|
2016-10-12 23:38:15 +02:00
|
|
|
DepsMutator(BottomUpMutatorContext)
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2016-05-19 00:37:25 +02:00
|
|
|
base() *ModuleBase
|
2015-12-01 01:06:01 +01:00
|
|
|
Enabled() bool
|
2016-06-02 02:09:44 +02:00
|
|
|
Target() Target
|
2015-12-21 23:55:28 +01:00
|
|
|
InstallInData() bool
|
2019-09-11 19:25:18 +02:00
|
|
|
InstallInTestcases() bool
|
2017-03-30 07:00:18 +02:00
|
|
|
InstallInSanitizerDir() bool
|
2018-01-31 16:54:12 +01:00
|
|
|
InstallInRecovery() bool
|
2019-10-02 20:10:58 +02:00
|
|
|
InstallInRoot() bool
|
2019-07-30 01:44:46 +02:00
|
|
|
InstallBypassMake() bool
|
2016-11-30 00:16:18 +01:00
|
|
|
SkipInstall()
|
Allow platform modules to link to vendor public libraries
Normally, when building with VNDK, platform modules are not allowed to
link against vendor libraries, because the ABI of the vendor libraries
are not guaranteed to be stable and may differ across multiple vendor
images.
However, the vendor public libraries are the exceptions. Vendor public
libraries are vendor libraries that are exposed to 3rd party apps and
listed in /vendor/etc/public.libraries.txt. Since they are intended to
be exposed to public, their ABI stability is guaranteed (by definition,
though it is up to the vendor to actually guarantee it).
This change provides a way to make a vendor lib as public by defining a
module of type 'vendor_public_library' with a map file that enumerates
public symbols that are publicized:
cc_library {
name: "libvendor",
proprietary: true,
...
}
vendor_public_library {
name: "libvendor",
symbol_file: "libvendor.map.txt",
}
This defines a stub library module named libvendor.vendorpublic from the
map file. `shared_libs: ["libvendor"]` is redirected to the stub library
when it is from the outside of the vendor partition.
Bug: 74275385
Test: m -j
Test: cc_test.go passes
Change-Id: I5bed94d7c4282b777632ab2f0fb63c203ee313ba
2018-03-19 10:23:01 +01:00
|
|
|
ExportedToMake() bool
|
2019-03-18 04:01:38 +01:00
|
|
|
NoticeFile() OptionalPath
|
2017-06-24 00:06:31 +02:00
|
|
|
|
|
|
|
AddProperties(props ...interface{})
|
|
|
|
GetProperties() []interface{}
|
2017-07-13 23:43:27 +02:00
|
|
|
|
2017-10-24 02:16:14 +02:00
|
|
|
BuildParamsForTests() []BuildParams
|
2019-02-25 23:54:28 +01:00
|
|
|
RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams
|
2018-12-12 18:01:34 +01:00
|
|
|
VariablesForTests() map[string]string
|
2019-05-31 15:00:04 +02:00
|
|
|
|
2019-07-02 00:32:45 +02:00
|
|
|
// String returns a string that includes the module name and variants for printing during debugging.
|
|
|
|
String() string
|
|
|
|
|
2019-05-31 15:00:04 +02:00
|
|
|
// Get the qualified module id for this module.
|
|
|
|
qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName
|
|
|
|
|
|
|
|
// Get information about the properties that can contain visibility rules.
|
|
|
|
visibilityProperties() []visibilityProperty
|
Refactor visibility to support visibility on defaults modules
Existing modules, either general one or package ones have a single
visibility property, called visibility in general, and
default_visibility on package, that controls access to that module, or
in the case of package sets the default visibility of all modules in
that package. The property is checked and gathered during the similarly
named phases of visibility processing.
The defaults module will be different as it will have two properties.
The first, visibility, will not affect the visibility of the module, it
only affects the visibility of modules that 'extend' the defaults. So,
it will need checking but not parsing. The second property,
defaults_visibility, will affect the visibility of the module and so
will need both checking and parsing.
The current implementation does not handle those cases because:
1) It does not differentiate between the property that affects the
module and those that do not. It checks and gathers all of them with
the last property gathered overriding the rules for the previous
properties.
2) It relies on overriding methods in MethodBase in order to change the
default behavior for the package module. That works because
packageModule embeds ModuleBase but will not work for
DefaultsModuleBase as it does not embed ModuleBase and instead is
embedded alongside it so attempting to override a method in
MethodBase leads to ambiguity.
This change addresses the issues as follows:
1) It adds a new visibility() []string method to get access to the
primary visibility rules, i.e. the ones that affect the module.
2) It adds two fields, 'visibilityPropertyInfo []visibilityProperty'
to provide information about all the properties that need checking,
and 'primaryVisibilityProperty visibilityProperty' to specify the
property that affects the module.
The PackageFactory() and InitAndroidModule(Module) functions are
modified to initialize the fields. The override of the
visibilityProperties() method for packageModule is removed and the
default implementations of visibilityProperties() and visibility()
on ModuleBase return information from the two new fields.
The InitDefaultsModule is updated to also initialize the two new
fields. It uses nil for primaryVisibilityProperty for now but that
will be changed to return defaults_visibility. It also uses the
commonProperties structure created for the defaults directly instead
of having to search for it through properties().
Changed the visibilityProperty to take a pointer to the property that
can be used to retrieve the value rather than a lambda function.
Bug: 130796911
Test: m nothing
Change-Id: Icadd470a5f692a48ec61de02bf3dfde3e2eea2ef
2019-07-24 15:24:38 +02:00
|
|
|
|
|
|
|
// Get the visibility rules that control the visibility of this module.
|
|
|
|
visibility() []string
|
2019-05-31 15:00:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Qualified id for a module
|
|
|
|
type qualifiedModuleName struct {
|
|
|
|
// The package (i.e. directory) in which the module is defined, without trailing /
|
|
|
|
pkg string
|
|
|
|
|
|
|
|
// The name of the module, empty string if package.
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (q qualifiedModuleName) String() string {
|
|
|
|
if q.name == "" {
|
|
|
|
return "//" + q.pkg
|
|
|
|
}
|
|
|
|
return "//" + q.pkg + ":" + q.name
|
|
|
|
}
|
|
|
|
|
2019-06-20 17:38:08 +02:00
|
|
|
func (q qualifiedModuleName) isRootPackage() bool {
|
|
|
|
return q.pkg == "" && q.name == ""
|
|
|
|
}
|
|
|
|
|
2019-05-31 15:00:04 +02:00
|
|
|
// Get the id for the package containing this module.
|
|
|
|
func (q qualifiedModuleName) getContainingPackageId() qualifiedModuleName {
|
|
|
|
pkg := q.pkg
|
|
|
|
if q.name == "" {
|
2019-06-20 17:38:08 +02:00
|
|
|
if pkg == "" {
|
|
|
|
panic(fmt.Errorf("Cannot get containing package id of root package"))
|
|
|
|
}
|
|
|
|
|
|
|
|
index := strings.LastIndex(pkg, "/")
|
|
|
|
if index == -1 {
|
|
|
|
pkg = ""
|
|
|
|
} else {
|
|
|
|
pkg = pkg[:index]
|
|
|
|
}
|
2019-05-31 15:00:04 +02:00
|
|
|
}
|
|
|
|
return newPackageId(pkg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func newPackageId(pkg string) qualifiedModuleName {
|
|
|
|
// A qualified id for a package module has no name.
|
|
|
|
return qualifiedModuleName{pkg: pkg, name: ""}
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2016-05-18 01:34:16 +02:00
|
|
|
type nameProperties struct {
|
|
|
|
// The name of the module. Must be unique across all modules.
|
2017-11-07 19:57:05 +01:00
|
|
|
Name *string
|
2016-05-18 01:34:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
type commonProperties struct {
|
2015-12-01 01:06:01 +01:00
|
|
|
// emit build rules for this module
|
|
|
|
Enabled *bool `android:"arch_variant"`
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2019-03-28 15:10:57 +01:00
|
|
|
// Controls the visibility of this module to other modules. Allowable values are one or more of
|
|
|
|
// these formats:
|
|
|
|
//
|
|
|
|
// ["//visibility:public"]: Anyone can use this module.
|
|
|
|
// ["//visibility:private"]: Only rules in the module's package (not its subpackages) can use
|
|
|
|
// this module.
|
|
|
|
// ["//some/package:__pkg__", "//other/package:__pkg__"]: Only modules in some/package and
|
|
|
|
// other/package (defined in some/package/*.bp and other/package/*.bp) have access to
|
|
|
|
// this module. Note that sub-packages do not have access to the rule; for example,
|
|
|
|
// //some/package/foo:bar or //other/package/testing:bla wouldn't have access. __pkg__
|
|
|
|
// is a special module and must be used verbatim. It represents all of the modules in the
|
|
|
|
// package.
|
|
|
|
// ["//project:__subpackages__", "//other:__subpackages__"]: Only modules in packages project
|
|
|
|
// or other or in one of their sub-packages have access to this module. For example,
|
|
|
|
// //project:rule, //project/library:lib or //other/testing/internal:munge are allowed
|
|
|
|
// to depend on this rule (but not //independent:evil)
|
|
|
|
// ["//project"]: This is shorthand for ["//project:__pkg__"]
|
|
|
|
// [":__subpackages__"]: This is shorthand for ["//project:__subpackages__"] where
|
|
|
|
// //project is the module's package. e.g. using [":__subpackages__"] in
|
|
|
|
// packages/apps/Settings/Android.bp is equivalent to
|
|
|
|
// //packages/apps/Settings:__subpackages__.
|
|
|
|
// ["//visibility:legacy_public"]: The default visibility, behaves as //visibility:public
|
|
|
|
// for now. It is an error if it is used in a module.
|
2019-05-31 15:00:04 +02:00
|
|
|
//
|
|
|
|
// If a module does not specify the `visibility` property then it uses the
|
|
|
|
// `default_visibility` property of the `package` module in the module's package.
|
|
|
|
//
|
2019-06-20 17:38:08 +02:00
|
|
|
// If a module does not specify the `visibility` property then it uses the
|
|
|
|
// `default_visibility` property of the `package` module in the module's package.
|
|
|
|
//
|
2019-05-31 15:00:04 +02:00
|
|
|
// If the `default_visibility` property is not set for the module's package then
|
2019-06-20 17:38:08 +02:00
|
|
|
// it will use the `default_visibility` of its closest ancestor package for which
|
|
|
|
// a `default_visibility` property is specified.
|
|
|
|
//
|
|
|
|
// If no `default_visibility` property can be found then the module uses the
|
|
|
|
// global default of `//visibility:legacy_public`.
|
2019-05-31 15:00:04 +02:00
|
|
|
//
|
2019-07-24 14:45:05 +02:00
|
|
|
// The `visibility` property has no effect on a defaults module although it does
|
|
|
|
// apply to any non-defaults module that uses it. To set the visibility of a
|
|
|
|
// defaults module, use the `defaults_visibility` property on the defaults module;
|
|
|
|
// not to be confused with the `default_visibility` property on the package module.
|
|
|
|
//
|
2019-03-28 15:10:57 +01:00
|
|
|
// See https://android.googlesource.com/platform/build/soong/+/master/README.md#visibility for
|
|
|
|
// more details.
|
|
|
|
Visibility []string
|
|
|
|
|
2015-05-11 22:39:40 +02:00
|
|
|
// control whether this module compiles for 32-bit, 64-bit, or both. Possible values
|
2015-01-31 02:27:36 +01:00
|
|
|
// are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both
|
|
|
|
// architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit
|
|
|
|
// platform
|
2017-11-01 18:38:29 +01:00
|
|
|
Compile_multilib *string `android:"arch_variant"`
|
2016-09-06 19:39:07 +02:00
|
|
|
|
|
|
|
Target struct {
|
|
|
|
Host struct {
|
2017-11-01 18:38:29 +01:00
|
|
|
Compile_multilib *string
|
2016-09-06 19:39:07 +02:00
|
|
|
}
|
|
|
|
Android struct {
|
2017-11-01 18:38:29 +01:00
|
|
|
Compile_multilib *string
|
2016-09-06 19:39:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 07:01:37 +02:00
|
|
|
UseTargetVariants bool `blueprint:"mutated"`
|
|
|
|
Default_multilib string `blueprint:"mutated"`
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2015-12-21 23:55:28 +01:00
|
|
|
// whether this is a proprietary vendor module, and should be installed into /vendor
|
2017-11-01 18:38:29 +01:00
|
|
|
Proprietary *bool
|
2015-12-21 23:55:28 +01:00
|
|
|
|
2017-03-20 21:23:34 +01:00
|
|
|
// vendor who owns this module
|
2017-07-19 04:42:09 +02:00
|
|
|
Owner *string
|
2017-03-20 21:23:34 +01:00
|
|
|
|
2017-11-08 08:03:48 +01:00
|
|
|
// whether this module is specific to an SoC (System-On-a-Chip). When set to true,
|
|
|
|
// it is installed into /vendor (or /system/vendor if vendor partition does not exist).
|
|
|
|
// Use `soc_specific` instead for better meaning.
|
2017-11-01 18:38:29 +01:00
|
|
|
Vendor *bool
|
2017-04-06 21:49:58 +02:00
|
|
|
|
2017-11-08 08:03:48 +01:00
|
|
|
// whether this module is specific to an SoC (System-On-a-Chip). When set to true,
|
|
|
|
// it is installed into /vendor (or /system/vendor if vendor partition does not exist).
|
|
|
|
Soc_specific *bool
|
|
|
|
|
|
|
|
// whether this module is specific to a device, not only for SoC, but also for off-chip
|
|
|
|
// peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition
|
|
|
|
// does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist).
|
|
|
|
// This implies `soc_specific:true`.
|
|
|
|
Device_specific *bool
|
|
|
|
|
|
|
|
// whether this module is specific to a software configuration of a product (e.g. country,
|
2018-01-10 11:00:15 +01:00
|
|
|
// network operator, etc). When set to true, it is installed into /product (or
|
|
|
|
// /system/product if product partition does not exist).
|
2017-11-08 08:03:48 +01:00
|
|
|
Product_specific *bool
|
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
// TODO(b/135957588) Product_services_specific will be removed once we clear all Android.bp
|
|
|
|
// files that have 'product_services_specific: true'. This will be converted to
|
|
|
|
// Product_speicific as a workaround.
|
2018-08-17 01:57:57 +02:00
|
|
|
Product_services_specific *bool
|
2018-05-29 14:28:54 +02:00
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
// whether this module extends system. When set to true, it is installed into /system_ext
|
|
|
|
// (or /system/system_ext if system_ext partition does not exist).
|
|
|
|
System_ext_specific *bool
|
|
|
|
|
2018-01-31 16:54:12 +01:00
|
|
|
// Whether this module is installed to recovery partition
|
|
|
|
Recovery *bool
|
|
|
|
|
2019-03-26 12:39:31 +01:00
|
|
|
// Whether this module is built for non-native architecures (also known as native bridge binary)
|
|
|
|
Native_bridge_supported *bool `android:"arch_variant"`
|
|
|
|
|
2016-07-26 05:27:39 +02:00
|
|
|
// init.rc files to be installed if this module is installed
|
2019-03-05 07:35:41 +01:00
|
|
|
Init_rc []string `android:"path"`
|
2016-07-26 05:27:39 +02:00
|
|
|
|
2018-04-05 00:42:19 +02:00
|
|
|
// VINTF manifest fragments to be installed if this module is installed
|
2019-03-05 07:35:41 +01:00
|
|
|
Vintf_fragments []string `android:"path"`
|
2018-04-05 00:42:19 +02:00
|
|
|
|
2016-08-15 20:47:23 +02:00
|
|
|
// names of other modules to install if this module is installed
|
2017-05-05 22:36:36 +02:00
|
|
|
Required []string `android:"arch_variant"`
|
2016-08-15 20:47:23 +02:00
|
|
|
|
2019-04-02 03:37:36 +02:00
|
|
|
// names of other modules to install on host if this module is installed
|
|
|
|
Host_required []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// names of other modules to install on target if this module is installed
|
|
|
|
Target_required []string `android:"arch_variant"`
|
|
|
|
|
2017-09-01 00:07:09 +02:00
|
|
|
// relative path to a file to include in the list of notices for the device
|
2019-03-05 07:35:41 +01:00
|
|
|
Notice *string `android:"path"`
|
2017-09-01 00:07:09 +02:00
|
|
|
|
2018-11-19 18:33:29 +01:00
|
|
|
Dist struct {
|
|
|
|
// copy the output of this module to the $DIST_DIR when `dist` is specified on the
|
|
|
|
// command line and any of these targets are also on the command line, or otherwise
|
|
|
|
// built
|
|
|
|
Targets []string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// The name of the output artifact. This defaults to the basename of the output of
|
|
|
|
// the module.
|
|
|
|
Dest *string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// The directory within the dist directory to store the artifact. Defaults to the
|
|
|
|
// top level directory ("").
|
|
|
|
Dir *string `android:"arch_variant"`
|
|
|
|
|
|
|
|
// A suffix to add to the artifact file name (before any extension).
|
|
|
|
Suffix *string `android:"arch_variant"`
|
|
|
|
} `android:"arch_variant"`
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
// Set by TargetMutator
|
2018-10-03 07:01:37 +02:00
|
|
|
CompileTarget Target `blueprint:"mutated"`
|
|
|
|
CompileMultiTargets []Target `blueprint:"mutated"`
|
|
|
|
CompilePrimary bool `blueprint:"mutated"`
|
2015-01-31 02:27:36 +01:00
|
|
|
|
|
|
|
// Set by InitAndroidModule
|
|
|
|
HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
|
2016-10-05 00:13:37 +02:00
|
|
|
ArchSpecific bool `blueprint:"mutated"`
|
2016-10-07 01:12:58 +02:00
|
|
|
|
|
|
|
SkipInstall bool `blueprint:"mutated"`
|
2017-11-30 01:47:17 +01:00
|
|
|
|
|
|
|
NamespaceExportedToMake bool `blueprint:"mutated"`
|
2019-06-07 00:41:36 +02:00
|
|
|
|
|
|
|
MissingDeps []string `blueprint:"mutated"`
|
2019-07-02 00:32:45 +02:00
|
|
|
|
|
|
|
// Name and variant strings stored by mutators to enable Module.String()
|
|
|
|
DebugName string `blueprint:"mutated"`
|
|
|
|
DebugMutators []string `blueprint:"mutated"`
|
|
|
|
DebugVariations []string `blueprint:"mutated"`
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type hostAndDeviceProperties struct {
|
2018-11-09 19:36:55 +01:00
|
|
|
// If set to true, build a variant of the module for the host. Defaults to false.
|
|
|
|
Host_supported *bool
|
|
|
|
|
|
|
|
// If set to true, build a variant of the module for the device. Defaults to true.
|
2016-07-12 22:11:25 +02:00
|
|
|
Device_supported *bool
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2015-03-17 23:06:21 +01:00
|
|
|
type Multilib string
|
|
|
|
|
|
|
|
const (
|
2017-12-05 22:42:45 +01:00
|
|
|
MultilibBoth Multilib = "both"
|
|
|
|
MultilibFirst Multilib = "first"
|
|
|
|
MultilibCommon Multilib = "common"
|
|
|
|
MultilibCommonFirst Multilib = "common_first"
|
|
|
|
MultilibDefault Multilib = ""
|
2015-03-17 23:06:21 +01:00
|
|
|
)
|
|
|
|
|
2016-06-02 02:09:44 +02:00
|
|
|
type HostOrDeviceSupported int
|
|
|
|
|
|
|
|
const (
|
|
|
|
_ HostOrDeviceSupported = iota
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Host and HostCross are built by default. Device is not supported.
|
2016-06-02 02:09:44 +02:00
|
|
|
HostSupported
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Host is built by default. HostCross and Device are not supported.
|
2016-10-20 10:36:11 +02:00
|
|
|
HostSupportedNoCross
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Device is built by default. Host and HostCross are not supported.
|
2016-06-02 02:09:44 +02:00
|
|
|
DeviceSupported
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Device is built by default. Host and HostCross are supported.
|
2016-06-02 02:09:44 +02:00
|
|
|
HostAndDeviceSupported
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Host, HostCross, and Device are built by default.
|
2016-06-02 02:09:44 +02:00
|
|
|
HostAndDeviceDefault
|
2018-08-02 22:46:35 +02:00
|
|
|
|
|
|
|
// Nothing is supported. This is not exposed to the user, but used to mark a
|
|
|
|
// host only module as unsupported when the module type is not supported on
|
|
|
|
// the host OS. E.g. benchmarks are supported on Linux but not Darwin.
|
2016-10-05 00:13:37 +02:00
|
|
|
NeitherHostNorDeviceSupported
|
2016-06-02 02:09:44 +02:00
|
|
|
)
|
|
|
|
|
2017-11-08 08:03:48 +01:00
|
|
|
type moduleKind int
|
|
|
|
|
|
|
|
const (
|
|
|
|
platformModule moduleKind = iota
|
|
|
|
deviceSpecificModule
|
|
|
|
socSpecificModule
|
|
|
|
productSpecificModule
|
2019-06-25 09:47:17 +02:00
|
|
|
systemExtSpecificModule
|
2017-11-08 08:03:48 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (k moduleKind) String() string {
|
|
|
|
switch k {
|
|
|
|
case platformModule:
|
|
|
|
return "platform"
|
|
|
|
case deviceSpecificModule:
|
|
|
|
return "device-specific"
|
|
|
|
case socSpecificModule:
|
|
|
|
return "soc-specific"
|
|
|
|
case productSpecificModule:
|
|
|
|
return "product-specific"
|
2019-06-25 09:47:17 +02:00
|
|
|
case systemExtSpecificModule:
|
|
|
|
return "systemext-specific"
|
2017-11-08 08:03:48 +01:00
|
|
|
default:
|
|
|
|
panic(fmt.Errorf("unknown module kind %d", k))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
func InitAndroidModule(m Module) {
|
2015-01-31 02:27:36 +01:00
|
|
|
base := m.base()
|
|
|
|
base.module = m
|
2015-03-18 21:28:46 +01:00
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
m.AddProperties(
|
2016-05-18 01:34:16 +02:00
|
|
|
&base.nameProperties,
|
|
|
|
&base.commonProperties,
|
|
|
|
&base.variableProperties)
|
2019-03-18 20:24:29 +01:00
|
|
|
base.generalProperties = m.GetProperties()
|
2018-04-17 23:58:42 +02:00
|
|
|
base.customizableProperties = m.GetProperties()
|
Refactor visibility to support visibility on defaults modules
Existing modules, either general one or package ones have a single
visibility property, called visibility in general, and
default_visibility on package, that controls access to that module, or
in the case of package sets the default visibility of all modules in
that package. The property is checked and gathered during the similarly
named phases of visibility processing.
The defaults module will be different as it will have two properties.
The first, visibility, will not affect the visibility of the module, it
only affects the visibility of modules that 'extend' the defaults. So,
it will need checking but not parsing. The second property,
defaults_visibility, will affect the visibility of the module and so
will need both checking and parsing.
The current implementation does not handle those cases because:
1) It does not differentiate between the property that affects the
module and those that do not. It checks and gathers all of them with
the last property gathered overriding the rules for the previous
properties.
2) It relies on overriding methods in MethodBase in order to change the
default behavior for the package module. That works because
packageModule embeds ModuleBase but will not work for
DefaultsModuleBase as it does not embed ModuleBase and instead is
embedded alongside it so attempting to override a method in
MethodBase leads to ambiguity.
This change addresses the issues as follows:
1) It adds a new visibility() []string method to get access to the
primary visibility rules, i.e. the ones that affect the module.
2) It adds two fields, 'visibilityPropertyInfo []visibilityProperty'
to provide information about all the properties that need checking,
and 'primaryVisibilityProperty visibilityProperty' to specify the
property that affects the module.
The PackageFactory() and InitAndroidModule(Module) functions are
modified to initialize the fields. The override of the
visibilityProperties() method for packageModule is removed and the
default implementations of visibilityProperties() and visibility()
on ModuleBase return information from the two new fields.
The InitDefaultsModule is updated to also initialize the two new
fields. It uses nil for primaryVisibilityProperty for now but that
will be changed to return defaults_visibility. It also uses the
commonProperties structure created for the defaults directly instead
of having to search for it through properties().
Changed the visibilityProperty to take a pointer to the property that
can be used to retrieve the value rather than a lambda function.
Bug: 130796911
Test: m nothing
Change-Id: Icadd470a5f692a48ec61de02bf3dfde3e2eea2ef
2019-07-24 15:24:38 +02:00
|
|
|
|
|
|
|
// The default_visibility property needs to be checked and parsed by the visibility module during
|
|
|
|
// its checking and parsing phases.
|
|
|
|
base.primaryVisibilityProperty =
|
|
|
|
newVisibilityProperty("visibility", &base.commonProperties.Visibility)
|
|
|
|
base.visibilityPropertyInfo = []visibilityProperty{base.primaryVisibilityProperty}
|
2015-03-18 21:28:46 +01:00
|
|
|
}
|
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
|
|
|
|
InitAndroidModule(m)
|
2015-03-18 21:28:46 +01:00
|
|
|
|
|
|
|
base := m.base()
|
2015-01-31 02:27:36 +01:00
|
|
|
base.commonProperties.HostOrDeviceSupported = hod
|
2016-09-06 19:39:07 +02:00
|
|
|
base.commonProperties.Default_multilib = string(defaultMultilib)
|
2016-10-05 00:13:37 +02:00
|
|
|
base.commonProperties.ArchSpecific = true
|
2018-10-03 07:01:37 +02:00
|
|
|
base.commonProperties.UseTargetVariants = true
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2015-07-09 03:13:11 +02:00
|
|
|
switch hod {
|
2017-07-05 19:35:11 +02:00
|
|
|
case HostAndDeviceSupported, HostAndDeviceDefault:
|
2017-06-24 00:06:31 +02:00
|
|
|
m.AddProperties(&base.hostAndDeviceProperties)
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2017-06-24 00:06:31 +02:00
|
|
|
InitArchModule(m)
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 07:01:37 +02:00
|
|
|
func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) {
|
|
|
|
InitAndroidArchModule(m, hod, defaultMultilib)
|
|
|
|
m.base().commonProperties.UseTargetVariants = false
|
|
|
|
}
|
|
|
|
|
2017-02-02 19:46:07 +01:00
|
|
|
// A ModuleBase object contains the properties that are common to all Android
|
2015-01-31 02:27:36 +01:00
|
|
|
// modules. It should be included as an anonymous field in every module
|
|
|
|
// struct definition. InitAndroidModule should then be called from the module's
|
|
|
|
// factory function, and the return values from InitAndroidModule should be
|
|
|
|
// returned from the factory function.
|
|
|
|
//
|
2017-02-02 19:46:07 +01:00
|
|
|
// The ModuleBase type is responsible for implementing the GenerateBuildActions
|
|
|
|
// method to support the blueprint.Module interface. This method will then call
|
|
|
|
// the module's GenerateAndroidBuildActions method once for each build variant
|
2019-06-06 23:29:25 +02:00
|
|
|
// that is to be built. GenerateAndroidBuildActions is passed a ModuleContext
|
|
|
|
// rather than the usual blueprint.ModuleContext.
|
|
|
|
// ModuleContext exposes extra functionality specific to the Android build
|
2015-01-31 02:27:36 +01:00
|
|
|
// system including details about the particular build variant that is to be
|
|
|
|
// generated.
|
|
|
|
//
|
|
|
|
// For example:
|
|
|
|
//
|
|
|
|
// import (
|
2017-02-02 19:46:07 +01:00
|
|
|
// "android/soong/android"
|
2015-01-31 02:27:36 +01:00
|
|
|
// )
|
|
|
|
//
|
|
|
|
// type myModule struct {
|
2017-02-02 19:46:07 +01:00
|
|
|
// android.ModuleBase
|
2015-01-31 02:27:36 +01:00
|
|
|
// properties struct {
|
|
|
|
// MyProperty string
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//
|
2017-06-24 00:06:31 +02:00
|
|
|
// func NewMyModule() android.Module) {
|
2015-01-31 02:27:36 +01:00
|
|
|
// m := &myModule{}
|
2017-06-24 00:06:31 +02:00
|
|
|
// m.AddProperties(&m.properties)
|
|
|
|
// android.InitAndroidModule(m)
|
|
|
|
// return m
|
2015-01-31 02:27:36 +01:00
|
|
|
// }
|
|
|
|
//
|
2017-02-02 19:46:07 +01:00
|
|
|
// func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
2015-01-31 02:27:36 +01:00
|
|
|
// // Get the CPU architecture for the current build variant.
|
|
|
|
// variantArch := ctx.Arch()
|
|
|
|
//
|
|
|
|
// // ...
|
|
|
|
// }
|
2016-05-19 00:37:25 +02:00
|
|
|
type ModuleBase struct {
|
2015-01-31 02:27:36 +01:00
|
|
|
// Putting the curiously recurring thing pointing to the thing that contains
|
|
|
|
// the thing pattern to good use.
|
2017-06-24 00:06:31 +02:00
|
|
|
// TODO: remove this
|
2016-05-19 00:37:25 +02:00
|
|
|
module Module
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2016-05-18 01:34:16 +02:00
|
|
|
nameProperties nameProperties
|
2015-01-31 02:27:36 +01:00
|
|
|
commonProperties commonProperties
|
2015-07-09 22:57:48 +02:00
|
|
|
variableProperties variableProperties
|
2015-01-31 02:27:36 +01:00
|
|
|
hostAndDeviceProperties hostAndDeviceProperties
|
|
|
|
generalProperties []interface{}
|
2018-10-24 21:42:09 +02:00
|
|
|
archProperties [][]interface{}
|
2016-08-20 01:07:38 +02:00
|
|
|
customizableProperties []interface{}
|
2015-01-31 02:27:36 +01:00
|
|
|
|
Refactor visibility to support visibility on defaults modules
Existing modules, either general one or package ones have a single
visibility property, called visibility in general, and
default_visibility on package, that controls access to that module, or
in the case of package sets the default visibility of all modules in
that package. The property is checked and gathered during the similarly
named phases of visibility processing.
The defaults module will be different as it will have two properties.
The first, visibility, will not affect the visibility of the module, it
only affects the visibility of modules that 'extend' the defaults. So,
it will need checking but not parsing. The second property,
defaults_visibility, will affect the visibility of the module and so
will need both checking and parsing.
The current implementation does not handle those cases because:
1) It does not differentiate between the property that affects the
module and those that do not. It checks and gathers all of them with
the last property gathered overriding the rules for the previous
properties.
2) It relies on overriding methods in MethodBase in order to change the
default behavior for the package module. That works because
packageModule embeds ModuleBase but will not work for
DefaultsModuleBase as it does not embed ModuleBase and instead is
embedded alongside it so attempting to override a method in
MethodBase leads to ambiguity.
This change addresses the issues as follows:
1) It adds a new visibility() []string method to get access to the
primary visibility rules, i.e. the ones that affect the module.
2) It adds two fields, 'visibilityPropertyInfo []visibilityProperty'
to provide information about all the properties that need checking,
and 'primaryVisibilityProperty visibilityProperty' to specify the
property that affects the module.
The PackageFactory() and InitAndroidModule(Module) functions are
modified to initialize the fields. The override of the
visibilityProperties() method for packageModule is removed and the
default implementations of visibilityProperties() and visibility()
on ModuleBase return information from the two new fields.
The InitDefaultsModule is updated to also initialize the two new
fields. It uses nil for primaryVisibilityProperty for now but that
will be changed to return defaults_visibility. It also uses the
commonProperties structure created for the defaults directly instead
of having to search for it through properties().
Changed the visibilityProperty to take a pointer to the property that
can be used to retrieve the value rather than a lambda function.
Bug: 130796911
Test: m nothing
Change-Id: Icadd470a5f692a48ec61de02bf3dfde3e2eea2ef
2019-07-24 15:24:38 +02:00
|
|
|
// Information about all the properties on the module that contains visibility rules that need
|
|
|
|
// checking.
|
|
|
|
visibilityPropertyInfo []visibilityProperty
|
|
|
|
|
|
|
|
// The primary visibility property, may be nil, that controls access to the module.
|
|
|
|
primaryVisibilityProperty visibilityProperty
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
noAddressSanitizer bool
|
2015-09-24 00:26:20 +02:00
|
|
|
installFiles Paths
|
|
|
|
checkbuildFiles Paths
|
2019-03-18 04:01:38 +01:00
|
|
|
noticeFile OptionalPath
|
2015-06-17 01:38:17 +02:00
|
|
|
|
|
|
|
// Used by buildTargetSingleton to create checkbuild and per-directory build targets
|
|
|
|
// Only set on the final variant of each module
|
2017-11-29 02:34:01 +01:00
|
|
|
installTarget WritablePath
|
|
|
|
checkbuildTarget WritablePath
|
2015-06-17 01:38:17 +02:00
|
|
|
blueprintDir string
|
2016-08-20 01:07:38 +02:00
|
|
|
|
2016-09-13 22:42:32 +02:00
|
|
|
hooks hooks
|
2017-06-24 00:06:31 +02:00
|
|
|
|
|
|
|
registerProps []interface{}
|
2017-07-13 23:43:27 +02:00
|
|
|
|
|
|
|
// For tests
|
2017-10-24 02:16:14 +02:00
|
|
|
buildParams []BuildParams
|
2019-02-25 23:54:28 +01:00
|
|
|
ruleParams map[blueprint.Rule]blueprint.RuleParams
|
2018-12-12 18:01:34 +01:00
|
|
|
variables map[string]string
|
2018-10-02 22:59:46 +02:00
|
|
|
|
|
|
|
prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool
|
2017-06-24 00:06:31 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) DepsMutator(BottomUpMutatorContext) {}
|
2019-02-02 01:53:07 +01:00
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) AddProperties(props ...interface{}) {
|
|
|
|
m.registerProps = append(m.registerProps, props...)
|
2017-06-24 00:06:31 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) GetProperties() []interface{} {
|
|
|
|
return m.registerProps
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) BuildParamsForTests() []BuildParams {
|
|
|
|
return m.buildParams
|
2017-07-13 23:43:27 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) RuleParamsForTests() map[blueprint.Rule]blueprint.RuleParams {
|
|
|
|
return m.ruleParams
|
2019-02-25 23:54:28 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) VariablesForTests() map[string]string {
|
|
|
|
return m.variables
|
2018-12-12 18:01:34 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool) {
|
|
|
|
m.prefer32 = prefer32
|
2018-10-02 22:59:46 +02:00
|
|
|
}
|
|
|
|
|
2016-10-07 01:12:58 +02:00
|
|
|
// Name returns the name of the module. It may be overridden by individual module types, for
|
|
|
|
// example prebuilts will prepend prebuilt_ to the name.
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Name() string {
|
|
|
|
return String(m.nameProperties.Name)
|
2016-05-18 01:34:16 +02:00
|
|
|
}
|
|
|
|
|
2019-07-02 00:32:45 +02:00
|
|
|
// String returns a string that includes the module name and variants for printing during debugging.
|
|
|
|
func (m *ModuleBase) String() string {
|
|
|
|
sb := strings.Builder{}
|
|
|
|
sb.WriteString(m.commonProperties.DebugName)
|
|
|
|
sb.WriteString("{")
|
|
|
|
for i := range m.commonProperties.DebugMutators {
|
|
|
|
if i != 0 {
|
|
|
|
sb.WriteString(",")
|
|
|
|
}
|
|
|
|
sb.WriteString(m.commonProperties.DebugMutators[i])
|
|
|
|
sb.WriteString(":")
|
|
|
|
sb.WriteString(m.commonProperties.DebugVariations[i])
|
|
|
|
}
|
|
|
|
sb.WriteString("}")
|
|
|
|
return sb.String()
|
|
|
|
}
|
|
|
|
|
2016-10-07 01:12:58 +02:00
|
|
|
// BaseModuleName returns the name of the module as specified in the blueprints file.
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) BaseModuleName() string {
|
|
|
|
return String(m.nameProperties.Name)
|
2016-10-07 01:12:58 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) base() *ModuleBase {
|
|
|
|
return m
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-05-31 15:00:04 +02:00
|
|
|
func (m *ModuleBase) qualifiedModuleId(ctx BaseModuleContext) qualifiedModuleName {
|
|
|
|
return qualifiedModuleName{pkg: ctx.ModuleDir(), name: ctx.ModuleName()}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ModuleBase) visibilityProperties() []visibilityProperty {
|
Refactor visibility to support visibility on defaults modules
Existing modules, either general one or package ones have a single
visibility property, called visibility in general, and
default_visibility on package, that controls access to that module, or
in the case of package sets the default visibility of all modules in
that package. The property is checked and gathered during the similarly
named phases of visibility processing.
The defaults module will be different as it will have two properties.
The first, visibility, will not affect the visibility of the module, it
only affects the visibility of modules that 'extend' the defaults. So,
it will need checking but not parsing. The second property,
defaults_visibility, will affect the visibility of the module and so
will need both checking and parsing.
The current implementation does not handle those cases because:
1) It does not differentiate between the property that affects the
module and those that do not. It checks and gathers all of them with
the last property gathered overriding the rules for the previous
properties.
2) It relies on overriding methods in MethodBase in order to change the
default behavior for the package module. That works because
packageModule embeds ModuleBase but will not work for
DefaultsModuleBase as it does not embed ModuleBase and instead is
embedded alongside it so attempting to override a method in
MethodBase leads to ambiguity.
This change addresses the issues as follows:
1) It adds a new visibility() []string method to get access to the
primary visibility rules, i.e. the ones that affect the module.
2) It adds two fields, 'visibilityPropertyInfo []visibilityProperty'
to provide information about all the properties that need checking,
and 'primaryVisibilityProperty visibilityProperty' to specify the
property that affects the module.
The PackageFactory() and InitAndroidModule(Module) functions are
modified to initialize the fields. The override of the
visibilityProperties() method for packageModule is removed and the
default implementations of visibilityProperties() and visibility()
on ModuleBase return information from the two new fields.
The InitDefaultsModule is updated to also initialize the two new
fields. It uses nil for primaryVisibilityProperty for now but that
will be changed to return defaults_visibility. It also uses the
commonProperties structure created for the defaults directly instead
of having to search for it through properties().
Changed the visibilityProperty to take a pointer to the property that
can be used to retrieve the value rather than a lambda function.
Bug: 130796911
Test: m nothing
Change-Id: Icadd470a5f692a48ec61de02bf3dfde3e2eea2ef
2019-07-24 15:24:38 +02:00
|
|
|
return m.visibilityPropertyInfo
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *ModuleBase) visibility() []string {
|
|
|
|
// The soong_namespace module does not initialize the primaryVisibilityProperty.
|
|
|
|
if m.primaryVisibilityProperty != nil {
|
|
|
|
return m.primaryVisibilityProperty.getStrings()
|
|
|
|
} else {
|
|
|
|
return nil
|
2019-05-31 15:00:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) SetTarget(target Target, multiTargets []Target, primary bool) {
|
|
|
|
m.commonProperties.CompileTarget = target
|
|
|
|
m.commonProperties.CompileMultiTargets = multiTargets
|
|
|
|
m.commonProperties.CompilePrimary = primary
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Target() Target {
|
|
|
|
return m.commonProperties.CompileTarget
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) TargetPrimary() bool {
|
|
|
|
return m.commonProperties.CompilePrimary
|
2016-09-13 18:59:14 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) MultiTargets() []Target {
|
|
|
|
return m.commonProperties.CompileMultiTargets
|
2018-10-03 07:01:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Os() OsType {
|
|
|
|
return m.Target().Os
|
2015-11-25 02:53:15 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Host() bool {
|
|
|
|
return m.Os().Class == Host || m.Os().Class == HostCross
|
2016-02-10 02:43:51 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Arch() Arch {
|
|
|
|
return m.Target().Arch
|
2016-02-10 02:43:51 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) ArchSpecific() bool {
|
|
|
|
return m.commonProperties.ArchSpecific
|
2016-10-05 00:13:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) OsClassSupported() []OsClass {
|
|
|
|
switch m.commonProperties.HostOrDeviceSupported {
|
2016-06-02 02:09:44 +02:00
|
|
|
case HostSupported:
|
|
|
|
return []OsClass{Host, HostCross}
|
2016-10-20 10:36:11 +02:00
|
|
|
case HostSupportedNoCross:
|
|
|
|
return []OsClass{Host}
|
2016-06-02 02:09:44 +02:00
|
|
|
case DeviceSupported:
|
|
|
|
return []OsClass{Device}
|
2018-08-02 22:46:35 +02:00
|
|
|
case HostAndDeviceSupported, HostAndDeviceDefault:
|
2016-06-02 02:09:44 +02:00
|
|
|
var supported []OsClass
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.hostAndDeviceProperties.Host_supported) ||
|
|
|
|
(m.commonProperties.HostOrDeviceSupported == HostAndDeviceDefault &&
|
|
|
|
m.hostAndDeviceProperties.Host_supported == nil) {
|
2016-06-02 02:09:44 +02:00
|
|
|
supported = append(supported, Host, HostCross)
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if m.hostAndDeviceProperties.Device_supported == nil ||
|
|
|
|
*m.hostAndDeviceProperties.Device_supported {
|
2016-06-02 02:09:44 +02:00
|
|
|
supported = append(supported, Device)
|
|
|
|
}
|
|
|
|
return supported
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) DeviceSupported() bool {
|
|
|
|
return m.commonProperties.HostOrDeviceSupported == DeviceSupported ||
|
|
|
|
m.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported &&
|
|
|
|
(m.hostAndDeviceProperties.Device_supported == nil ||
|
|
|
|
*m.hostAndDeviceProperties.Device_supported)
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Platform() bool {
|
2019-06-25 09:47:17 +02:00
|
|
|
return !m.DeviceSpecific() && !m.SocSpecific() && !m.ProductSpecific() && !m.SystemExtSpecific()
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) DeviceSpecific() bool {
|
|
|
|
return Bool(m.commonProperties.Device_specific)
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) SocSpecific() bool {
|
|
|
|
return Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) ProductSpecific() bool {
|
|
|
|
return Bool(m.commonProperties.Product_specific)
|
2018-04-10 06:07:10 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
func (m *ModuleBase) SystemExtSpecific() bool {
|
|
|
|
return Bool(m.commonProperties.System_ext_specific)
|
2018-05-29 14:28:54 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Enabled() bool {
|
|
|
|
if m.commonProperties.Enabled == nil {
|
|
|
|
return !m.Os().DefaultDisabled
|
2015-11-25 02:53:15 +01:00
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
return *m.commonProperties.Enabled
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) SkipInstall() {
|
|
|
|
m.commonProperties.SkipInstall = true
|
2016-10-07 01:12:58 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) ExportedToMake() bool {
|
|
|
|
return m.commonProperties.NamespaceExportedToMake
|
Allow platform modules to link to vendor public libraries
Normally, when building with VNDK, platform modules are not allowed to
link against vendor libraries, because the ABI of the vendor libraries
are not guaranteed to be stable and may differ across multiple vendor
images.
However, the vendor public libraries are the exceptions. Vendor public
libraries are vendor libraries that are exposed to 3rd party apps and
listed in /vendor/etc/public.libraries.txt. Since they are intended to
be exposed to public, their ABI stability is guaranteed (by definition,
though it is up to the vendor to actually guarantee it).
This change provides a way to make a vendor lib as public by defining a
module of type 'vendor_public_library' with a map file that enumerates
public symbols that are publicized:
cc_library {
name: "libvendor",
proprietary: true,
...
}
vendor_public_library {
name: "libvendor",
symbol_file: "libvendor.map.txt",
}
This defines a stub library module named libvendor.vendorpublic from the
map file. `shared_libs: ["libvendor"]` is redirected to the stub library
when it is from the outside of the vendor partition.
Bug: 74275385
Test: m -j
Test: cc_test.go passes
Change-Id: I5bed94d7c4282b777632ab2f0fb63c203ee313ba
2018-03-19 10:23:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) computeInstallDeps(
|
2015-09-24 00:26:20 +02:00
|
|
|
ctx blueprint.ModuleContext) Paths {
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2015-09-24 00:26:20 +02:00
|
|
|
result := Paths{}
|
2018-06-21 22:03:07 +02:00
|
|
|
// TODO(ccross): we need to use WalkDeps and have some way to know which dependencies require installation
|
2015-01-31 02:27:36 +01:00
|
|
|
ctx.VisitDepsDepthFirstIf(isFileInstaller,
|
|
|
|
func(m blueprint.Module) {
|
|
|
|
fileInstaller := m.(fileInstaller)
|
|
|
|
files := fileInstaller.filesToInstall()
|
|
|
|
result = append(result, files...)
|
|
|
|
})
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) filesToInstall() Paths {
|
|
|
|
return m.installFiles
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) NoAddressSanitizer() bool {
|
|
|
|
return m.noAddressSanitizer
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) InstallInData() bool {
|
2015-12-21 23:55:28 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-09-11 19:25:18 +02:00
|
|
|
func (m *ModuleBase) InstallInTestcases() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) InstallInSanitizerDir() bool {
|
2017-03-30 07:00:18 +02:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) InstallInRecovery() bool {
|
|
|
|
return Bool(m.commonProperties.Recovery)
|
2018-01-31 16:54:12 +01:00
|
|
|
}
|
|
|
|
|
2019-10-02 20:10:58 +02:00
|
|
|
func (m *ModuleBase) InstallInRoot() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-07-30 01:44:46 +02:00
|
|
|
func (m *ModuleBase) InstallBypassMake() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) Owner() string {
|
|
|
|
return String(m.commonProperties.Owner)
|
2018-08-31 11:01:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) NoticeFile() OptionalPath {
|
|
|
|
return m.noticeFile
|
2019-03-18 04:01:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) generateModuleTarget(ctx ModuleContext) {
|
2015-09-24 00:26:20 +02:00
|
|
|
allInstalledFiles := Paths{}
|
|
|
|
allCheckbuildFiles := Paths{}
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.VisitAllModuleVariants(func(module Module) {
|
|
|
|
a := module.base()
|
2015-03-27 00:10:12 +01:00
|
|
|
allInstalledFiles = append(allInstalledFiles, a.installFiles...)
|
|
|
|
allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...)
|
2015-01-31 02:27:36 +01:00
|
|
|
})
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
var deps Paths
|
2015-03-17 21:24:18 +01:00
|
|
|
|
2017-11-30 01:47:17 +01:00
|
|
|
namespacePrefix := ctx.Namespace().(*Namespace).id
|
|
|
|
if namespacePrefix != "" {
|
|
|
|
namespacePrefix = namespacePrefix + "-"
|
|
|
|
}
|
|
|
|
|
2015-01-31 02:27:36 +01:00
|
|
|
if len(allInstalledFiles) > 0 {
|
2017-11-30 01:47:17 +01:00
|
|
|
name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-install")
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2015-03-17 21:24:18 +01:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: name,
|
|
|
|
Implicits: allInstalledFiles,
|
2017-11-29 09:27:14 +01:00
|
|
|
Default: !ctx.Config().EmbeddedInMake(),
|
2015-03-17 21:24:18 +01:00
|
|
|
})
|
|
|
|
deps = append(deps, name)
|
2019-06-07 01:57:04 +02:00
|
|
|
m.installTarget = name
|
2015-03-17 21:24:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(allCheckbuildFiles) > 0 {
|
2017-11-30 01:47:17 +01:00
|
|
|
name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-checkbuild")
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2015-03-17 21:24:18 +01:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: name,
|
|
|
|
Implicits: allCheckbuildFiles,
|
2015-03-17 21:24:18 +01:00
|
|
|
})
|
|
|
|
deps = append(deps, name)
|
2019-06-07 01:57:04 +02:00
|
|
|
m.checkbuildTarget = name
|
2015-03-17 21:24:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(deps) > 0 {
|
2015-12-11 22:51:06 +01:00
|
|
|
suffix := ""
|
2017-11-29 09:27:14 +01:00
|
|
|
if ctx.Config().EmbeddedInMake() {
|
2015-12-11 22:51:06 +01:00
|
|
|
suffix = "-soong"
|
|
|
|
}
|
|
|
|
|
2017-11-30 01:47:17 +01:00
|
|
|
name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+suffix)
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2015-03-17 21:24:18 +01:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-30 01:47:17 +01:00
|
|
|
Outputs: []WritablePath{name},
|
2015-03-17 21:24:18 +01:00
|
|
|
Implicits: deps,
|
2015-01-31 02:27:36 +01:00
|
|
|
})
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
m.blueprintDir = ctx.ModuleDir()
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func determineModuleKind(m *ModuleBase, ctx blueprint.BaseModuleContext) moduleKind {
|
|
|
|
var socSpecific = Bool(m.commonProperties.Vendor) || Bool(m.commonProperties.Proprietary) || Bool(m.commonProperties.Soc_specific)
|
|
|
|
var deviceSpecific = Bool(m.commonProperties.Device_specific)
|
|
|
|
var productSpecific = Bool(m.commonProperties.Product_specific)
|
2019-06-25 09:47:17 +02:00
|
|
|
var systemExtSpecific = Bool(m.commonProperties.System_ext_specific)
|
2017-11-08 08:03:48 +01:00
|
|
|
|
2018-05-29 14:28:54 +02:00
|
|
|
msg := "conflicting value set here"
|
|
|
|
if socSpecific && deviceSpecific {
|
|
|
|
ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.")
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Vendor) {
|
2017-11-08 08:03:48 +01:00
|
|
|
ctx.PropertyErrorf("vendor", msg)
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Proprietary) {
|
2017-11-08 08:03:48 +01:00
|
|
|
ctx.PropertyErrorf("proprietary", msg)
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Soc_specific) {
|
2017-11-08 08:03:48 +01:00
|
|
|
ctx.PropertyErrorf("soc_specific", msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
if productSpecific && systemExtSpecific {
|
|
|
|
ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and system_ext at the same time.")
|
|
|
|
ctx.PropertyErrorf("system_ext_specific", msg)
|
2018-05-29 14:28:54 +02:00
|
|
|
}
|
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
if (socSpecific || deviceSpecific) && (productSpecific || systemExtSpecific) {
|
2018-05-29 14:28:54 +02:00
|
|
|
if productSpecific {
|
|
|
|
ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.")
|
|
|
|
} else {
|
2019-06-25 09:47:17 +02:00
|
|
|
ctx.PropertyErrorf("system_ext_specific", "a module cannot be specific to SoC or device and system_ext at the same time.")
|
2018-05-29 14:28:54 +02:00
|
|
|
}
|
|
|
|
if deviceSpecific {
|
|
|
|
ctx.PropertyErrorf("device_specific", msg)
|
|
|
|
} else {
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Vendor) {
|
2018-05-29 14:28:54 +02:00
|
|
|
ctx.PropertyErrorf("vendor", msg)
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Proprietary) {
|
2018-05-29 14:28:54 +02:00
|
|
|
ctx.PropertyErrorf("proprietary", msg)
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if Bool(m.commonProperties.Soc_specific) {
|
2018-05-29 14:28:54 +02:00
|
|
|
ctx.PropertyErrorf("soc_specific", msg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-08 08:03:48 +01:00
|
|
|
if productSpecific {
|
|
|
|
return productSpecificModule
|
2019-06-25 09:47:17 +02:00
|
|
|
} else if systemExtSpecific {
|
|
|
|
return systemExtSpecificModule
|
2017-11-08 08:03:48 +01:00
|
|
|
} else if deviceSpecific {
|
|
|
|
return deviceSpecificModule
|
|
|
|
} else if socSpecific {
|
|
|
|
return socSpecificModule
|
|
|
|
} else {
|
|
|
|
return platformModule
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (m *ModuleBase) baseModuleContextFactory(ctx blueprint.BaseModuleContext) baseModuleContext {
|
|
|
|
return baseModuleContext{
|
|
|
|
BaseModuleContext: ctx,
|
|
|
|
target: m.commonProperties.CompileTarget,
|
|
|
|
targetPrimary: m.commonProperties.CompilePrimary,
|
|
|
|
multiTargets: m.commonProperties.CompileMultiTargets,
|
|
|
|
kind: determineModuleKind(m, ctx),
|
|
|
|
config: ctx.Config().(Config),
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) {
|
2019-06-06 23:29:25 +02:00
|
|
|
ctx := &moduleContext{
|
2019-06-06 23:33:29 +02:00
|
|
|
module: m.module,
|
2019-06-07 01:13:11 +02:00
|
|
|
bp: blueprintCtx,
|
2019-06-06 23:33:29 +02:00
|
|
|
baseModuleContext: m.baseModuleContextFactory(blueprintCtx),
|
|
|
|
installDeps: m.computeInstallDeps(blueprintCtx),
|
|
|
|
installFiles: m.installFiles,
|
|
|
|
variables: make(map[string]string),
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 00:41:36 +02:00
|
|
|
// Temporarily continue to call blueprintCtx.GetMissingDependencies() to maintain the previous behavior of never
|
|
|
|
// reporting missing dependency errors in Blueprint when AllowMissingDependencies == true.
|
|
|
|
// TODO: This will be removed once defaults modules handle missing dependency errors
|
|
|
|
blueprintCtx.GetMissingDependencies()
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
// For the final GenerateAndroidBuildActions pass, require that all visited dependencies Soong modules and
|
|
|
|
// are enabled.
|
|
|
|
ctx.baseModuleContext.strictVisitDeps = true
|
|
|
|
|
2019-02-25 23:54:28 +01:00
|
|
|
if ctx.config.captureBuild {
|
|
|
|
ctx.ruleParams = make(map[blueprint.Rule]blueprint.RuleParams)
|
|
|
|
}
|
|
|
|
|
2017-05-09 22:45:28 +02:00
|
|
|
desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " "
|
|
|
|
var suffix []string
|
2017-11-29 02:34:01 +01:00
|
|
|
if ctx.Os().Class != Device && ctx.Os().Class != Generic {
|
|
|
|
suffix = append(suffix, ctx.Os().String())
|
2017-05-09 22:45:28 +02:00
|
|
|
}
|
2017-11-29 02:34:01 +01:00
|
|
|
if !ctx.PrimaryArch() {
|
|
|
|
suffix = append(suffix, ctx.Arch().ArchType.String())
|
2017-05-09 22:45:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Variable(pctx, "moduleDesc", desc)
|
|
|
|
|
|
|
|
s := ""
|
|
|
|
if len(suffix) > 0 {
|
|
|
|
s = " [" + strings.Join(suffix, " ") + "]"
|
|
|
|
}
|
|
|
|
ctx.Variable(pctx, "moduleDescSuffix", s)
|
|
|
|
|
2018-11-19 18:33:29 +01:00
|
|
|
// Some common property checks for properties that will be used later in androidmk.go
|
2019-06-07 01:57:04 +02:00
|
|
|
if m.commonProperties.Dist.Dest != nil {
|
|
|
|
_, err := validateSafePath(*m.commonProperties.Dist.Dest)
|
2018-11-19 18:33:29 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("dist.dest", "%s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if m.commonProperties.Dist.Dir != nil {
|
|
|
|
_, err := validateSafePath(*m.commonProperties.Dist.Dir)
|
2018-11-19 18:33:29 +01:00
|
|
|
if err != nil {
|
|
|
|
ctx.PropertyErrorf("dist.dir", "%s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 01:57:04 +02:00
|
|
|
if m.commonProperties.Dist.Suffix != nil {
|
|
|
|
if strings.Contains(*m.commonProperties.Dist.Suffix, "/") {
|
2018-11-19 18:33:29 +01:00
|
|
|
ctx.PropertyErrorf("dist.suffix", "Suffix may not contain a '/' character.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
if m.Enabled() {
|
2019-08-23 04:18:57 +02:00
|
|
|
// ensure all direct android.Module deps are enabled
|
|
|
|
ctx.VisitDirectDepsBlueprint(func(bm blueprint.Module) {
|
|
|
|
if _, ok := bm.(Module); ok {
|
|
|
|
ctx.validateAndroidModule(bm, ctx.baseModuleContext.strictVisitDeps)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
notice := proptools.StringDefault(m.commonProperties.Notice, "NOTICE")
|
|
|
|
if module := SrcIsModule(notice); module != "" {
|
|
|
|
m.noticeFile = ctx.ExpandOptionalSource(¬ice, "notice")
|
2019-03-18 04:01:38 +01:00
|
|
|
} else {
|
|
|
|
noticePath := filepath.Join(ctx.ModuleDir(), notice)
|
2019-06-07 01:57:04 +02:00
|
|
|
m.noticeFile = ExistentPathForSource(ctx, noticePath)
|
2018-11-16 22:26:43 +01:00
|
|
|
}
|
2019-06-18 02:40:56 +02:00
|
|
|
|
|
|
|
m.module.GenerateAndroidBuildActions(ctx)
|
|
|
|
if ctx.Failed() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
m.installFiles = append(m.installFiles, ctx.installFiles...)
|
|
|
|
m.checkbuildFiles = append(m.checkbuildFiles, ctx.checkbuildFiles...)
|
2019-06-07 01:13:11 +02:00
|
|
|
} else if ctx.Config().AllowMissingDependencies() {
|
|
|
|
// If the module is not enabled it will not create any build rules, nothing will call
|
|
|
|
// ctx.GetMissingDependencies(), and blueprint will consider the missing dependencies to be unhandled
|
|
|
|
// and report them as an error even when AllowMissingDependencies = true. Call
|
|
|
|
// ctx.GetMissingDependencies() here to tell blueprint not to handle them.
|
|
|
|
ctx.GetMissingDependencies()
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
if m == ctx.FinalModule().(Module).base() {
|
|
|
|
m.generateModuleTarget(ctx)
|
2016-09-20 00:18:11 +02:00
|
|
|
if ctx.Failed() {
|
|
|
|
return
|
|
|
|
}
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
2017-07-13 23:43:27 +02:00
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
m.buildParams = ctx.buildParams
|
|
|
|
m.ruleParams = ctx.ruleParams
|
|
|
|
m.variables = ctx.variables
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
type baseModuleContext struct {
|
|
|
|
blueprint.BaseModuleContext
|
2016-09-13 18:59:14 +02:00
|
|
|
target Target
|
2018-10-03 07:01:37 +02:00
|
|
|
multiTargets []Target
|
2016-09-13 18:59:14 +02:00
|
|
|
targetPrimary bool
|
|
|
|
debug bool
|
2017-11-08 08:03:48 +01:00
|
|
|
kind moduleKind
|
2016-09-13 18:59:14 +02:00
|
|
|
config Config
|
2019-06-07 01:13:11 +02:00
|
|
|
|
|
|
|
walkPath []Module
|
|
|
|
|
|
|
|
strictVisitDeps bool // If true, enforce that all dependencies are enabled
|
2015-03-24 19:13:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
type moduleContext struct {
|
2019-06-07 01:13:11 +02:00
|
|
|
bp blueprint.ModuleContext
|
2019-06-06 23:33:29 +02:00
|
|
|
baseModuleContext
|
2015-09-24 00:26:20 +02:00
|
|
|
installDeps Paths
|
|
|
|
installFiles Paths
|
|
|
|
checkbuildFiles Paths
|
2016-08-03 20:57:50 +02:00
|
|
|
module Module
|
2017-07-13 23:43:27 +02:00
|
|
|
|
|
|
|
// For tests
|
2017-10-24 02:16:14 +02:00
|
|
|
buildParams []BuildParams
|
2019-02-25 23:54:28 +01:00
|
|
|
ruleParams map[blueprint.Rule]blueprint.RuleParams
|
2018-12-12 18:01:34 +01:00
|
|
|
variables map[string]string
|
2015-12-18 01:39:19 +01:00
|
|
|
}
|
|
|
|
|
2019-06-11 00:15:17 +02:00
|
|
|
func (m *moduleContext) ninjaError(params BuildParams, err error) (PackageContext, BuildParams) {
|
|
|
|
return pctx, BuildParams{
|
2019-06-07 22:06:06 +02:00
|
|
|
Rule: ErrorRule,
|
|
|
|
Description: params.Description,
|
|
|
|
Output: params.Output,
|
|
|
|
Outputs: params.Outputs,
|
|
|
|
ImplicitOutput: params.ImplicitOutput,
|
|
|
|
ImplicitOutputs: params.ImplicitOutputs,
|
2015-12-18 01:39:19 +01:00
|
|
|
Args: map[string]string{
|
|
|
|
"error": err.Error(),
|
|
|
|
},
|
2019-06-11 00:15:17 +02:00
|
|
|
}
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) {
|
|
|
|
m.Build(pctx, BuildParams(params))
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
func convertBuildParams(params BuildParams) blueprint.BuildParams {
|
2015-09-24 00:26:20 +02:00
|
|
|
bparams := blueprint.BuildParams{
|
2016-11-03 22:28:31 +01:00
|
|
|
Rule: params.Rule,
|
2017-11-29 02:34:01 +01:00
|
|
|
Description: params.Description,
|
2016-11-22 02:23:08 +01:00
|
|
|
Deps: params.Deps,
|
2016-11-03 22:28:31 +01:00
|
|
|
Outputs: params.Outputs.Strings(),
|
|
|
|
ImplicitOutputs: params.ImplicitOutputs.Strings(),
|
|
|
|
Inputs: params.Inputs.Strings(),
|
|
|
|
Implicits: params.Implicits.Strings(),
|
|
|
|
OrderOnly: params.OrderOnly.Strings(),
|
|
|
|
Args: params.Args,
|
|
|
|
Optional: !params.Default,
|
2015-09-24 00:26:20 +02:00
|
|
|
}
|
|
|
|
|
2016-11-22 02:23:08 +01:00
|
|
|
if params.Depfile != nil {
|
|
|
|
bparams.Depfile = params.Depfile.String()
|
|
|
|
}
|
2015-09-24 00:26:20 +02:00
|
|
|
if params.Output != nil {
|
|
|
|
bparams.Outputs = append(bparams.Outputs, params.Output.String())
|
|
|
|
}
|
2016-11-03 22:28:31 +01:00
|
|
|
if params.ImplicitOutput != nil {
|
|
|
|
bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String())
|
|
|
|
}
|
2015-09-24 00:26:20 +02:00
|
|
|
if params.Input != nil {
|
|
|
|
bparams.Inputs = append(bparams.Inputs, params.Input.String())
|
|
|
|
}
|
|
|
|
if params.Implicit != nil {
|
|
|
|
bparams.Implicits = append(bparams.Implicits, params.Implicit.String())
|
|
|
|
}
|
|
|
|
|
2019-02-28 20:00:01 +01:00
|
|
|
bparams.Outputs = proptools.NinjaEscapeList(bparams.Outputs)
|
|
|
|
bparams.ImplicitOutputs = proptools.NinjaEscapeList(bparams.ImplicitOutputs)
|
|
|
|
bparams.Inputs = proptools.NinjaEscapeList(bparams.Inputs)
|
|
|
|
bparams.Implicits = proptools.NinjaEscapeList(bparams.Implicits)
|
|
|
|
bparams.OrderOnly = proptools.NinjaEscapeList(bparams.OrderOnly)
|
|
|
|
bparams.Depfile = proptools.NinjaEscapeList([]string{bparams.Depfile})[0]
|
2018-09-12 19:02:13 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
return bparams
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) Variable(pctx PackageContext, name, value string) {
|
|
|
|
if m.config.captureBuild {
|
|
|
|
m.variables[name] = value
|
2018-12-12 18:01:34 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
m.bp.Variable(pctx.PackageContext, name, value)
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams,
|
2017-11-29 02:34:01 +01:00
|
|
|
argNames ...string) blueprint.Rule {
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
rule := m.bp.Rule(pctx.PackageContext, name, params, argNames...)
|
2019-02-25 23:54:28 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if m.config.captureBuild {
|
|
|
|
m.ruleParams[rule] = params
|
2019-02-25 23:54:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return rule
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) Build(pctx PackageContext, params BuildParams) {
|
2019-06-11 00:15:17 +02:00
|
|
|
if params.Description != "" {
|
|
|
|
params.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}"
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-11 00:15:17 +02:00
|
|
|
if missingDeps := m.GetMissingDependencies(); len(missingDeps) > 0 {
|
|
|
|
pctx, params = m.ninjaError(params, fmt.Errorf("module %s missing dependencies: %s\n",
|
|
|
|
m.ModuleName(), strings.Join(missingDeps, ", ")))
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-11 00:15:17 +02:00
|
|
|
if m.config.captureBuild {
|
|
|
|
m.buildParams = append(m.buildParams, params)
|
2015-12-18 01:39:19 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
m.bp.Build(pctx.PackageContext, convertBuildParams(params))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *baseModuleContext) Module() Module {
|
|
|
|
module, _ := b.BaseModuleContext.Module().(Module)
|
|
|
|
return module
|
2015-09-24 00:26:20 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) Config() Config {
|
|
|
|
return b.BaseModuleContext.Config().(Config)
|
2019-06-07 00:41:36 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) GetMissingDependencies() []string {
|
2019-06-07 00:41:36 +02:00
|
|
|
var missingDeps []string
|
|
|
|
missingDeps = append(missingDeps, m.Module().base().commonProperties.MissingDeps...)
|
2019-06-07 01:13:11 +02:00
|
|
|
missingDeps = append(missingDeps, m.bp.GetMissingDependencies()...)
|
2019-06-07 00:41:36 +02:00
|
|
|
missingDeps = FirstUniqueStrings(missingDeps)
|
|
|
|
return missingDeps
|
2015-12-18 01:39:19 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) AddMissingDependencies(deps []string) {
|
2016-03-11 03:14:25 +01:00
|
|
|
if deps != nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
missingDeps := &b.Module().base().commonProperties.MissingDeps
|
2019-06-07 00:41:36 +02:00
|
|
|
*missingDeps = append(*missingDeps, deps...)
|
|
|
|
*missingDeps = FirstUniqueStrings(*missingDeps)
|
2016-03-11 03:14:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) validateAndroidModule(module blueprint.Module, strict bool) Module {
|
2017-10-24 02:59:01 +02:00
|
|
|
aModule, _ := module.(Module)
|
2019-06-07 01:13:11 +02:00
|
|
|
|
|
|
|
if !strict {
|
|
|
|
return aModule
|
|
|
|
}
|
|
|
|
|
2019-06-10 19:49:58 +02:00
|
|
|
if aModule == nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
b.ModuleErrorf("module %q not an android module", b.OtherModuleName(module))
|
2019-06-10 19:49:58 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if !aModule.Enabled() {
|
2019-06-07 01:13:11 +02:00
|
|
|
if b.Config().AllowMissingDependencies() {
|
|
|
|
b.AddMissingDependencies([]string{b.OtherModuleName(aModule)})
|
2019-06-10 19:49:58 +02:00
|
|
|
} else {
|
2019-06-07 01:13:11 +02:00
|
|
|
b.ModuleErrorf("depends on disabled module %q", b.OtherModuleName(aModule))
|
2019-06-10 19:49:58 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2017-10-24 02:59:01 +02:00
|
|
|
return aModule
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) getDirectDepInternal(name string, tag blueprint.DependencyTag) (blueprint.Module, blueprint.DependencyTag) {
|
2019-04-17 14:47:37 +02:00
|
|
|
type dep struct {
|
|
|
|
mod blueprint.Module
|
|
|
|
tag blueprint.DependencyTag
|
|
|
|
}
|
|
|
|
var deps []dep
|
2019-06-07 01:13:11 +02:00
|
|
|
b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
|
2019-06-06 23:29:25 +02:00
|
|
|
if aModule, _ := module.(Module); aModule != nil && aModule.base().BaseModuleName() == name {
|
2019-06-07 01:13:11 +02:00
|
|
|
returnedTag := b.BaseModuleContext.OtherModuleDependencyTag(aModule)
|
2019-04-17 14:47:37 +02:00
|
|
|
if tag == nil || returnedTag == tag {
|
|
|
|
deps = append(deps, dep{aModule, returnedTag})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
if len(deps) == 1 {
|
|
|
|
return deps[0].mod, deps[0].tag
|
|
|
|
} else if len(deps) >= 2 {
|
|
|
|
panic(fmt.Errorf("Multiple dependencies having same BaseModuleName() %q found from %q",
|
2019-06-07 01:13:11 +02:00
|
|
|
name, b.ModuleName()))
|
2019-04-17 14:47:37 +02:00
|
|
|
} else {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) GetDirectDepsWithTag(tag blueprint.DependencyTag) []Module {
|
2019-05-02 00:50:51 +02:00
|
|
|
var deps []Module
|
2019-06-07 01:13:11 +02:00
|
|
|
b.VisitDirectDepsBlueprint(func(module blueprint.Module) {
|
2019-06-06 23:29:25 +02:00
|
|
|
if aModule, _ := module.(Module); aModule != nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
if b.BaseModuleContext.OtherModuleDependencyTag(aModule) == tag {
|
2019-05-02 00:50:51 +02:00
|
|
|
deps = append(deps, aModule)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
return deps
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module {
|
|
|
|
module, _ := m.getDirectDepInternal(name, tag)
|
|
|
|
return module
|
2019-04-17 14:47:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) {
|
|
|
|
return b.getDirectDepInternal(name, nil)
|
2019-04-17 14:47:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) {
|
|
|
|
b.BaseModuleContext.VisitDirectDeps(visit)
|
2017-11-16 09:11:20 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDirectDeps(visit func(Module)) {
|
|
|
|
b.BaseModuleContext.VisitDirectDeps(func(module blueprint.Module) {
|
|
|
|
if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
|
2017-10-24 02:59:01 +02:00
|
|
|
visit(aModule)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) {
|
|
|
|
b.BaseModuleContext.VisitDirectDeps(func(module blueprint.Module) {
|
|
|
|
if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
|
|
|
|
if b.BaseModuleContext.OtherModuleDependencyTag(aModule) == tag {
|
2017-12-31 02:54:27 +01:00
|
|
|
visit(aModule)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) {
|
|
|
|
b.BaseModuleContext.VisitDirectDepsIf(
|
2017-10-24 02:59:01 +02:00
|
|
|
// pred
|
|
|
|
func(module blueprint.Module) bool {
|
2019-06-07 01:13:11 +02:00
|
|
|
if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
|
2017-10-24 02:59:01 +02:00
|
|
|
return pred(aModule)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// visit
|
|
|
|
func(module blueprint.Module) {
|
|
|
|
visit(module.(Module))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDepsDepthFirst(visit func(Module)) {
|
|
|
|
b.BaseModuleContext.VisitDepsDepthFirst(func(module blueprint.Module) {
|
|
|
|
if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
|
2017-10-24 02:59:01 +02:00
|
|
|
visit(aModule)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) {
|
|
|
|
b.BaseModuleContext.VisitDepsDepthFirstIf(
|
2017-10-24 02:59:01 +02:00
|
|
|
// pred
|
|
|
|
func(module blueprint.Module) bool {
|
2019-06-07 01:13:11 +02:00
|
|
|
if aModule := b.validateAndroidModule(module, b.strictVisitDeps); aModule != nil {
|
2017-10-24 02:59:01 +02:00
|
|
|
return pred(aModule)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
// visit
|
|
|
|
func(module blueprint.Module) {
|
|
|
|
visit(module.(Module))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) WalkDepsBlueprint(visit func(blueprint.Module, blueprint.Module) bool) {
|
|
|
|
b.BaseModuleContext.WalkDeps(visit)
|
2019-02-27 23:19:50 +01:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) WalkDeps(visit func(Module, Module) bool) {
|
|
|
|
b.walkPath = []Module{b.Module()}
|
|
|
|
b.BaseModuleContext.WalkDeps(func(child, parent blueprint.Module) bool {
|
|
|
|
childAndroidModule, _ := child.(Module)
|
|
|
|
parentAndroidModule, _ := parent.(Module)
|
2017-10-24 02:59:01 +02:00
|
|
|
if childAndroidModule != nil && parentAndroidModule != nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
// record walkPath before visit
|
|
|
|
for b.walkPath[len(b.walkPath)-1] != parentAndroidModule {
|
|
|
|
b.walkPath = b.walkPath[0 : len(b.walkPath)-1]
|
|
|
|
}
|
|
|
|
b.walkPath = append(b.walkPath, childAndroidModule)
|
2017-10-24 02:59:01 +02:00
|
|
|
return visit(childAndroidModule, parentAndroidModule)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) GetWalkPath() []Module {
|
|
|
|
return b.walkPath
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) VisitAllModuleVariants(visit func(Module)) {
|
2019-06-07 01:13:11 +02:00
|
|
|
m.bp.VisitAllModuleVariants(func(module blueprint.Module) {
|
2017-11-29 02:34:01 +01:00
|
|
|
visit(module.(Module))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) PrimaryModule() Module {
|
2019-06-07 01:13:11 +02:00
|
|
|
return m.bp.PrimaryModule().(Module)
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) FinalModule() Module {
|
2019-06-07 01:13:11 +02:00
|
|
|
return m.bp.FinalModule().(Module)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *moduleContext) ModuleSubDir() string {
|
|
|
|
return m.bp.ModuleSubDir()
|
2017-11-29 02:34:01 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Target() Target {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) TargetPrimary() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.targetPrimary
|
2016-09-13 18:59:14 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) MultiTargets() []Target {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.multiTargets
|
2018-10-03 07:01:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Arch() Arch {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Arch
|
2015-05-07 23:11:29 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Os() OsType {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os
|
2015-11-25 02:53:15 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Host() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os.Class == Host || b.target.Os.Class == HostCross
|
2015-03-24 19:13:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Device() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os.Class == Device
|
2015-03-24 19:13:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Darwin() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os == Darwin
|
2015-05-01 01:36:18 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Fuchsia() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os == Fuchsia
|
2019-01-16 21:06:11 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Windows() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Os == Windows
|
2017-04-04 21:59:48 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Debug() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.debug
|
2015-03-24 19:13:38 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) PrimaryArch() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
if len(b.config.Targets[b.target.Os]) <= 1 {
|
2017-05-09 22:45:28 +02:00
|
|
|
return true
|
|
|
|
}
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.target.Arch.ArchType == b.config.Targets[b.target.Os][0].Arch.ArchType
|
2016-08-25 00:25:47 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) AConfig() Config {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.config
|
2015-04-08 02:11:30 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) DeviceConfig() DeviceConfig {
|
2019-06-06 23:29:25 +02:00
|
|
|
return DeviceConfig{b.config.deviceConfig}
|
2016-08-18 00:24:12 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) Platform() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.kind == platformModule
|
2017-11-08 08:03:48 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) DeviceSpecific() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.kind == deviceSpecificModule
|
2017-11-08 08:03:48 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) SocSpecific() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.kind == socSpecificModule
|
2017-11-08 08:03:48 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:33:29 +02:00
|
|
|
func (b *baseModuleContext) ProductSpecific() bool {
|
2019-06-06 23:29:25 +02:00
|
|
|
return b.kind == productSpecificModule
|
2015-12-21 23:55:28 +01:00
|
|
|
}
|
|
|
|
|
2019-06-25 09:47:17 +02:00
|
|
|
func (b *baseModuleContext) SystemExtSpecific() bool {
|
|
|
|
return b.kind == systemExtSpecificModule
|
2018-05-29 14:28:54 +02:00
|
|
|
}
|
|
|
|
|
2018-08-28 02:55:37 +02:00
|
|
|
// Makes this module a platform module, i.e. not specific to soc, device,
|
2019-06-25 09:47:17 +02:00
|
|
|
// product, or system_ext.
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) MakeAsPlatform() {
|
|
|
|
m.commonProperties.Vendor = boolPtr(false)
|
|
|
|
m.commonProperties.Proprietary = boolPtr(false)
|
|
|
|
m.commonProperties.Soc_specific = boolPtr(false)
|
|
|
|
m.commonProperties.Product_specific = boolPtr(false)
|
2019-06-25 09:47:17 +02:00
|
|
|
m.commonProperties.System_ext_specific = boolPtr(false)
|
2018-08-28 02:55:37 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:57:04 +02:00
|
|
|
func (m *ModuleBase) EnableNativeBridgeSupportByDefault() {
|
|
|
|
m.commonProperties.Native_bridge_supported = boolPtr(true)
|
2019-05-09 14:07:34 +02:00
|
|
|
}
|
|
|
|
|
2019-08-23 04:17:39 +02:00
|
|
|
// IsNativeBridgeSupported returns true if "native_bridge_supported" is explicitly set as "true"
|
|
|
|
func (m *ModuleBase) IsNativeBridgeSupported() bool {
|
|
|
|
return proptools.Bool(m.commonProperties.Native_bridge_supported)
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallInData() bool {
|
|
|
|
return m.module.InstallInData()
|
2015-12-21 23:55:28 +01:00
|
|
|
}
|
|
|
|
|
2019-09-11 19:25:18 +02:00
|
|
|
func (m *moduleContext) InstallInTestcases() bool {
|
|
|
|
return m.module.InstallInTestcases()
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallInSanitizerDir() bool {
|
|
|
|
return m.module.InstallInSanitizerDir()
|
2017-03-30 07:00:18 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallInRecovery() bool {
|
|
|
|
return m.module.InstallInRecovery()
|
2018-01-31 16:54:12 +01:00
|
|
|
}
|
|
|
|
|
2019-10-02 20:10:58 +02:00
|
|
|
func (m *moduleContext) InstallInRoot() bool {
|
|
|
|
return m.module.InstallInRoot()
|
|
|
|
}
|
|
|
|
|
2019-07-30 01:44:46 +02:00
|
|
|
func (m *moduleContext) InstallBypassMake() bool {
|
|
|
|
return m.module.InstallBypassMake()
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) skipInstall(fullInstallPath OutputPath) bool {
|
|
|
|
if m.module.base().commonProperties.SkipInstall {
|
2017-04-27 02:34:03 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2018-05-08 00:28:05 +02:00
|
|
|
// We'll need a solution for choosing which of modules with the same name in different
|
|
|
|
// namespaces to install. For now, reuse the list of namespaces exported to Make as the
|
|
|
|
// list of namespaces to install in a Soong-only build.
|
2019-06-06 23:29:25 +02:00
|
|
|
if !m.module.base().commonProperties.NamespaceExportedToMake {
|
2018-05-08 00:28:05 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if m.Device() {
|
2019-07-30 01:44:46 +02:00
|
|
|
if m.Config().EmbeddedInMake() && !m.InstallBypassMake() {
|
2017-04-27 02:34:03 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if m.Config().SkipMegaDeviceInstall(fullInstallPath.String()) {
|
2017-04-27 02:34:03 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallFile(installPath OutputPath, name string, srcPath Path,
|
2016-03-24 21:14:12 +01:00
|
|
|
deps ...Path) OutputPath {
|
2019-06-06 23:29:25 +02:00
|
|
|
return m.installFile(installPath, name, srcPath, Cp, deps)
|
2017-08-31 21:29:17 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallExecutable(installPath OutputPath, name string, srcPath Path,
|
2017-08-31 21:29:17 +02:00
|
|
|
deps ...Path) OutputPath {
|
2019-06-06 23:29:25 +02:00
|
|
|
return m.installFile(installPath, name, srcPath, CpExecutable, deps)
|
2017-08-31 21:29:17 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) installFile(installPath OutputPath, name string, srcPath Path,
|
2017-08-31 21:29:17 +02:00
|
|
|
rule blueprint.Rule, deps []Path) OutputPath {
|
2015-04-02 23:37:16 +02:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
fullInstallPath := installPath.Join(m, name)
|
|
|
|
m.module.base().hooks.runInstallHooks(m, fullInstallPath, false)
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if !m.skipInstall(fullInstallPath) {
|
2016-10-07 01:12:58 +02:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
deps = append(deps, m.installDeps...)
|
2016-01-13 08:07:05 +01:00
|
|
|
|
2016-10-04 02:47:19 +02:00
|
|
|
var implicitDeps, orderOnlyDeps Paths
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if m.Host() {
|
2016-10-04 02:47:19 +02:00
|
|
|
// Installed host modules might be used during the build, depend directly on their
|
|
|
|
// dependencies so their timestamp is updated whenever their dependency is updated
|
|
|
|
implicitDeps = deps
|
|
|
|
} else {
|
|
|
|
orderOnlyDeps = deps
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
m.Build(pctx, BuildParams{
|
2017-08-31 21:29:17 +02:00
|
|
|
Rule: rule,
|
2017-05-09 22:45:28 +02:00
|
|
|
Description: "install " + fullInstallPath.Base(),
|
|
|
|
Output: fullInstallPath,
|
|
|
|
Input: srcPath,
|
|
|
|
Implicits: implicitDeps,
|
|
|
|
OrderOnly: orderOnlyDeps,
|
2019-06-06 23:29:25 +02:00
|
|
|
Default: !m.Config().EmbeddedInMake(),
|
2016-01-13 08:07:05 +01:00
|
|
|
})
|
2015-01-31 02:27:36 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
m.installFiles = append(m.installFiles, fullInstallPath)
|
2016-01-13 08:07:05 +01:00
|
|
|
}
|
2019-06-06 23:29:25 +02:00
|
|
|
m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
|
2015-04-02 23:37:16 +02:00
|
|
|
return fullInstallPath
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallSymlink(installPath OutputPath, name string, srcPath OutputPath) OutputPath {
|
|
|
|
fullInstallPath := installPath.Join(m, name)
|
|
|
|
m.module.base().hooks.runInstallHooks(m, fullInstallPath, true)
|
2016-01-11 21:49:11 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if !m.skipInstall(fullInstallPath) {
|
2016-10-07 01:12:58 +02:00
|
|
|
|
2019-01-17 22:57:45 +01:00
|
|
|
relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String())
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err))
|
|
|
|
}
|
2019-06-06 23:29:25 +02:00
|
|
|
m.Build(pctx, BuildParams{
|
2017-05-09 22:45:28 +02:00
|
|
|
Rule: Symlink,
|
|
|
|
Description: "install symlink " + fullInstallPath.Base(),
|
|
|
|
Output: fullInstallPath,
|
|
|
|
OrderOnly: Paths{srcPath},
|
2019-06-06 23:29:25 +02:00
|
|
|
Default: !m.Config().EmbeddedInMake(),
|
2016-01-11 21:49:11 +01:00
|
|
|
Args: map[string]string{
|
2019-01-17 22:57:45 +01:00
|
|
|
"fromPath": relPath,
|
2016-01-11 21:49:11 +01:00
|
|
|
},
|
|
|
|
})
|
2016-01-11 21:49:11 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
m.installFiles = append(m.installFiles, fullInstallPath)
|
|
|
|
m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
|
2016-01-11 21:49:11 +01:00
|
|
|
}
|
2016-01-11 21:49:11 +01:00
|
|
|
return fullInstallPath
|
|
|
|
}
|
|
|
|
|
2019-02-25 03:05:47 +01:00
|
|
|
// installPath/name -> absPath where absPath might be a path that is available only at runtime
|
|
|
|
// (e.g. /apex/...)
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) InstallAbsoluteSymlink(installPath OutputPath, name string, absPath string) OutputPath {
|
|
|
|
fullInstallPath := installPath.Join(m, name)
|
|
|
|
m.module.base().hooks.runInstallHooks(m, fullInstallPath, true)
|
2019-02-25 03:05:47 +01:00
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
if !m.skipInstall(fullInstallPath) {
|
|
|
|
m.Build(pctx, BuildParams{
|
2019-02-25 03:05:47 +01:00
|
|
|
Rule: Symlink,
|
|
|
|
Description: "install symlink " + fullInstallPath.Base() + " -> " + absPath,
|
|
|
|
Output: fullInstallPath,
|
2019-06-06 23:29:25 +02:00
|
|
|
Default: !m.Config().EmbeddedInMake(),
|
2019-02-25 03:05:47 +01:00
|
|
|
Args: map[string]string{
|
|
|
|
"fromPath": absPath,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
m.installFiles = append(m.installFiles, fullInstallPath)
|
2019-02-25 03:05:47 +01:00
|
|
|
}
|
|
|
|
return fullInstallPath
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) CheckbuildFile(srcPath Path) {
|
|
|
|
m.checkbuildFiles = append(m.checkbuildFiles, srcPath)
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type fileInstaller interface {
|
2015-09-24 00:26:20 +02:00
|
|
|
filesToInstall() Paths
|
2015-01-31 02:27:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func isFileInstaller(m blueprint.Module) bool {
|
|
|
|
_, ok := m.(fileInstaller)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func isAndroidModule(m blueprint.Module) bool {
|
2016-05-19 00:37:25 +02:00
|
|
|
_, ok := m.(Module)
|
2015-01-31 02:27:36 +01:00
|
|
|
return ok
|
|
|
|
}
|
2015-04-08 20:21:40 +02:00
|
|
|
|
2015-07-01 03:15:24 +02:00
|
|
|
func findStringInSlice(str string, slice []string) int {
|
|
|
|
for i, s := range slice {
|
|
|
|
if s == str {
|
|
|
|
return i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2019-05-29 23:40:35 +02:00
|
|
|
// SrcIsModule decodes module references in the format ":name" into the module name, or empty string if the input
|
|
|
|
// was not a module reference.
|
|
|
|
func SrcIsModule(s string) (module string) {
|
2016-12-14 00:23:47 +01:00
|
|
|
if len(s) > 1 && s[0] == ':' {
|
|
|
|
return s[1:]
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-05-29 23:40:35 +02:00
|
|
|
// SrcIsModule decodes module references in the format ":name{.tag}" into the module name and tag, ":name" into the
|
|
|
|
// module name and an empty string for the tag, or empty strings if the input was not a module reference.
|
|
|
|
func SrcIsModuleWithTag(s string) (module, tag string) {
|
|
|
|
if len(s) > 1 && s[0] == ':' {
|
|
|
|
module = s[1:]
|
|
|
|
if tagStart := strings.IndexByte(module, '{'); tagStart > 0 {
|
|
|
|
if module[len(module)-1] == '}' {
|
|
|
|
tag = module[tagStart+1 : len(module)-1]
|
|
|
|
module = module[:tagStart]
|
|
|
|
return module, tag
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return module, ""
|
|
|
|
}
|
|
|
|
return "", ""
|
|
|
|
}
|
|
|
|
|
|
|
|
type sourceOrOutputDependencyTag struct {
|
2016-12-14 00:23:47 +01:00
|
|
|
blueprint.BaseDependencyTag
|
2019-05-29 23:40:35 +02:00
|
|
|
tag string
|
2016-12-14 00:23:47 +01:00
|
|
|
}
|
|
|
|
|
2019-05-29 23:40:35 +02:00
|
|
|
func sourceOrOutputDepTag(tag string) blueprint.DependencyTag {
|
|
|
|
return sourceOrOutputDependencyTag{tag: tag}
|
|
|
|
}
|
|
|
|
|
|
|
|
var SourceDepTag = sourceOrOutputDepTag("")
|
2016-12-14 00:23:47 +01:00
|
|
|
|
2017-12-12 01:29:02 +01:00
|
|
|
// Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles
|
|
|
|
// using ":module" syntax, if any.
|
2019-03-05 07:35:41 +01:00
|
|
|
//
|
|
|
|
// Deprecated: tag the property with `android:"path"` instead.
|
2016-12-14 00:23:47 +01:00
|
|
|
func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) {
|
2017-04-10 20:27:50 +02:00
|
|
|
set := make(map[string]bool)
|
|
|
|
|
2016-12-14 00:23:47 +01:00
|
|
|
for _, s := range srcFiles {
|
2019-05-29 23:40:35 +02:00
|
|
|
if m, t := SrcIsModuleWithTag(s); m != "" {
|
|
|
|
if _, found := set[s]; found {
|
|
|
|
ctx.ModuleErrorf("found source dependency duplicate: %q!", s)
|
2017-04-10 20:27:50 +02:00
|
|
|
} else {
|
2019-05-29 23:40:35 +02:00
|
|
|
set[s] = true
|
|
|
|
ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
|
2017-04-10 20:27:50 +02:00
|
|
|
}
|
2016-12-14 00:23:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-12 01:29:02 +01:00
|
|
|
// Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s
|
|
|
|
// using ":module" syntax, if any.
|
2019-03-05 07:35:41 +01:00
|
|
|
//
|
|
|
|
// Deprecated: tag the property with `android:"path"` instead.
|
2017-12-12 01:29:02 +01:00
|
|
|
func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) {
|
|
|
|
if s != nil {
|
2019-05-29 23:40:35 +02:00
|
|
|
if m, t := SrcIsModuleWithTag(*s); m != "" {
|
|
|
|
ctx.AddDependency(ctx.Module(), sourceOrOutputDepTag(t), m)
|
2017-12-12 01:29:02 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-29 23:40:35 +02:00
|
|
|
// A module that implements SourceFileProducer can be referenced from any property that is tagged with `android:"path"`
|
|
|
|
// using the ":module" syntax and provides a list of paths to be used as if they were listed in the property.
|
2016-12-14 00:23:47 +01:00
|
|
|
type SourceFileProducer interface {
|
|
|
|
Srcs() Paths
|
|
|
|
}
|
|
|
|
|
2019-05-29 23:40:35 +02:00
|
|
|
// A module that implements OutputFileProducer can be referenced from any property that is tagged with `android:"path"`
|
|
|
|
// using the ":module" syntax or ":module{.tag}" syntax and provides a list of otuput files to be used as if they were
|
|
|
|
// listed in the property.
|
|
|
|
type OutputFileProducer interface {
|
|
|
|
OutputFiles(tag string) (Paths, error)
|
|
|
|
}
|
|
|
|
|
2019-03-29 03:30:56 +01:00
|
|
|
type HostToolProvider interface {
|
|
|
|
HostToolPath() OptionalPath
|
|
|
|
}
|
|
|
|
|
2019-03-05 07:35:41 +01:00
|
|
|
// Returns a list of paths expanded from globs and modules referenced using ":module" syntax. The property must
|
|
|
|
// be tagged with `android:"path" to support automatic source module dependency resolution.
|
2019-03-06 07:25:09 +01:00
|
|
|
//
|
|
|
|
// Deprecated: use PathsForModuleSrc or PathsForModuleSrcExcludes instead.
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) ExpandSources(srcFiles, excludes []string) Paths {
|
|
|
|
return PathsForModuleSrcExcludes(m, srcFiles, excludes)
|
2015-06-18 00:09:06 +02:00
|
|
|
}
|
|
|
|
|
2019-03-05 21:39:51 +01:00
|
|
|
// Returns a single path expanded from globs and modules referenced using ":module" syntax. The property must
|
|
|
|
// be tagged with `android:"path" to support automatic source module dependency resolution.
|
2019-03-06 07:25:09 +01:00
|
|
|
//
|
|
|
|
// Deprecated: use PathForModuleSrc instead.
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) ExpandSource(srcFile, prop string) Path {
|
|
|
|
return PathForModuleSrc(m, srcFile)
|
2019-03-05 21:39:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns an optional single path expanded from globs and modules referenced using ":module" syntax if
|
|
|
|
// the srcFile is non-nil. The property must be tagged with `android:"path" to support automatic source module
|
|
|
|
// dependency resolution.
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) ExpandOptionalSource(srcFile *string, prop string) OptionalPath {
|
2019-03-05 21:39:51 +01:00
|
|
|
if srcFile != nil {
|
2019-06-06 23:29:25 +02:00
|
|
|
return OptionalPathForPath(PathForModuleSrc(m, *srcFile))
|
2019-03-05 21:39:51 +01:00
|
|
|
}
|
|
|
|
return OptionalPath{}
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) RequiredModuleNames() []string {
|
|
|
|
return m.module.base().commonProperties.Required
|
2017-02-05 02:47:46 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) HostRequiredModuleNames() []string {
|
|
|
|
return m.module.base().commonProperties.Host_required
|
2019-04-02 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:29:25 +02:00
|
|
|
func (m *moduleContext) TargetRequiredModuleNames() []string {
|
|
|
|
return m.module.base().commonProperties.Target_required
|
2019-04-02 03:37:36 +02:00
|
|
|
}
|
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) Glob(globPattern string, excludes []string) Paths {
|
|
|
|
ret, err := b.GlobWithDeps(globPattern, excludes)
|
2015-06-18 00:09:06 +02:00
|
|
|
if err != nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
b.ModuleErrorf("glob: %s", err.Error())
|
2015-06-18 00:09:06 +02:00
|
|
|
}
|
2019-06-07 01:13:11 +02:00
|
|
|
return pathsForModuleSrcFromFullPath(b, ret, true)
|
2015-04-08 20:21:40 +02:00
|
|
|
}
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2019-06-07 01:13:11 +02:00
|
|
|
func (b *baseModuleContext) GlobFiles(globPattern string, excludes []string) Paths {
|
|
|
|
ret, err := b.GlobWithDeps(globPattern, excludes)
|
2018-01-11 01:06:12 +01:00
|
|
|
if err != nil {
|
2019-06-07 01:13:11 +02:00
|
|
|
b.ModuleErrorf("glob: %s", err.Error())
|
2018-01-11 01:06:12 +01:00
|
|
|
}
|
2019-06-07 01:13:11 +02:00
|
|
|
return pathsForModuleSrcFromFullPath(b, ret, false)
|
2018-01-11 01:06:12 +01:00
|
|
|
}
|
|
|
|
|
2015-06-17 23:20:06 +02:00
|
|
|
func init() {
|
2016-10-12 23:28:16 +02:00
|
|
|
RegisterSingletonType("buildtarget", BuildTargetSingleton)
|
2015-06-17 23:20:06 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
func BuildTargetSingleton() Singleton {
|
2015-06-17 01:38:17 +02:00
|
|
|
return &buildTargetSingleton{}
|
|
|
|
}
|
|
|
|
|
2017-04-25 19:01:55 +02:00
|
|
|
func parentDir(dir string) string {
|
|
|
|
dir, _ = filepath.Split(dir)
|
|
|
|
return filepath.Clean(dir)
|
|
|
|
}
|
|
|
|
|
2015-06-17 01:38:17 +02:00
|
|
|
type buildTargetSingleton struct{}
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) {
|
|
|
|
var checkbuildDeps Paths
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
mmTarget := func(dir string) WritablePath {
|
|
|
|
return PathForPhony(ctx,
|
|
|
|
"MODULES-IN-"+strings.Replace(filepath.Clean(dir), "/", "-", -1))
|
2017-04-25 19:01:55 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
modulesInDir := make(map[string]Paths)
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.VisitAllModules(func(module Module) {
|
|
|
|
blueprintDir := module.base().blueprintDir
|
|
|
|
installTarget := module.base().installTarget
|
|
|
|
checkbuildTarget := module.base().checkbuildTarget
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
if checkbuildTarget != nil {
|
|
|
|
checkbuildDeps = append(checkbuildDeps, checkbuildTarget)
|
|
|
|
modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget)
|
|
|
|
}
|
2015-06-17 01:38:17 +02:00
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
if installTarget != nil {
|
|
|
|
modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget)
|
2015-06-17 01:38:17 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-12-11 22:51:06 +01:00
|
|
|
suffix := ""
|
2017-11-29 09:27:14 +01:00
|
|
|
if ctx.Config().EmbeddedInMake() {
|
2015-12-11 22:51:06 +01:00
|
|
|
suffix = "-soong"
|
|
|
|
}
|
|
|
|
|
2015-06-17 01:38:17 +02:00
|
|
|
// Create a top-level checkbuild target that depends on all modules
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2015-06-17 01:38:17 +02:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: PathForPhony(ctx, "checkbuild"+suffix),
|
2015-06-17 01:38:17 +02:00
|
|
|
Implicits: checkbuildDeps,
|
|
|
|
})
|
|
|
|
|
2017-09-20 23:30:50 +02:00
|
|
|
// Make will generate the MODULES-IN-* targets
|
2017-11-29 09:27:14 +01:00
|
|
|
if ctx.Config().EmbeddedInMake() {
|
2017-09-20 23:30:50 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-25 19:01:55 +02:00
|
|
|
// Ensure ancestor directories are in modulesInDir
|
2019-06-08 08:47:51 +02:00
|
|
|
dirs := SortedStringKeys(modulesInDir)
|
2017-04-25 19:01:55 +02:00
|
|
|
for _, dir := range dirs {
|
|
|
|
dir := parentDir(dir)
|
|
|
|
for dir != "." && dir != "/" {
|
|
|
|
if _, exists := modulesInDir[dir]; exists {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
modulesInDir[dir] = nil
|
|
|
|
dir = parentDir(dir)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make directories build their direct subdirectories
|
|
|
|
for _, dir := range dirs {
|
|
|
|
p := parentDir(dir)
|
|
|
|
if p != "." && p != "/" {
|
|
|
|
modulesInDir[p] = append(modulesInDir[p], mmTarget(dir))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-20 23:30:50 +02:00
|
|
|
// Create a MODULES-IN-<directory> target that depends on all modules in a directory, and
|
|
|
|
// depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp
|
|
|
|
// files.
|
2015-06-17 01:38:17 +02:00
|
|
|
for _, dir := range dirs {
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2015-06-17 01:38:17 +02:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: mmTarget(dir),
|
2017-04-25 19:01:55 +02:00
|
|
|
Implicits: modulesInDir[dir],
|
2015-12-11 22:51:06 +01:00
|
|
|
// HACK: checkbuild should be an optional build, but force it
|
|
|
|
// enabled for now in standalone builds
|
2017-11-29 09:27:14 +01:00
|
|
|
Default: !ctx.Config().EmbeddedInMake(),
|
2015-06-17 01:38:17 +02:00
|
|
|
})
|
|
|
|
}
|
2017-09-21 02:29:08 +02:00
|
|
|
|
|
|
|
// Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild.
|
|
|
|
osDeps := map[OsType]Paths{}
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.VisitAllModules(func(module Module) {
|
|
|
|
if module.Enabled() {
|
|
|
|
os := module.Target().Os
|
|
|
|
osDeps[os] = append(osDeps[os], module.base().checkbuildFiles...)
|
2017-09-21 02:29:08 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
osClass := make(map[string]Paths)
|
2017-09-21 02:29:08 +02:00
|
|
|
for os, deps := range osDeps {
|
|
|
|
var className string
|
|
|
|
|
|
|
|
switch os.Class {
|
|
|
|
case Host:
|
|
|
|
className = "host"
|
|
|
|
case HostCross:
|
|
|
|
className = "host-cross"
|
|
|
|
case Device:
|
|
|
|
className = "target"
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
name := PathForPhony(ctx, className+"-"+os.Name)
|
2017-09-21 02:29:08 +02:00
|
|
|
osClass[className] = append(osClass[className], name)
|
|
|
|
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2017-09-21 02:29:08 +02:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: name,
|
|
|
|
Implicits: deps,
|
2017-09-21 02:29:08 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrap those into host|host-cross|target phony rules
|
2019-06-08 08:47:51 +02:00
|
|
|
for _, class := range SortedStringKeys(osClass) {
|
2017-11-29 02:34:01 +01:00
|
|
|
ctx.Build(pctx, BuildParams{
|
2017-09-21 02:29:08 +02:00
|
|
|
Rule: blueprint.Phony,
|
2017-11-29 02:34:01 +01:00
|
|
|
Output: PathForPhony(ctx, class),
|
2017-09-21 02:29:08 +02:00
|
|
|
Implicits: osClass[class],
|
|
|
|
})
|
|
|
|
}
|
2015-06-17 01:38:17 +02:00
|
|
|
}
|
2015-12-18 03:00:23 +01:00
|
|
|
|
2018-08-16 00:35:38 +02:00
|
|
|
// Collect information for opening IDE project files in java/jdeps.go.
|
|
|
|
type IDEInfo interface {
|
|
|
|
IDEInfo(ideInfo *IdeInfo)
|
|
|
|
BaseModuleName() string
|
|
|
|
}
|
|
|
|
|
|
|
|
// Extract the base module name from the Import name.
|
|
|
|
// Often the Import name has a prefix "prebuilt_".
|
|
|
|
// Remove the prefix explicitly if needed
|
|
|
|
// until we find a better solution to get the Import name.
|
|
|
|
type IDECustomizedModuleName interface {
|
|
|
|
IDECustomizedModuleName() string
|
|
|
|
}
|
|
|
|
|
|
|
|
type IdeInfo struct {
|
|
|
|
Deps []string `json:"dependencies,omitempty"`
|
|
|
|
Srcs []string `json:"srcs,omitempty"`
|
|
|
|
Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"`
|
|
|
|
Jarjar_rules []string `json:"jarjar_rules,omitempty"`
|
|
|
|
Jars []string `json:"jars,omitempty"`
|
|
|
|
Classes []string `json:"class,omitempty"`
|
|
|
|
Installed_paths []string `json:"installed,omitempty"`
|
2019-05-10 09:48:50 +02:00
|
|
|
SrcJars []string `json:"srcjars,omitempty"`
|
2018-08-16 00:35:38 +02:00
|
|
|
}
|