Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1 | // Copyright 2015 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 15 | package android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 16 | |
| 17 | import ( |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 18 | "fmt" |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 19 | "path" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 20 | "path/filepath" |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 21 | "sort" |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 22 | "strings" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 23 | "text/scanner" |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 24 | |
| 25 | "github.com/google/blueprint" |
Colin Cross | 7f19f37 | 2016-11-01 11:10:25 -0700 | [diff] [blame] | 26 | "github.com/google/blueprint/pathtools" |
Colin Cross | fe4bc36 | 2018-09-12 10:02:13 -0700 | [diff] [blame] | 27 | "github.com/google/blueprint/proptools" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | var ( |
| 31 | DeviceSharedLibrary = "shared_library" |
| 32 | DeviceStaticLibrary = "static_library" |
| 33 | DeviceExecutable = "executable" |
| 34 | HostSharedLibrary = "host_shared_library" |
| 35 | HostStaticLibrary = "host_static_library" |
| 36 | HostExecutable = "host_executable" |
| 37 | ) |
| 38 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 39 | type BuildParams struct { |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 40 | Rule blueprint.Rule |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 41 | Deps blueprint.Deps |
| 42 | Depfile WritablePath |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 43 | Description string |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 44 | Output WritablePath |
| 45 | Outputs WritablePaths |
| 46 | ImplicitOutput WritablePath |
| 47 | ImplicitOutputs WritablePaths |
| 48 | Input Path |
| 49 | Inputs Paths |
| 50 | Implicit Path |
| 51 | Implicits Paths |
| 52 | OrderOnly Paths |
| 53 | Default bool |
| 54 | Args map[string]string |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 55 | } |
| 56 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 57 | type ModuleBuildParams BuildParams |
| 58 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 59 | type androidBaseContext interface { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 60 | Target() Target |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 61 | TargetPrimary() bool |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 62 | MultiTargets() []Target |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 63 | Arch() Arch |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 64 | Os() OsType |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 65 | Host() bool |
| 66 | Device() bool |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 67 | Darwin() bool |
Doug Horn | 21b9427 | 2019-01-16 12:06:11 -0800 | [diff] [blame] | 68 | Fuchsia() bool |
Colin Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 69 | Windows() bool |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 70 | Debug() bool |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 71 | PrimaryArch() bool |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 72 | Platform() bool |
| 73 | DeviceSpecific() bool |
| 74 | SocSpecific() bool |
| 75 | ProductSpecific() bool |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 76 | ProductServicesSpecific() bool |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 77 | AConfig() Config |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 78 | DeviceConfig() DeviceConfig |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 81 | type BaseContext interface { |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 82 | BaseModuleContext |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 83 | androidBaseContext |
| 84 | } |
| 85 | |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 86 | // BaseModuleContext is the same as blueprint.BaseModuleContext except that Config() returns |
| 87 | // a Config instead of an interface{}. |
| 88 | type BaseModuleContext interface { |
| 89 | ModuleName() string |
| 90 | ModuleDir() string |
| 91 | Config() Config |
| 92 | |
| 93 | ContainsProperty(name string) bool |
| 94 | Errorf(pos scanner.Position, fmt string, args ...interface{}) |
| 95 | ModuleErrorf(fmt string, args ...interface{}) |
| 96 | PropertyErrorf(property, fmt string, args ...interface{}) |
| 97 | Failed() bool |
| 98 | |
| 99 | // GlobWithDeps returns a list of files that match the specified pattern but do not match any |
| 100 | // of the patterns in excludes. It also adds efficient dependencies to rerun the primary |
| 101 | // builder whenever a file matching the pattern as added or removed, without rerunning if a |
| 102 | // file that does not match the pattern is added to a searched directory. |
| 103 | GlobWithDeps(pattern string, excludes []string) ([]string, error) |
| 104 | |
| 105 | Fs() pathtools.FileSystem |
| 106 | AddNinjaFileDeps(deps ...string) |
| 107 | } |
| 108 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 109 | type ModuleContext interface { |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 110 | androidBaseContext |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 111 | BaseModuleContext |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 112 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 113 | // Deprecated: use ModuleContext.Build instead. |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 114 | ModuleBuild(pctx PackageContext, params ModuleBuildParams) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 115 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 116 | ExpandSources(srcFiles, excludes []string) Paths |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 117 | ExpandSource(srcFile, prop string) Path |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 118 | ExpandOptionalSource(srcFile *string, prop string) OptionalPath |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 119 | ExpandSourcesSubDir(srcFiles, excludes []string, subDir string) Paths |
Colin Cross | 7f19f37 | 2016-11-01 11:10:25 -0700 | [diff] [blame] | 120 | Glob(globPattern string, excludes []string) Paths |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 121 | GlobFiles(globPattern string, excludes []string) Paths |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 122 | |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 123 | InstallExecutable(installPath OutputPath, name string, srcPath Path, deps ...Path) OutputPath |
| 124 | InstallFile(installPath OutputPath, name string, srcPath Path, deps ...Path) OutputPath |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 125 | InstallSymlink(installPath OutputPath, name string, srcPath OutputPath) OutputPath |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 126 | CheckbuildFile(srcPath Path) |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 127 | |
| 128 | AddMissingDependencies(deps []string) |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 129 | |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 130 | InstallInData() bool |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 131 | InstallInSanitizerDir() bool |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 132 | InstallInRecovery() bool |
Nan Zhang | 6d34b30 | 2017-02-04 17:47:46 -0800 | [diff] [blame] | 133 | |
| 134 | RequiredModuleNames() []string |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 135 | |
| 136 | // android.ModuleContext methods |
| 137 | // These are duplicated instead of embedded so that can eventually be wrapped to take an |
| 138 | // android.Module instead of a blueprint.Module |
| 139 | OtherModuleName(m blueprint.Module) string |
| 140 | OtherModuleErrorf(m blueprint.Module, fmt string, args ...interface{}) |
| 141 | OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag |
| 142 | |
| 143 | GetDirectDepWithTag(name string, tag blueprint.DependencyTag) blueprint.Module |
| 144 | GetDirectDep(name string) (blueprint.Module, blueprint.DependencyTag) |
| 145 | |
| 146 | ModuleSubDir() string |
| 147 | |
Colin Cross | 35143d0 | 2017-11-16 00:11:20 -0800 | [diff] [blame] | 148 | VisitDirectDepsBlueprint(visit func(blueprint.Module)) |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 149 | VisitDirectDeps(visit func(Module)) |
Colin Cross | ee6143c | 2017-12-30 17:54:27 -0800 | [diff] [blame] | 150 | VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 151 | VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) |
Colin Cross | 6b75360 | 2018-06-21 13:03:07 -0700 | [diff] [blame] | 152 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 153 | VisitDepsDepthFirst(visit func(Module)) |
Colin Cross | 6b75360 | 2018-06-21 13:03:07 -0700 | [diff] [blame] | 154 | // Deprecated: use WalkDeps instead to support multiple dependency tags on the same module |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 155 | VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) |
| 156 | WalkDeps(visit func(Module, Module) bool) |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 157 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 158 | Variable(pctx PackageContext, name, value string) |
| 159 | Rule(pctx PackageContext, name string, params blueprint.RuleParams, argNames ...string) blueprint.Rule |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 160 | // Similar to blueprint.ModuleContext.Build, but takes Paths instead of []string, |
| 161 | // and performs more verification. |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 162 | Build(pctx PackageContext, params BuildParams) |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 163 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 164 | PrimaryModule() Module |
| 165 | FinalModule() Module |
| 166 | VisitAllModuleVariants(visit func(Module)) |
Colin Cross | 3f68a13 | 2017-10-23 17:10:29 -0700 | [diff] [blame] | 167 | |
| 168 | GetMissingDependencies() []string |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 169 | Namespace() blueprint.Namespace |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 170 | } |
| 171 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 172 | type Module interface { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 173 | blueprint.Module |
| 174 | |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 175 | // GenerateAndroidBuildActions is analogous to Blueprints' GenerateBuildActions, |
| 176 | // but GenerateAndroidBuildActions also has access to Android-specific information. |
| 177 | // For more information, see Module.GenerateBuildActions within Blueprint's module_ctx.go |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 178 | GenerateAndroidBuildActions(ModuleContext) |
Jeff Gaston | af3cc2d | 2017-09-27 17:01:44 -0700 | [diff] [blame] | 179 | |
Colin Cross | 1e676be | 2016-10-12 14:38:15 -0700 | [diff] [blame] | 180 | DepsMutator(BottomUpMutatorContext) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 181 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 182 | base() *ModuleBase |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 183 | Enabled() bool |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 184 | Target() Target |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 185 | InstallInData() bool |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 186 | InstallInSanitizerDir() bool |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 187 | InstallInRecovery() bool |
Colin Cross | a2f296f | 2016-11-29 15:16:18 -0800 | [diff] [blame] | 188 | SkipInstall() |
Jiyong Park | 374510b | 2018-03-19 18:23:01 +0900 | [diff] [blame] | 189 | ExportedToMake() bool |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 190 | |
| 191 | AddProperties(props ...interface{}) |
| 192 | GetProperties() []interface{} |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 193 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 194 | BuildParamsForTests() []BuildParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 195 | VariablesForTests() map[string]string |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 196 | } |
| 197 | |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 198 | type nameProperties struct { |
| 199 | // The name of the module. Must be unique across all modules. |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 200 | Name *string |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | type commonProperties struct { |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 204 | // emit build rules for this module |
| 205 | Enabled *bool `android:"arch_variant"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 206 | |
Colin Cross | 7d5136f | 2015-05-11 13:39:40 -0700 | [diff] [blame] | 207 | // control whether this module compiles for 32-bit, 64-bit, or both. Possible values |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 208 | // are "32" (compile for 32-bit only), "64" (compile for 64-bit only), "both" (compile for both |
| 209 | // architectures), or "first" (compile for 64-bit on a 64-bit platform, and 32-bit on a 32-bit |
| 210 | // platform |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 211 | Compile_multilib *string `android:"arch_variant"` |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 212 | |
| 213 | Target struct { |
| 214 | Host struct { |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 215 | Compile_multilib *string |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 216 | } |
| 217 | Android struct { |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 218 | Compile_multilib *string |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 219 | } |
| 220 | } |
| 221 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 222 | UseTargetVariants bool `blueprint:"mutated"` |
| 223 | Default_multilib string `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 224 | |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 225 | // whether this is a proprietary vendor module, and should be installed into /vendor |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 226 | Proprietary *bool |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 227 | |
Colin Cross | 55708f3 | 2017-03-20 13:23:34 -0700 | [diff] [blame] | 228 | // vendor who owns this module |
Dan Willemsen | efac4a8 | 2017-07-18 19:42:09 -0700 | [diff] [blame] | 229 | Owner *string |
Colin Cross | 55708f3 | 2017-03-20 13:23:34 -0700 | [diff] [blame] | 230 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 231 | // whether this module is specific to an SoC (System-On-a-Chip). When set to true, |
| 232 | // it is installed into /vendor (or /system/vendor if vendor partition does not exist). |
| 233 | // Use `soc_specific` instead for better meaning. |
Colin Cross | 7d716ba | 2017-11-01 10:38:29 -0700 | [diff] [blame] | 234 | Vendor *bool |
Dan Willemsen | aa118f9 | 2017-04-06 12:49:58 -0700 | [diff] [blame] | 235 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 236 | // whether this module is specific to an SoC (System-On-a-Chip). When set to true, |
| 237 | // it is installed into /vendor (or /system/vendor if vendor partition does not exist). |
| 238 | Soc_specific *bool |
| 239 | |
| 240 | // whether this module is specific to a device, not only for SoC, but also for off-chip |
| 241 | // peripherals. When set to true, it is installed into /odm (or /vendor/odm if odm partition |
| 242 | // does not exist, or /system/vendor/odm if both odm and vendor partitions do not exist). |
| 243 | // This implies `soc_specific:true`. |
| 244 | Device_specific *bool |
| 245 | |
| 246 | // whether this module is specific to a software configuration of a product (e.g. country, |
Jaekyun Seok | 5cfbfbb | 2018-01-10 19:00:15 +0900 | [diff] [blame] | 247 | // network operator, etc). When set to true, it is installed into /product (or |
| 248 | // /system/product if product partition does not exist). |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 249 | Product_specific *bool |
| 250 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 251 | // whether this module provides services owned by the OS provider to the core platform. When set |
Dario Freni | 95cf767 | 2018-08-17 00:57:57 +0100 | [diff] [blame] | 252 | // to true, it is installed into /product_services (or /system/product_services if |
| 253 | // product_services partition does not exist). |
| 254 | Product_services_specific *bool |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 255 | |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 256 | // Whether this module is installed to recovery partition |
| 257 | Recovery *bool |
| 258 | |
Dan Willemsen | 2277bcb | 2016-07-25 20:27:39 -0700 | [diff] [blame] | 259 | // init.rc files to be installed if this module is installed |
| 260 | Init_rc []string |
| 261 | |
Steven Moreland | 57a23d2 | 2018-04-04 15:42:19 -0700 | [diff] [blame] | 262 | // VINTF manifest fragments to be installed if this module is installed |
| 263 | Vintf_fragments []string |
| 264 | |
Chris Wolfe | 998306e | 2016-08-15 14:47:23 -0400 | [diff] [blame] | 265 | // names of other modules to install if this module is installed |
Colin Cross | c602b7d | 2017-05-05 13:36:36 -0700 | [diff] [blame] | 266 | Required []string `android:"arch_variant"` |
Chris Wolfe | 998306e | 2016-08-15 14:47:23 -0400 | [diff] [blame] | 267 | |
Colin Cross | 5aac362 | 2017-08-31 15:07:09 -0700 | [diff] [blame] | 268 | // relative path to a file to include in the list of notices for the device |
| 269 | Notice *string |
| 270 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 271 | Dist struct { |
| 272 | // copy the output of this module to the $DIST_DIR when `dist` is specified on the |
| 273 | // command line and any of these targets are also on the command line, or otherwise |
| 274 | // built |
| 275 | Targets []string `android:"arch_variant"` |
| 276 | |
| 277 | // The name of the output artifact. This defaults to the basename of the output of |
| 278 | // the module. |
| 279 | Dest *string `android:"arch_variant"` |
| 280 | |
| 281 | // The directory within the dist directory to store the artifact. Defaults to the |
| 282 | // top level directory (""). |
| 283 | Dir *string `android:"arch_variant"` |
| 284 | |
| 285 | // A suffix to add to the artifact file name (before any extension). |
| 286 | Suffix *string `android:"arch_variant"` |
| 287 | } `android:"arch_variant"` |
| 288 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 289 | // Set by TargetMutator |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 290 | CompileTarget Target `blueprint:"mutated"` |
| 291 | CompileMultiTargets []Target `blueprint:"mutated"` |
| 292 | CompilePrimary bool `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 293 | |
| 294 | // Set by InitAndroidModule |
| 295 | HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"` |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 296 | ArchSpecific bool `blueprint:"mutated"` |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 297 | |
| 298 | SkipInstall bool `blueprint:"mutated"` |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 299 | |
| 300 | NamespaceExportedToMake bool `blueprint:"mutated"` |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | type hostAndDeviceProperties struct { |
Colin Cross | 4e81d70 | 2018-11-09 10:36:55 -0800 | [diff] [blame] | 304 | // If set to true, build a variant of the module for the host. Defaults to false. |
| 305 | Host_supported *bool |
| 306 | |
| 307 | // If set to true, build a variant of the module for the device. Defaults to true. |
Colin Cross | a4190c1 | 2016-07-12 13:11:25 -0700 | [diff] [blame] | 308 | Device_supported *bool |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 309 | } |
| 310 | |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 311 | type Multilib string |
| 312 | |
| 313 | const ( |
Colin Cross | 6b4a32d | 2017-12-05 13:42:45 -0800 | [diff] [blame] | 314 | MultilibBoth Multilib = "both" |
| 315 | MultilibFirst Multilib = "first" |
| 316 | MultilibCommon Multilib = "common" |
| 317 | MultilibCommonFirst Multilib = "common_first" |
| 318 | MultilibDefault Multilib = "" |
Colin Cross | c472d57 | 2015-03-17 15:06:21 -0700 | [diff] [blame] | 319 | ) |
| 320 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 321 | type HostOrDeviceSupported int |
| 322 | |
| 323 | const ( |
| 324 | _ HostOrDeviceSupported = iota |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 325 | |
| 326 | // Host and HostCross are built by default. Device is not supported. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 327 | HostSupported |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 328 | |
| 329 | // Host is built by default. HostCross and Device are not supported. |
Dan Albert | c6345fb | 2016-10-20 01:36:11 -0700 | [diff] [blame] | 330 | HostSupportedNoCross |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 331 | |
| 332 | // Device is built by default. Host and HostCross are not supported. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 333 | DeviceSupported |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 334 | |
| 335 | // Device is built by default. Host and HostCross are supported. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 336 | HostAndDeviceSupported |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 337 | |
| 338 | // Host, HostCross, and Device are built by default. |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 339 | HostAndDeviceDefault |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 340 | |
| 341 | // Nothing is supported. This is not exposed to the user, but used to mark a |
| 342 | // host only module as unsupported when the module type is not supported on |
| 343 | // the host OS. E.g. benchmarks are supported on Linux but not Darwin. |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 344 | NeitherHostNorDeviceSupported |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 345 | ) |
| 346 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 347 | type moduleKind int |
| 348 | |
| 349 | const ( |
| 350 | platformModule moduleKind = iota |
| 351 | deviceSpecificModule |
| 352 | socSpecificModule |
| 353 | productSpecificModule |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 354 | productServicesSpecificModule |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 355 | ) |
| 356 | |
| 357 | func (k moduleKind) String() string { |
| 358 | switch k { |
| 359 | case platformModule: |
| 360 | return "platform" |
| 361 | case deviceSpecificModule: |
| 362 | return "device-specific" |
| 363 | case socSpecificModule: |
| 364 | return "soc-specific" |
| 365 | case productSpecificModule: |
| 366 | return "product-specific" |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 367 | case productServicesSpecificModule: |
| 368 | return "productservices-specific" |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 369 | default: |
| 370 | panic(fmt.Errorf("unknown module kind %d", k)) |
| 371 | } |
| 372 | } |
| 373 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 374 | func InitAndroidModule(m Module) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 375 | base := m.base() |
| 376 | base.module = m |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 377 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 378 | m.AddProperties( |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 379 | &base.nameProperties, |
| 380 | &base.commonProperties, |
| 381 | &base.variableProperties) |
Pirama Arumuga Nainar | 955dc49 | 2018-04-17 14:58:42 -0700 | [diff] [blame] | 382 | base.customizableProperties = m.GetProperties() |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 385 | func InitAndroidArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) { |
| 386 | InitAndroidModule(m) |
Colin Cross | 5049f02 | 2015-03-18 13:28:46 -0700 | [diff] [blame] | 387 | |
| 388 | base := m.base() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 389 | base.commonProperties.HostOrDeviceSupported = hod |
Colin Cross | 69617d3 | 2016-09-06 10:39:07 -0700 | [diff] [blame] | 390 | base.commonProperties.Default_multilib = string(defaultMultilib) |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 391 | base.commonProperties.ArchSpecific = true |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 392 | base.commonProperties.UseTargetVariants = true |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 393 | |
Dan Willemsen | 218f656 | 2015-07-08 18:13:11 -0700 | [diff] [blame] | 394 | switch hod { |
Nan Zhang | 1a0f09b | 2017-07-05 10:35:11 -0700 | [diff] [blame] | 395 | case HostAndDeviceSupported, HostAndDeviceDefault: |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 396 | m.AddProperties(&base.hostAndDeviceProperties) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 397 | } |
| 398 | |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 399 | InitArchModule(m) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 400 | } |
| 401 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 402 | func InitAndroidMultiTargetsArchModule(m Module, hod HostOrDeviceSupported, defaultMultilib Multilib) { |
| 403 | InitAndroidArchModule(m, hod, defaultMultilib) |
| 404 | m.base().commonProperties.UseTargetVariants = false |
| 405 | } |
| 406 | |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 407 | // A ModuleBase object contains the properties that are common to all Android |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 408 | // modules. It should be included as an anonymous field in every module |
| 409 | // struct definition. InitAndroidModule should then be called from the module's |
| 410 | // factory function, and the return values from InitAndroidModule should be |
| 411 | // returned from the factory function. |
| 412 | // |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 413 | // The ModuleBase type is responsible for implementing the GenerateBuildActions |
| 414 | // method to support the blueprint.Module interface. This method will then call |
| 415 | // the module's GenerateAndroidBuildActions method once for each build variant |
| 416 | // that is to be built. GenerateAndroidBuildActions is passed a |
| 417 | // AndroidModuleContext rather than the usual blueprint.ModuleContext. |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 418 | // AndroidModuleContext exposes extra functionality specific to the Android build |
| 419 | // system including details about the particular build variant that is to be |
| 420 | // generated. |
| 421 | // |
| 422 | // For example: |
| 423 | // |
| 424 | // import ( |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 425 | // "android/soong/android" |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 426 | // ) |
| 427 | // |
| 428 | // type myModule struct { |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 429 | // android.ModuleBase |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 430 | // properties struct { |
| 431 | // MyProperty string |
| 432 | // } |
| 433 | // } |
| 434 | // |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 435 | // func NewMyModule() android.Module) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 436 | // m := &myModule{} |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 437 | // m.AddProperties(&m.properties) |
| 438 | // android.InitAndroidModule(m) |
| 439 | // return m |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 440 | // } |
| 441 | // |
Nan Zhang | b9eeb1d | 2017-02-02 10:46:07 -0800 | [diff] [blame] | 442 | // func (m *myModule) GenerateAndroidBuildActions(ctx android.ModuleContext) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 443 | // // Get the CPU architecture for the current build variant. |
| 444 | // variantArch := ctx.Arch() |
| 445 | // |
| 446 | // // ... |
| 447 | // } |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 448 | type ModuleBase struct { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 449 | // Putting the curiously recurring thing pointing to the thing that contains |
| 450 | // the thing pattern to good use. |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 451 | // TODO: remove this |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 452 | module Module |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 453 | |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 454 | nameProperties nameProperties |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 455 | commonProperties commonProperties |
Colin Cross | 7f64b6d | 2015-07-09 13:57:48 -0700 | [diff] [blame] | 456 | variableProperties variableProperties |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 457 | hostAndDeviceProperties hostAndDeviceProperties |
| 458 | generalProperties []interface{} |
Colin Cross | c17727d | 2018-10-24 12:42:09 -0700 | [diff] [blame] | 459 | archProperties [][]interface{} |
Colin Cross | a120ec1 | 2016-08-19 16:07:38 -0700 | [diff] [blame] | 460 | customizableProperties []interface{} |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 461 | |
| 462 | noAddressSanitizer bool |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 463 | installFiles Paths |
| 464 | checkbuildFiles Paths |
Jaewoong Jung | 62707f7 | 2018-11-16 13:26:43 -0800 | [diff] [blame] | 465 | noticeFile Path |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 466 | |
| 467 | // Used by buildTargetSingleton to create checkbuild and per-directory build targets |
| 468 | // Only set on the final variant of each module |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 469 | installTarget WritablePath |
| 470 | checkbuildTarget WritablePath |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 471 | blueprintDir string |
Colin Cross | a120ec1 | 2016-08-19 16:07:38 -0700 | [diff] [blame] | 472 | |
Colin Cross | 178a509 | 2016-09-13 13:42:32 -0700 | [diff] [blame] | 473 | hooks hooks |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 474 | |
| 475 | registerProps []interface{} |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 476 | |
| 477 | // For tests |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 478 | buildParams []BuildParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 479 | variables map[string]string |
Colin Cross | a9d8bee | 2018-10-02 13:59:46 -0700 | [diff] [blame] | 480 | |
| 481 | prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | func (a *ModuleBase) AddProperties(props ...interface{}) { |
| 485 | a.registerProps = append(a.registerProps, props...) |
| 486 | } |
| 487 | |
| 488 | func (a *ModuleBase) GetProperties() []interface{} { |
| 489 | return a.registerProps |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 490 | } |
| 491 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 492 | func (a *ModuleBase) BuildParamsForTests() []BuildParams { |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 493 | return a.buildParams |
| 494 | } |
| 495 | |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 496 | func (a *ModuleBase) VariablesForTests() map[string]string { |
| 497 | return a.variables |
| 498 | } |
| 499 | |
Colin Cross | a9d8bee | 2018-10-02 13:59:46 -0700 | [diff] [blame] | 500 | func (a *ModuleBase) Prefer32(prefer32 func(ctx BaseModuleContext, base *ModuleBase, class OsClass) bool) { |
| 501 | a.prefer32 = prefer32 |
| 502 | } |
| 503 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 504 | // Name returns the name of the module. It may be overridden by individual module types, for |
| 505 | // example prebuilts will prepend prebuilt_ to the name. |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 506 | func (a *ModuleBase) Name() string { |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 507 | return String(a.nameProperties.Name) |
Colin Cross | fc75458 | 2016-05-17 16:34:16 -0700 | [diff] [blame] | 508 | } |
| 509 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 510 | // BaseModuleName returns the name of the module as specified in the blueprints file. |
| 511 | func (a *ModuleBase) BaseModuleName() string { |
Nan Zhang | 0007d81 | 2017-11-07 10:57:05 -0800 | [diff] [blame] | 512 | return String(a.nameProperties.Name) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 513 | } |
| 514 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 515 | func (a *ModuleBase) base() *ModuleBase { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 516 | return a |
| 517 | } |
| 518 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 519 | func (a *ModuleBase) SetTarget(target Target, multiTargets []Target, primary bool) { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 520 | a.commonProperties.CompileTarget = target |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 521 | a.commonProperties.CompileMultiTargets = multiTargets |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 522 | a.commonProperties.CompilePrimary = primary |
Colin Cross | d3ba039 | 2015-05-07 14:11:29 -0700 | [diff] [blame] | 523 | } |
| 524 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 525 | func (a *ModuleBase) Target() Target { |
| 526 | return a.commonProperties.CompileTarget |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 527 | } |
| 528 | |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 529 | func (a *ModuleBase) TargetPrimary() bool { |
| 530 | return a.commonProperties.CompilePrimary |
| 531 | } |
| 532 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 533 | func (a *ModuleBase) MultiTargets() []Target { |
| 534 | return a.commonProperties.CompileMultiTargets |
| 535 | } |
| 536 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 537 | func (a *ModuleBase) Os() OsType { |
| 538 | return a.Target().Os |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 539 | } |
| 540 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 541 | func (a *ModuleBase) Host() bool { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 542 | return a.Os().Class == Host || a.Os().Class == HostCross |
Dan Willemsen | 9775052 | 2016-02-09 17:43:51 -0800 | [diff] [blame] | 543 | } |
| 544 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 545 | func (a *ModuleBase) Arch() Arch { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 546 | return a.Target().Arch |
Dan Willemsen | 9775052 | 2016-02-09 17:43:51 -0800 | [diff] [blame] | 547 | } |
| 548 | |
Dan Willemsen | 0b24c74 | 2016-10-04 15:13:37 -0700 | [diff] [blame] | 549 | func (a *ModuleBase) ArchSpecific() bool { |
| 550 | return a.commonProperties.ArchSpecific |
| 551 | } |
| 552 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 553 | func (a *ModuleBase) OsClassSupported() []OsClass { |
| 554 | switch a.commonProperties.HostOrDeviceSupported { |
| 555 | case HostSupported: |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 556 | return []OsClass{Host, HostCross} |
Dan Albert | c6345fb | 2016-10-20 01:36:11 -0700 | [diff] [blame] | 557 | case HostSupportedNoCross: |
| 558 | return []OsClass{Host} |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 559 | case DeviceSupported: |
| 560 | return []OsClass{Device} |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 561 | case HostAndDeviceSupported, HostAndDeviceDefault: |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 562 | var supported []OsClass |
Dan Albert | 0981b5c | 2018-08-02 13:46:35 -0700 | [diff] [blame] | 563 | if Bool(a.hostAndDeviceProperties.Host_supported) || |
| 564 | (a.commonProperties.HostOrDeviceSupported == HostAndDeviceDefault && |
| 565 | a.hostAndDeviceProperties.Host_supported == nil) { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 566 | supported = append(supported, Host, HostCross) |
| 567 | } |
Nan Zhang | 1a0f09b | 2017-07-05 10:35:11 -0700 | [diff] [blame] | 568 | if a.hostAndDeviceProperties.Device_supported == nil || |
| 569 | *a.hostAndDeviceProperties.Device_supported { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 570 | supported = append(supported, Device) |
| 571 | } |
| 572 | return supported |
| 573 | default: |
| 574 | return nil |
| 575 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 576 | } |
| 577 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 578 | func (a *ModuleBase) DeviceSupported() bool { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 579 | return a.commonProperties.HostOrDeviceSupported == DeviceSupported || |
| 580 | a.commonProperties.HostOrDeviceSupported == HostAndDeviceSupported && |
Nan Zhang | 1a0f09b | 2017-07-05 10:35:11 -0700 | [diff] [blame] | 581 | (a.hostAndDeviceProperties.Device_supported == nil || |
| 582 | *a.hostAndDeviceProperties.Device_supported) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 583 | } |
| 584 | |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 585 | func (a *ModuleBase) Platform() bool { |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 586 | return !a.DeviceSpecific() && !a.SocSpecific() && !a.ProductSpecific() && !a.ProductServicesSpecific() |
Jiyong Park | c678ad3 | 2018-04-10 13:07:10 +0900 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | func (a *ModuleBase) DeviceSpecific() bool { |
| 590 | return Bool(a.commonProperties.Device_specific) |
| 591 | } |
| 592 | |
| 593 | func (a *ModuleBase) SocSpecific() bool { |
| 594 | return Bool(a.commonProperties.Vendor) || Bool(a.commonProperties.Proprietary) || Bool(a.commonProperties.Soc_specific) |
| 595 | } |
| 596 | |
| 597 | func (a *ModuleBase) ProductSpecific() bool { |
| 598 | return Bool(a.commonProperties.Product_specific) |
| 599 | } |
| 600 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 601 | func (a *ModuleBase) ProductServicesSpecific() bool { |
Dario Freni | 95cf767 | 2018-08-17 00:57:57 +0100 | [diff] [blame] | 602 | return Bool(a.commonProperties.Product_services_specific) |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 603 | } |
| 604 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 605 | func (a *ModuleBase) Enabled() bool { |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 606 | if a.commonProperties.Enabled == nil { |
Dan Willemsen | 0a37a2a | 2016-11-13 10:16:05 -0800 | [diff] [blame] | 607 | return !a.Os().DefaultDisabled |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 608 | } |
Dan Willemsen | 0effe06 | 2015-11-30 16:06:01 -0800 | [diff] [blame] | 609 | return *a.commonProperties.Enabled |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 610 | } |
| 611 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 612 | func (a *ModuleBase) SkipInstall() { |
| 613 | a.commonProperties.SkipInstall = true |
| 614 | } |
| 615 | |
Jiyong Park | 374510b | 2018-03-19 18:23:01 +0900 | [diff] [blame] | 616 | func (a *ModuleBase) ExportedToMake() bool { |
| 617 | return a.commonProperties.NamespaceExportedToMake |
| 618 | } |
| 619 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 620 | func (a *ModuleBase) computeInstallDeps( |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 621 | ctx blueprint.ModuleContext) Paths { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 622 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 623 | result := Paths{} |
Colin Cross | 6b75360 | 2018-06-21 13:03:07 -0700 | [diff] [blame] | 624 | // TODO(ccross): we need to use WalkDeps and have some way to know which dependencies require installation |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 625 | ctx.VisitDepsDepthFirstIf(isFileInstaller, |
| 626 | func(m blueprint.Module) { |
| 627 | fileInstaller := m.(fileInstaller) |
| 628 | files := fileInstaller.filesToInstall() |
| 629 | result = append(result, files...) |
| 630 | }) |
| 631 | |
| 632 | return result |
| 633 | } |
| 634 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 635 | func (a *ModuleBase) filesToInstall() Paths { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 636 | return a.installFiles |
| 637 | } |
| 638 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 639 | func (p *ModuleBase) NoAddressSanitizer() bool { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 640 | return p.noAddressSanitizer |
| 641 | } |
| 642 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 643 | func (p *ModuleBase) InstallInData() bool { |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 644 | return false |
| 645 | } |
| 646 | |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 647 | func (p *ModuleBase) InstallInSanitizerDir() bool { |
| 648 | return false |
| 649 | } |
| 650 | |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 651 | func (p *ModuleBase) InstallInRecovery() bool { |
| 652 | return Bool(p.commonProperties.Recovery) |
| 653 | } |
| 654 | |
Sundong Ahn | 4fd04bb | 2018-08-31 18:01:37 +0900 | [diff] [blame] | 655 | func (a *ModuleBase) Owner() string { |
| 656 | return String(a.commonProperties.Owner) |
| 657 | } |
| 658 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 659 | func (a *ModuleBase) generateModuleTarget(ctx ModuleContext) { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 660 | allInstalledFiles := Paths{} |
| 661 | allCheckbuildFiles := Paths{} |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 662 | ctx.VisitAllModuleVariants(func(module Module) { |
| 663 | a := module.base() |
Colin Cross | c940435 | 2015-03-26 16:10:12 -0700 | [diff] [blame] | 664 | allInstalledFiles = append(allInstalledFiles, a.installFiles...) |
| 665 | allCheckbuildFiles = append(allCheckbuildFiles, a.checkbuildFiles...) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 666 | }) |
| 667 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 668 | var deps Paths |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 669 | |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 670 | namespacePrefix := ctx.Namespace().(*Namespace).id |
| 671 | if namespacePrefix != "" { |
| 672 | namespacePrefix = namespacePrefix + "-" |
| 673 | } |
| 674 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 675 | if len(allInstalledFiles) > 0 { |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 676 | name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-install") |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 677 | ctx.Build(pctx, BuildParams{ |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 678 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 679 | Output: name, |
| 680 | Implicits: allInstalledFiles, |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 681 | Default: !ctx.Config().EmbeddedInMake(), |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 682 | }) |
| 683 | deps = append(deps, name) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 684 | a.installTarget = name |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 685 | } |
| 686 | |
| 687 | if len(allCheckbuildFiles) > 0 { |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 688 | name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+"-checkbuild") |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 689 | ctx.Build(pctx, BuildParams{ |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 690 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 691 | Output: name, |
| 692 | Implicits: allCheckbuildFiles, |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 693 | }) |
| 694 | deps = append(deps, name) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 695 | a.checkbuildTarget = name |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 696 | } |
| 697 | |
| 698 | if len(deps) > 0 { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 699 | suffix := "" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 700 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 701 | suffix = "-soong" |
| 702 | } |
| 703 | |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 704 | name := PathForPhony(ctx, namespacePrefix+ctx.ModuleName()+suffix) |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 705 | ctx.Build(pctx, BuildParams{ |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 706 | Rule: blueprint.Phony, |
Jeff Gaston | 088e29e | 2017-11-29 16:47:17 -0800 | [diff] [blame] | 707 | Outputs: []WritablePath{name}, |
Colin Cross | 9454bfa | 2015-03-17 13:24:18 -0700 | [diff] [blame] | 708 | Implicits: deps, |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 709 | }) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 710 | |
| 711 | a.blueprintDir = ctx.ModuleDir() |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 712 | } |
| 713 | } |
| 714 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 715 | func determineModuleKind(a *ModuleBase, ctx blueprint.BaseModuleContext) moduleKind { |
| 716 | var socSpecific = Bool(a.commonProperties.Vendor) || Bool(a.commonProperties.Proprietary) || Bool(a.commonProperties.Soc_specific) |
| 717 | var deviceSpecific = Bool(a.commonProperties.Device_specific) |
| 718 | var productSpecific = Bool(a.commonProperties.Product_specific) |
Dario Freni | 95cf767 | 2018-08-17 00:57:57 +0100 | [diff] [blame] | 719 | var productServicesSpecific = Bool(a.commonProperties.Product_services_specific) |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 720 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 721 | msg := "conflicting value set here" |
| 722 | if socSpecific && deviceSpecific { |
| 723 | ctx.PropertyErrorf("device_specific", "a module cannot be specific to SoC and device at the same time.") |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 724 | if Bool(a.commonProperties.Vendor) { |
| 725 | ctx.PropertyErrorf("vendor", msg) |
| 726 | } |
| 727 | if Bool(a.commonProperties.Proprietary) { |
| 728 | ctx.PropertyErrorf("proprietary", msg) |
| 729 | } |
| 730 | if Bool(a.commonProperties.Soc_specific) { |
| 731 | ctx.PropertyErrorf("soc_specific", msg) |
| 732 | } |
| 733 | } |
| 734 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 735 | if productSpecific && productServicesSpecific { |
| 736 | ctx.PropertyErrorf("product_specific", "a module cannot be specific to product and product_services at the same time.") |
| 737 | ctx.PropertyErrorf("product_services_specific", msg) |
| 738 | } |
| 739 | |
| 740 | if (socSpecific || deviceSpecific) && (productSpecific || productServicesSpecific) { |
| 741 | if productSpecific { |
| 742 | ctx.PropertyErrorf("product_specific", "a module cannot be specific to SoC or device and product at the same time.") |
| 743 | } else { |
| 744 | ctx.PropertyErrorf("product_services_specific", "a module cannot be specific to SoC or device and product_services at the same time.") |
| 745 | } |
| 746 | if deviceSpecific { |
| 747 | ctx.PropertyErrorf("device_specific", msg) |
| 748 | } else { |
| 749 | if Bool(a.commonProperties.Vendor) { |
| 750 | ctx.PropertyErrorf("vendor", msg) |
| 751 | } |
| 752 | if Bool(a.commonProperties.Proprietary) { |
| 753 | ctx.PropertyErrorf("proprietary", msg) |
| 754 | } |
| 755 | if Bool(a.commonProperties.Soc_specific) { |
| 756 | ctx.PropertyErrorf("soc_specific", msg) |
| 757 | } |
| 758 | } |
| 759 | } |
| 760 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 761 | if productSpecific { |
| 762 | return productSpecificModule |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 763 | } else if productServicesSpecific { |
| 764 | return productServicesSpecificModule |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 765 | } else if deviceSpecific { |
| 766 | return deviceSpecificModule |
| 767 | } else if socSpecific { |
| 768 | return socSpecificModule |
| 769 | } else { |
| 770 | return platformModule |
| 771 | } |
| 772 | } |
| 773 | |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 774 | func (a *ModuleBase) androidBaseContextFactory(ctx blueprint.BaseModuleContext) androidBaseContextImpl { |
Colin Cross | 6362e27 | 2015-10-29 15:25:03 -0700 | [diff] [blame] | 775 | return androidBaseContextImpl{ |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 776 | target: a.commonProperties.CompileTarget, |
| 777 | targetPrimary: a.commonProperties.CompilePrimary, |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 778 | multiTargets: a.commonProperties.CompileMultiTargets, |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 779 | kind: determineModuleKind(a, ctx), |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 780 | config: ctx.Config().(Config), |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 781 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 782 | } |
| 783 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 784 | func (a *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) { |
| 785 | ctx := &androidModuleContext{ |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 786 | module: a.module, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 787 | ModuleContext: blueprintCtx, |
| 788 | androidBaseContextImpl: a.androidBaseContextFactory(blueprintCtx), |
| 789 | installDeps: a.computeInstallDeps(blueprintCtx), |
Colin Cross | 6362e27 | 2015-10-29 15:25:03 -0700 | [diff] [blame] | 790 | installFiles: a.installFiles, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 791 | missingDeps: blueprintCtx.GetMissingDependencies(), |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 792 | variables: make(map[string]string), |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 793 | } |
| 794 | |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 795 | desc := "//" + ctx.ModuleDir() + ":" + ctx.ModuleName() + " " |
| 796 | var suffix []string |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 797 | if ctx.Os().Class != Device && ctx.Os().Class != Generic { |
| 798 | suffix = append(suffix, ctx.Os().String()) |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 799 | } |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 800 | if !ctx.PrimaryArch() { |
| 801 | suffix = append(suffix, ctx.Arch().ArchType.String()) |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 802 | } |
| 803 | |
| 804 | ctx.Variable(pctx, "moduleDesc", desc) |
| 805 | |
| 806 | s := "" |
| 807 | if len(suffix) > 0 { |
| 808 | s = " [" + strings.Join(suffix, " ") + "]" |
| 809 | } |
| 810 | ctx.Variable(pctx, "moduleDescSuffix", s) |
| 811 | |
Dan Willemsen | 569edc5 | 2018-11-19 09:33:29 -0800 | [diff] [blame] | 812 | // Some common property checks for properties that will be used later in androidmk.go |
| 813 | if a.commonProperties.Dist.Dest != nil { |
| 814 | _, err := validateSafePath(*a.commonProperties.Dist.Dest) |
| 815 | if err != nil { |
| 816 | ctx.PropertyErrorf("dist.dest", "%s", err.Error()) |
| 817 | } |
| 818 | } |
| 819 | if a.commonProperties.Dist.Dir != nil { |
| 820 | _, err := validateSafePath(*a.commonProperties.Dist.Dir) |
| 821 | if err != nil { |
| 822 | ctx.PropertyErrorf("dist.dir", "%s", err.Error()) |
| 823 | } |
| 824 | } |
| 825 | if a.commonProperties.Dist.Suffix != nil { |
| 826 | if strings.Contains(*a.commonProperties.Dist.Suffix, "/") { |
| 827 | ctx.PropertyErrorf("dist.suffix", "Suffix may not contain a '/' character.") |
| 828 | } |
| 829 | } |
| 830 | |
Colin Cross | 9b1d13d | 2016-09-19 15:18:11 -0700 | [diff] [blame] | 831 | if a.Enabled() { |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 832 | a.module.GenerateAndroidBuildActions(ctx) |
Colin Cross | 9b1d13d | 2016-09-19 15:18:11 -0700 | [diff] [blame] | 833 | if ctx.Failed() { |
| 834 | return |
| 835 | } |
| 836 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 837 | a.installFiles = append(a.installFiles, ctx.installFiles...) |
| 838 | a.checkbuildFiles = append(a.checkbuildFiles, ctx.checkbuildFiles...) |
Jaewoong Jung | 62707f7 | 2018-11-16 13:26:43 -0800 | [diff] [blame] | 839 | |
| 840 | if a.commonProperties.Notice != nil { |
| 841 | // For filegroup-based notice file references. |
| 842 | a.noticeFile = ctx.ExpandSource(*a.commonProperties.Notice, "notice") |
| 843 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 844 | } |
| 845 | |
Colin Cross | 9b1d13d | 2016-09-19 15:18:11 -0700 | [diff] [blame] | 846 | if a == ctx.FinalModule().(Module).base() { |
| 847 | a.generateModuleTarget(ctx) |
| 848 | if ctx.Failed() { |
| 849 | return |
| 850 | } |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 851 | } |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 852 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 853 | a.buildParams = ctx.buildParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 854 | a.variables = ctx.variables |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 855 | } |
| 856 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 857 | type androidBaseContextImpl struct { |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 858 | target Target |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 859 | multiTargets []Target |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 860 | targetPrimary bool |
| 861 | debug bool |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 862 | kind moduleKind |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 863 | config Config |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 864 | } |
| 865 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 866 | type androidModuleContext struct { |
| 867 | blueprint.ModuleContext |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 868 | androidBaseContextImpl |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 869 | installDeps Paths |
| 870 | installFiles Paths |
| 871 | checkbuildFiles Paths |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 872 | missingDeps []string |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 873 | module Module |
Colin Cross | cec8171 | 2017-07-13 14:43:27 -0700 | [diff] [blame] | 874 | |
| 875 | // For tests |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 876 | buildParams []BuildParams |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 877 | variables map[string]string |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 878 | } |
| 879 | |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 880 | func (a *androidModuleContext) ninjaError(desc string, outputs []string, err error) { |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 881 | a.ModuleContext.Build(pctx.PackageContext, blueprint.BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 882 | Rule: ErrorRule, |
| 883 | Description: desc, |
| 884 | Outputs: outputs, |
| 885 | Optional: true, |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 886 | Args: map[string]string{ |
| 887 | "error": err.Error(), |
| 888 | }, |
| 889 | }) |
| 890 | return |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 891 | } |
| 892 | |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 893 | func (a *androidModuleContext) Config() Config { |
| 894 | return a.ModuleContext.Config().(Config) |
| 895 | } |
| 896 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 897 | func (a *androidModuleContext) ModuleBuild(pctx PackageContext, params ModuleBuildParams) { |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 898 | a.Build(pctx, BuildParams(params)) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 899 | } |
| 900 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 901 | func convertBuildParams(params BuildParams) blueprint.BuildParams { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 902 | bparams := blueprint.BuildParams{ |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 903 | Rule: params.Rule, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 904 | Description: params.Description, |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 905 | Deps: params.Deps, |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 906 | Outputs: params.Outputs.Strings(), |
| 907 | ImplicitOutputs: params.ImplicitOutputs.Strings(), |
| 908 | Inputs: params.Inputs.Strings(), |
| 909 | Implicits: params.Implicits.Strings(), |
| 910 | OrderOnly: params.OrderOnly.Strings(), |
| 911 | Args: params.Args, |
| 912 | Optional: !params.Default, |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 913 | } |
| 914 | |
Colin Cross | 33bfb0a | 2016-11-21 17:23:08 -0800 | [diff] [blame] | 915 | if params.Depfile != nil { |
| 916 | bparams.Depfile = params.Depfile.String() |
| 917 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 918 | if params.Output != nil { |
| 919 | bparams.Outputs = append(bparams.Outputs, params.Output.String()) |
| 920 | } |
Dan Willemsen | 9f3c574 | 2016-11-03 14:28:31 -0700 | [diff] [blame] | 921 | if params.ImplicitOutput != nil { |
| 922 | bparams.ImplicitOutputs = append(bparams.ImplicitOutputs, params.ImplicitOutput.String()) |
| 923 | } |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 924 | if params.Input != nil { |
| 925 | bparams.Inputs = append(bparams.Inputs, params.Input.String()) |
| 926 | } |
| 927 | if params.Implicit != nil { |
| 928 | bparams.Implicits = append(bparams.Implicits, params.Implicit.String()) |
| 929 | } |
| 930 | |
Colin Cross | fe4bc36 | 2018-09-12 10:02:13 -0700 | [diff] [blame] | 931 | bparams.Outputs = proptools.NinjaEscape(bparams.Outputs) |
| 932 | bparams.ImplicitOutputs = proptools.NinjaEscape(bparams.ImplicitOutputs) |
| 933 | bparams.Inputs = proptools.NinjaEscape(bparams.Inputs) |
| 934 | bparams.Implicits = proptools.NinjaEscape(bparams.Implicits) |
| 935 | bparams.OrderOnly = proptools.NinjaEscape(bparams.OrderOnly) |
| 936 | bparams.Depfile = proptools.NinjaEscape([]string{bparams.Depfile})[0] |
| 937 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 938 | return bparams |
| 939 | } |
| 940 | |
| 941 | func (a *androidModuleContext) Variable(pctx PackageContext, name, value string) { |
Jaewoong Jung | 38e4fb2 | 2018-12-12 09:01:34 -0800 | [diff] [blame] | 942 | if a.config.captureBuild { |
| 943 | a.variables[name] = value |
| 944 | } |
| 945 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 946 | a.ModuleContext.Variable(pctx.PackageContext, name, value) |
| 947 | } |
| 948 | |
| 949 | func (a *androidModuleContext) Rule(pctx PackageContext, name string, params blueprint.RuleParams, |
| 950 | argNames ...string) blueprint.Rule { |
| 951 | |
| 952 | return a.ModuleContext.Rule(pctx.PackageContext, name, params, argNames...) |
| 953 | } |
| 954 | |
| 955 | func (a *androidModuleContext) Build(pctx PackageContext, params BuildParams) { |
| 956 | if a.config.captureBuild { |
| 957 | a.buildParams = append(a.buildParams, params) |
| 958 | } |
| 959 | |
| 960 | bparams := convertBuildParams(params) |
| 961 | |
| 962 | if bparams.Description != "" { |
| 963 | bparams.Description = "${moduleDesc}" + params.Description + "${moduleDescSuffix}" |
| 964 | } |
| 965 | |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 966 | if a.missingDeps != nil { |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 967 | a.ninjaError(bparams.Description, bparams.Outputs, |
| 968 | fmt.Errorf("module %s missing dependencies: %s\n", |
| 969 | a.ModuleName(), strings.Join(a.missingDeps, ", "))) |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 970 | return |
| 971 | } |
| 972 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 973 | a.ModuleContext.Build(pctx.PackageContext, bparams) |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 974 | } |
| 975 | |
Colin Cross | 6ff5138 | 2015-12-17 16:39:19 -0800 | [diff] [blame] | 976 | func (a *androidModuleContext) GetMissingDependencies() []string { |
| 977 | return a.missingDeps |
| 978 | } |
| 979 | |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 980 | func (a *androidModuleContext) AddMissingDependencies(deps []string) { |
| 981 | if deps != nil { |
| 982 | a.missingDeps = append(a.missingDeps, deps...) |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 983 | a.missingDeps = FirstUniqueStrings(a.missingDeps) |
Dan Willemsen | 6553f5e | 2016-03-10 18:14:25 -0800 | [diff] [blame] | 984 | } |
| 985 | } |
| 986 | |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 987 | func (a *androidModuleContext) validateAndroidModule(module blueprint.Module) Module { |
| 988 | aModule, _ := module.(Module) |
| 989 | if aModule == nil { |
| 990 | a.ModuleErrorf("module %q not an android module", a.OtherModuleName(aModule)) |
| 991 | return nil |
| 992 | } |
| 993 | |
| 994 | if !aModule.Enabled() { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 995 | if a.Config().AllowMissingDependencies() { |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 996 | a.AddMissingDependencies([]string{a.OtherModuleName(aModule)}) |
| 997 | } else { |
| 998 | a.ModuleErrorf("depends on disabled module %q", a.OtherModuleName(aModule)) |
| 999 | } |
| 1000 | return nil |
| 1001 | } |
| 1002 | |
| 1003 | return aModule |
| 1004 | } |
| 1005 | |
Colin Cross | 35143d0 | 2017-11-16 00:11:20 -0800 | [diff] [blame] | 1006 | func (a *androidModuleContext) VisitDirectDepsBlueprint(visit func(blueprint.Module)) { |
| 1007 | a.ModuleContext.VisitDirectDeps(visit) |
| 1008 | } |
| 1009 | |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 1010 | func (a *androidModuleContext) VisitDirectDeps(visit func(Module)) { |
| 1011 | a.ModuleContext.VisitDirectDeps(func(module blueprint.Module) { |
| 1012 | if aModule := a.validateAndroidModule(module); aModule != nil { |
| 1013 | visit(aModule) |
| 1014 | } |
| 1015 | }) |
| 1016 | } |
| 1017 | |
Colin Cross | ee6143c | 2017-12-30 17:54:27 -0800 | [diff] [blame] | 1018 | func (a *androidModuleContext) VisitDirectDepsWithTag(tag blueprint.DependencyTag, visit func(Module)) { |
| 1019 | a.ModuleContext.VisitDirectDeps(func(module blueprint.Module) { |
| 1020 | if aModule := a.validateAndroidModule(module); aModule != nil { |
| 1021 | if a.ModuleContext.OtherModuleDependencyTag(aModule) == tag { |
| 1022 | visit(aModule) |
| 1023 | } |
| 1024 | } |
| 1025 | }) |
| 1026 | } |
| 1027 | |
Colin Cross | d11fcda | 2017-10-23 17:59:01 -0700 | [diff] [blame] | 1028 | func (a *androidModuleContext) VisitDirectDepsIf(pred func(Module) bool, visit func(Module)) { |
| 1029 | a.ModuleContext.VisitDirectDepsIf( |
| 1030 | // pred |
| 1031 | func(module blueprint.Module) bool { |
| 1032 | if aModule := a.validateAndroidModule(module); aModule != nil { |
| 1033 | return pred(aModule) |
| 1034 | } else { |
| 1035 | return false |
| 1036 | } |
| 1037 | }, |
| 1038 | // visit |
| 1039 | func(module blueprint.Module) { |
| 1040 | visit(module.(Module)) |
| 1041 | }) |
| 1042 | } |
| 1043 | |
| 1044 | func (a *androidModuleContext) VisitDepsDepthFirst(visit func(Module)) { |
| 1045 | a.ModuleContext.VisitDepsDepthFirst(func(module blueprint.Module) { |
| 1046 | if aModule := a.validateAndroidModule(module); aModule != nil { |
| 1047 | visit(aModule) |
| 1048 | } |
| 1049 | }) |
| 1050 | } |
| 1051 | |
| 1052 | func (a *androidModuleContext) VisitDepsDepthFirstIf(pred func(Module) bool, visit func(Module)) { |
| 1053 | a.ModuleContext.VisitDepsDepthFirstIf( |
| 1054 | // pred |
| 1055 | func(module blueprint.Module) bool { |
| 1056 | if aModule := a.validateAndroidModule(module); aModule != nil { |
| 1057 | return pred(aModule) |
| 1058 | } else { |
| 1059 | return false |
| 1060 | } |
| 1061 | }, |
| 1062 | // visit |
| 1063 | func(module blueprint.Module) { |
| 1064 | visit(module.(Module)) |
| 1065 | }) |
| 1066 | } |
| 1067 | |
| 1068 | func (a *androidModuleContext) WalkDeps(visit func(Module, Module) bool) { |
| 1069 | a.ModuleContext.WalkDeps(func(child, parent blueprint.Module) bool { |
| 1070 | childAndroidModule := a.validateAndroidModule(child) |
| 1071 | parentAndroidModule := a.validateAndroidModule(parent) |
| 1072 | if childAndroidModule != nil && parentAndroidModule != nil { |
| 1073 | return visit(childAndroidModule, parentAndroidModule) |
| 1074 | } else { |
| 1075 | return false |
| 1076 | } |
| 1077 | }) |
| 1078 | } |
| 1079 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1080 | func (a *androidModuleContext) VisitAllModuleVariants(visit func(Module)) { |
| 1081 | a.ModuleContext.VisitAllModuleVariants(func(module blueprint.Module) { |
| 1082 | visit(module.(Module)) |
| 1083 | }) |
| 1084 | } |
| 1085 | |
| 1086 | func (a *androidModuleContext) PrimaryModule() Module { |
| 1087 | return a.ModuleContext.PrimaryModule().(Module) |
| 1088 | } |
| 1089 | |
| 1090 | func (a *androidModuleContext) FinalModule() Module { |
| 1091 | return a.ModuleContext.FinalModule().(Module) |
| 1092 | } |
| 1093 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1094 | func (a *androidBaseContextImpl) Target() Target { |
| 1095 | return a.target |
| 1096 | } |
| 1097 | |
Colin Cross | 8b74d17 | 2016-09-13 09:59:14 -0700 | [diff] [blame] | 1098 | func (a *androidBaseContextImpl) TargetPrimary() bool { |
| 1099 | return a.targetPrimary |
| 1100 | } |
| 1101 | |
Colin Cross | ee0bc3b | 2018-10-02 22:01:37 -0700 | [diff] [blame] | 1102 | func (a *androidBaseContextImpl) MultiTargets() []Target { |
| 1103 | return a.multiTargets |
| 1104 | } |
| 1105 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1106 | func (a *androidBaseContextImpl) Arch() Arch { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1107 | return a.target.Arch |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1108 | } |
| 1109 | |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1110 | func (a *androidBaseContextImpl) Os() OsType { |
| 1111 | return a.target.Os |
Dan Willemsen | 490fd49 | 2015-11-24 17:53:15 -0800 | [diff] [blame] | 1112 | } |
| 1113 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1114 | func (a *androidBaseContextImpl) Host() bool { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1115 | return a.target.Os.Class == Host || a.target.Os.Class == HostCross |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1116 | } |
| 1117 | |
| 1118 | func (a *androidBaseContextImpl) Device() bool { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1119 | return a.target.Os.Class == Device |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1120 | } |
| 1121 | |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 1122 | func (a *androidBaseContextImpl) Darwin() bool { |
Colin Cross | a1ad8d1 | 2016-06-01 17:09:44 -0700 | [diff] [blame] | 1123 | return a.target.Os == Darwin |
Colin Cross | 0af4b84 | 2015-04-30 16:36:18 -0700 | [diff] [blame] | 1124 | } |
| 1125 | |
Doug Horn | 21b9427 | 2019-01-16 12:06:11 -0800 | [diff] [blame] | 1126 | func (a *androidBaseContextImpl) Fuchsia() bool { |
| 1127 | return a.target.Os == Fuchsia |
| 1128 | } |
| 1129 | |
Colin Cross | 3edeee1 | 2017-04-04 12:59:48 -0700 | [diff] [blame] | 1130 | func (a *androidBaseContextImpl) Windows() bool { |
| 1131 | return a.target.Os == Windows |
| 1132 | } |
| 1133 | |
Colin Cross | f6566ed | 2015-03-24 11:13:38 -0700 | [diff] [blame] | 1134 | func (a *androidBaseContextImpl) Debug() bool { |
| 1135 | return a.debug |
| 1136 | } |
| 1137 | |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 1138 | func (a *androidBaseContextImpl) PrimaryArch() bool { |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 1139 | if len(a.config.Targets[a.target.Os]) <= 1 { |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1140 | return true |
| 1141 | } |
Dan Willemsen | 0ef639b | 2018-10-10 17:02:29 -0700 | [diff] [blame] | 1142 | return a.target.Arch.ArchType == a.config.Targets[a.target.Os][0].Arch.ArchType |
Colin Cross | 1e7d370 | 2016-08-24 15:25:47 -0700 | [diff] [blame] | 1143 | } |
| 1144 | |
Colin Cross | 1332b00 | 2015-04-07 17:11:30 -0700 | [diff] [blame] | 1145 | func (a *androidBaseContextImpl) AConfig() Config { |
| 1146 | return a.config |
| 1147 | } |
| 1148 | |
Colin Cross | 9272ade | 2016-08-17 15:24:12 -0700 | [diff] [blame] | 1149 | func (a *androidBaseContextImpl) DeviceConfig() DeviceConfig { |
| 1150 | return DeviceConfig{a.config.deviceConfig} |
| 1151 | } |
| 1152 | |
Jiyong Park | 2db7692 | 2017-11-08 16:03:48 +0900 | [diff] [blame] | 1153 | func (a *androidBaseContextImpl) Platform() bool { |
| 1154 | return a.kind == platformModule |
| 1155 | } |
| 1156 | |
| 1157 | func (a *androidBaseContextImpl) DeviceSpecific() bool { |
| 1158 | return a.kind == deviceSpecificModule |
| 1159 | } |
| 1160 | |
| 1161 | func (a *androidBaseContextImpl) SocSpecific() bool { |
| 1162 | return a.kind == socSpecificModule |
| 1163 | } |
| 1164 | |
| 1165 | func (a *androidBaseContextImpl) ProductSpecific() bool { |
| 1166 | return a.kind == productSpecificModule |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 1167 | } |
| 1168 | |
Dario Freni | fd05a74 | 2018-05-29 13:28:54 +0100 | [diff] [blame] | 1169 | func (a *androidBaseContextImpl) ProductServicesSpecific() bool { |
| 1170 | return a.kind == productServicesSpecificModule |
| 1171 | } |
| 1172 | |
Jiyong Park | 5baac54 | 2018-08-28 09:55:37 +0900 | [diff] [blame] | 1173 | // Makes this module a platform module, i.e. not specific to soc, device, |
| 1174 | // product, or product_services. |
| 1175 | func (a *ModuleBase) MakeAsPlatform() { |
| 1176 | a.commonProperties.Vendor = boolPtr(false) |
| 1177 | a.commonProperties.Proprietary = boolPtr(false) |
| 1178 | a.commonProperties.Soc_specific = boolPtr(false) |
| 1179 | a.commonProperties.Product_specific = boolPtr(false) |
| 1180 | a.commonProperties.Product_services_specific = boolPtr(false) |
| 1181 | } |
| 1182 | |
Colin Cross | 8d8f8e2 | 2016-08-03 11:57:50 -0700 | [diff] [blame] | 1183 | func (a *androidModuleContext) InstallInData() bool { |
| 1184 | return a.module.InstallInData() |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 1185 | } |
| 1186 | |
Vishwath Mohan | 1dd8839 | 2017-03-29 22:00:18 -0700 | [diff] [blame] | 1187 | func (a *androidModuleContext) InstallInSanitizerDir() bool { |
| 1188 | return a.module.InstallInSanitizerDir() |
| 1189 | } |
| 1190 | |
Jiyong Park | f9332f1 | 2018-02-01 00:54:12 +0900 | [diff] [blame] | 1191 | func (a *androidModuleContext) InstallInRecovery() bool { |
| 1192 | return a.module.InstallInRecovery() |
| 1193 | } |
| 1194 | |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1195 | func (a *androidModuleContext) skipInstall(fullInstallPath OutputPath) bool { |
| 1196 | if a.module.base().commonProperties.SkipInstall { |
| 1197 | return true |
| 1198 | } |
| 1199 | |
Colin Cross | 3607f21 | 2018-05-07 15:28:05 -0700 | [diff] [blame] | 1200 | // We'll need a solution for choosing which of modules with the same name in different |
| 1201 | // namespaces to install. For now, reuse the list of namespaces exported to Make as the |
| 1202 | // list of namespaces to install in a Soong-only build. |
| 1203 | if !a.module.base().commonProperties.NamespaceExportedToMake { |
| 1204 | return true |
| 1205 | } |
| 1206 | |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1207 | if a.Device() { |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1208 | if a.Config().SkipDeviceInstall() { |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1209 | return true |
| 1210 | } |
| 1211 | |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1212 | if a.Config().SkipMegaDeviceInstall(fullInstallPath.String()) { |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1213 | return true |
| 1214 | } |
| 1215 | } |
| 1216 | |
| 1217 | return false |
| 1218 | } |
| 1219 | |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 1220 | func (a *androidModuleContext) InstallFile(installPath OutputPath, name string, srcPath Path, |
Colin Cross | a234466 | 2016-03-24 13:14:12 -0700 | [diff] [blame] | 1221 | deps ...Path) OutputPath { |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 1222 | return a.installFile(installPath, name, srcPath, Cp, deps) |
| 1223 | } |
| 1224 | |
| 1225 | func (a *androidModuleContext) InstallExecutable(installPath OutputPath, name string, srcPath Path, |
| 1226 | deps ...Path) OutputPath { |
| 1227 | return a.installFile(installPath, name, srcPath, CpExecutable, deps) |
| 1228 | } |
| 1229 | |
| 1230 | func (a *androidModuleContext) installFile(installPath OutputPath, name string, srcPath Path, |
| 1231 | rule blueprint.Rule, deps []Path) OutputPath { |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 1232 | |
Dan Willemsen | 782a2d1 | 2015-12-21 14:55:28 -0800 | [diff] [blame] | 1233 | fullInstallPath := installPath.Join(a, name) |
Colin Cross | 178a509 | 2016-09-13 13:42:32 -0700 | [diff] [blame] | 1234 | a.module.base().hooks.runInstallHooks(a, fullInstallPath, false) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1235 | |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1236 | if !a.skipInstall(fullInstallPath) { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1237 | |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 1238 | deps = append(deps, a.installDeps...) |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 1239 | |
Colin Cross | 89562dc | 2016-10-03 17:47:19 -0700 | [diff] [blame] | 1240 | var implicitDeps, orderOnlyDeps Paths |
| 1241 | |
| 1242 | if a.Host() { |
| 1243 | // Installed host modules might be used during the build, depend directly on their |
| 1244 | // dependencies so their timestamp is updated whenever their dependency is updated |
| 1245 | implicitDeps = deps |
| 1246 | } else { |
| 1247 | orderOnlyDeps = deps |
| 1248 | } |
| 1249 | |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 1250 | a.Build(pctx, BuildParams{ |
Colin Cross | 5c51792 | 2017-08-31 12:29:17 -0700 | [diff] [blame] | 1251 | Rule: rule, |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1252 | Description: "install " + fullInstallPath.Base(), |
| 1253 | Output: fullInstallPath, |
| 1254 | Input: srcPath, |
| 1255 | Implicits: implicitDeps, |
| 1256 | OrderOnly: orderOnlyDeps, |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1257 | Default: !a.Config().EmbeddedInMake(), |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 1258 | }) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1259 | |
Dan Willemsen | 322acaf | 2016-01-12 23:07:05 -0800 | [diff] [blame] | 1260 | a.installFiles = append(a.installFiles, fullInstallPath) |
| 1261 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1262 | a.checkbuildFiles = append(a.checkbuildFiles, srcPath) |
Colin Cross | 35cec12 | 2015-04-02 14:37:16 -0700 | [diff] [blame] | 1263 | return fullInstallPath |
| 1264 | } |
| 1265 | |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1266 | func (a *androidModuleContext) InstallSymlink(installPath OutputPath, name string, srcPath OutputPath) OutputPath { |
| 1267 | fullInstallPath := installPath.Join(a, name) |
Colin Cross | 178a509 | 2016-09-13 13:42:32 -0700 | [diff] [blame] | 1268 | a.module.base().hooks.runInstallHooks(a, fullInstallPath, true) |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1269 | |
Colin Cross | 893d816 | 2017-04-26 17:34:03 -0700 | [diff] [blame] | 1270 | if !a.skipInstall(fullInstallPath) { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1271 | |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 1272 | relPath, err := filepath.Rel(path.Dir(fullInstallPath.String()), srcPath.String()) |
| 1273 | if err != nil { |
| 1274 | panic(fmt.Sprintf("Unable to generate symlink between %q and %q: %s", fullInstallPath.Base(), srcPath.Base(), err)) |
| 1275 | } |
Colin Cross | ae88703 | 2017-10-23 17:16:14 -0700 | [diff] [blame] | 1276 | a.Build(pctx, BuildParams{ |
Colin Cross | 67a5c13 | 2017-05-09 13:45:28 -0700 | [diff] [blame] | 1277 | Rule: Symlink, |
| 1278 | Description: "install symlink " + fullInstallPath.Base(), |
| 1279 | Output: fullInstallPath, |
| 1280 | OrderOnly: Paths{srcPath}, |
Colin Cross | 6510f91 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1281 | Default: !a.Config().EmbeddedInMake(), |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1282 | Args: map[string]string{ |
Alex Light | fb4353d | 2019-01-17 13:57:45 -0800 | [diff] [blame] | 1283 | "fromPath": relPath, |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1284 | }, |
| 1285 | }) |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1286 | |
Colin Cross | 12fc497 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1287 | a.installFiles = append(a.installFiles, fullInstallPath) |
| 1288 | a.checkbuildFiles = append(a.checkbuildFiles, srcPath) |
| 1289 | } |
Colin Cross | 3854a60 | 2016-01-11 12:49:11 -0800 | [diff] [blame] | 1290 | return fullInstallPath |
| 1291 | } |
| 1292 | |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1293 | func (a *androidModuleContext) CheckbuildFile(srcPath Path) { |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1294 | a.checkbuildFiles = append(a.checkbuildFiles, srcPath) |
| 1295 | } |
| 1296 | |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1297 | type fileInstaller interface { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1298 | filesToInstall() Paths |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | func isFileInstaller(m blueprint.Module) bool { |
| 1302 | _, ok := m.(fileInstaller) |
| 1303 | return ok |
| 1304 | } |
| 1305 | |
| 1306 | func isAndroidModule(m blueprint.Module) bool { |
Colin Cross | 635c3b0 | 2016-05-18 15:37:25 -0700 | [diff] [blame] | 1307 | _, ok := m.(Module) |
Colin Cross | 3f40fa4 | 2015-01-30 17:27:36 -0800 | [diff] [blame] | 1308 | return ok |
| 1309 | } |
Colin Cross | fce5327 | 2015-04-08 11:21:40 -0700 | [diff] [blame] | 1310 | |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 1311 | func findStringInSlice(str string, slice []string) int { |
| 1312 | for i, s := range slice { |
| 1313 | if s == str { |
| 1314 | return i |
Colin Cross | fce5327 | 2015-04-08 11:21:40 -0700 | [diff] [blame] | 1315 | } |
| 1316 | } |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 1317 | return -1 |
| 1318 | } |
| 1319 | |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1320 | func SrcIsModule(s string) string { |
| 1321 | if len(s) > 1 && s[0] == ':' { |
| 1322 | return s[1:] |
| 1323 | } |
| 1324 | return "" |
| 1325 | } |
| 1326 | |
| 1327 | type sourceDependencyTag struct { |
| 1328 | blueprint.BaseDependencyTag |
| 1329 | } |
| 1330 | |
| 1331 | var SourceDepTag sourceDependencyTag |
| 1332 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1333 | // Adds necessary dependencies to satisfy filegroup or generated sources modules listed in srcFiles |
| 1334 | // using ":module" syntax, if any. |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1335 | func ExtractSourcesDeps(ctx BottomUpMutatorContext, srcFiles []string) { |
| 1336 | var deps []string |
Nan Zhang | 2439eb7 | 2017-04-10 11:27:50 -0700 | [diff] [blame] | 1337 | set := make(map[string]bool) |
| 1338 | |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1339 | for _, s := range srcFiles { |
| 1340 | if m := SrcIsModule(s); m != "" { |
Nan Zhang | 2439eb7 | 2017-04-10 11:27:50 -0700 | [diff] [blame] | 1341 | if _, found := set[m]; found { |
| 1342 | ctx.ModuleErrorf("found source dependency duplicate: %q!", m) |
| 1343 | } else { |
| 1344 | set[m] = true |
| 1345 | deps = append(deps, m) |
| 1346 | } |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1347 | } |
| 1348 | } |
| 1349 | |
| 1350 | ctx.AddDependency(ctx.Module(), SourceDepTag, deps...) |
| 1351 | } |
| 1352 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1353 | // Adds necessary dependencies to satisfy filegroup or generated sources modules specified in s |
| 1354 | // using ":module" syntax, if any. |
| 1355 | func ExtractSourceDeps(ctx BottomUpMutatorContext, s *string) { |
| 1356 | if s != nil { |
| 1357 | if m := SrcIsModule(*s); m != "" { |
| 1358 | ctx.AddDependency(ctx.Module(), SourceDepTag, m) |
| 1359 | } |
| 1360 | } |
| 1361 | } |
| 1362 | |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1363 | type SourceFileProducer interface { |
| 1364 | Srcs() Paths |
| 1365 | } |
| 1366 | |
| 1367 | // Returns a list of paths expanded from globs and modules referenced using ":module" syntax. |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1368 | // ExtractSourcesDeps must have already been called during the dependency resolution phase. |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1369 | func (ctx *androidModuleContext) ExpandSources(srcFiles, excludes []string) Paths { |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1370 | return ctx.ExpandSourcesSubDir(srcFiles, excludes, "") |
| 1371 | } |
| 1372 | |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1373 | // Returns a single path expanded from globs and modules referenced using ":module" syntax. |
| 1374 | // ExtractSourceDeps must have already been called during the dependency resolution phase. |
| 1375 | func (ctx *androidModuleContext) ExpandSource(srcFile, prop string) Path { |
| 1376 | srcFiles := ctx.ExpandSourcesSubDir([]string{srcFile}, nil, "") |
| 1377 | if len(srcFiles) == 1 { |
| 1378 | return srcFiles[0] |
Jaewoong Jung | 62707f7 | 2018-11-16 13:26:43 -0800 | [diff] [blame] | 1379 | } else if len(srcFiles) == 0 { |
| 1380 | if ctx.Config().AllowMissingDependencies() { |
| 1381 | ctx.AddMissingDependencies([]string{srcFile}) |
| 1382 | } else { |
| 1383 | ctx.PropertyErrorf(prop, "%s path %s does not exist", prop, srcFile) |
| 1384 | } |
| 1385 | return nil |
Colin Cross | 366938f | 2017-12-11 16:29:02 -0800 | [diff] [blame] | 1386 | } else { |
| 1387 | ctx.PropertyErrorf(prop, "module providing %s must produce exactly one file", prop) |
| 1388 | return nil |
| 1389 | } |
| 1390 | } |
| 1391 | |
Colin Cross | 2383f3b | 2018-02-06 14:40:13 -0800 | [diff] [blame] | 1392 | // Returns an optional single path expanded from globs and modules referenced using ":module" syntax if |
| 1393 | // the srcFile is non-nil. |
| 1394 | // ExtractSourceDeps must have already been called during the dependency resolution phase. |
| 1395 | func (ctx *androidModuleContext) ExpandOptionalSource(srcFile *string, prop string) OptionalPath { |
| 1396 | if srcFile != nil { |
| 1397 | return OptionalPathForPath(ctx.ExpandSource(*srcFile, prop)) |
| 1398 | } |
| 1399 | return OptionalPath{} |
| 1400 | } |
| 1401 | |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1402 | func (ctx *androidModuleContext) ExpandSourcesSubDir(srcFiles, excludes []string, subDir string) Paths { |
Dan Willemsen | 34cc69e | 2015-09-23 15:26:20 -0700 | [diff] [blame] | 1403 | prefix := PathForModuleSrc(ctx).String() |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1404 | |
Colin Cross | 461b445 | 2018-02-23 09:22:42 -0800 | [diff] [blame] | 1405 | var expandedExcludes []string |
| 1406 | if excludes != nil { |
| 1407 | expandedExcludes = make([]string, 0, len(excludes)) |
| 1408 | } |
Nan Zhang | 27e284d | 2018-02-09 21:03:53 +0000 | [diff] [blame] | 1409 | |
| 1410 | for _, e := range excludes { |
| 1411 | if m := SrcIsModule(e); m != "" { |
| 1412 | module := ctx.GetDirectDepWithTag(m, SourceDepTag) |
| 1413 | if module == nil { |
| 1414 | // Error will have been handled by ExtractSourcesDeps |
| 1415 | continue |
| 1416 | } |
| 1417 | if srcProducer, ok := module.(SourceFileProducer); ok { |
| 1418 | expandedExcludes = append(expandedExcludes, srcProducer.Srcs().Strings()...) |
| 1419 | } else { |
| 1420 | ctx.ModuleErrorf("srcs dependency %q is not a source file producing module", m) |
| 1421 | } |
| 1422 | } else { |
| 1423 | expandedExcludes = append(expandedExcludes, filepath.Join(prefix, e)) |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 1424 | } |
Dan Willemsen | 2ef08f4 | 2015-06-30 18:15:24 -0700 | [diff] [blame] | 1425 | } |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1426 | expandedSrcFiles := make(Paths, 0, len(srcFiles)) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 1427 | for _, s := range srcFiles { |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1428 | if m := SrcIsModule(s); m != "" { |
| 1429 | module := ctx.GetDirectDepWithTag(m, SourceDepTag) |
Colin Cross | 0617bb8 | 2017-10-24 13:01:18 -0700 | [diff] [blame] | 1430 | if module == nil { |
| 1431 | // Error will have been handled by ExtractSourcesDeps |
| 1432 | continue |
| 1433 | } |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1434 | if srcProducer, ok := module.(SourceFileProducer); ok { |
Nan Zhang | 27e284d | 2018-02-09 21:03:53 +0000 | [diff] [blame] | 1435 | moduleSrcs := srcProducer.Srcs() |
| 1436 | for _, e := range expandedExcludes { |
| 1437 | for j, ms := range moduleSrcs { |
| 1438 | if ms.String() == e { |
| 1439 | moduleSrcs = append(moduleSrcs[:j], moduleSrcs[j+1:]...) |
| 1440 | } |
| 1441 | } |
| 1442 | } |
| 1443 | expandedSrcFiles = append(expandedSrcFiles, moduleSrcs...) |
Colin Cross | 068e0fe | 2016-12-13 15:23:47 -0800 | [diff] [blame] | 1444 | } else { |
| 1445 | ctx.ModuleErrorf("srcs dependency %q is not a source file producing module", m) |
| 1446 | } |
| 1447 | } else if pathtools.IsGlob(s) { |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 1448 | globbedSrcFiles := ctx.GlobFiles(filepath.Join(prefix, s), expandedExcludes) |
Colin Cross | 05a39cb | 2017-10-09 13:35:19 -0700 | [diff] [blame] | 1449 | for i, s := range globbedSrcFiles { |
| 1450 | globbedSrcFiles[i] = s.(ModuleSrcPath).WithSubDir(ctx, subDir) |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1451 | } |
Colin Cross | 05a39cb | 2017-10-09 13:35:19 -0700 | [diff] [blame] | 1452 | expandedSrcFiles = append(expandedSrcFiles, globbedSrcFiles...) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 1453 | } else { |
Nan Zhang | 27e284d | 2018-02-09 21:03:53 +0000 | [diff] [blame] | 1454 | p := PathForModuleSrc(ctx, s).WithSubDir(ctx, subDir) |
| 1455 | j := findStringInSlice(p.String(), expandedExcludes) |
| 1456 | if j == -1 { |
| 1457 | expandedSrcFiles = append(expandedSrcFiles, p) |
| 1458 | } |
| 1459 | |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 1460 | } |
| 1461 | } |
Colin Cross | faeb7aa | 2017-02-01 14:12:44 -0800 | [diff] [blame] | 1462 | return expandedSrcFiles |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
Nan Zhang | 6d34b30 | 2017-02-04 17:47:46 -0800 | [diff] [blame] | 1465 | func (ctx *androidModuleContext) RequiredModuleNames() []string { |
| 1466 | return ctx.module.base().commonProperties.Required |
| 1467 | } |
| 1468 | |
Colin Cross | 7f19f37 | 2016-11-01 11:10:25 -0700 | [diff] [blame] | 1469 | func (ctx *androidModuleContext) Glob(globPattern string, excludes []string) Paths { |
| 1470 | ret, err := ctx.GlobWithDeps(globPattern, excludes) |
Colin Cross | 8f101b4 | 2015-06-17 15:09:06 -0700 | [diff] [blame] | 1471 | if err != nil { |
| 1472 | ctx.ModuleErrorf("glob: %s", err.Error()) |
| 1473 | } |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 1474 | return pathsForModuleSrcFromFullPath(ctx, ret, true) |
Colin Cross | fce5327 | 2015-04-08 11:21:40 -0700 | [diff] [blame] | 1475 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1476 | |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 1477 | func (ctx *androidModuleContext) GlobFiles(globPattern string, excludes []string) Paths { |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 1478 | ret, err := ctx.GlobWithDeps(globPattern, excludes) |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 1479 | if err != nil { |
| 1480 | ctx.ModuleErrorf("glob: %s", err.Error()) |
| 1481 | } |
Dan Willemsen | 540a78c | 2018-02-26 21:50:08 -0800 | [diff] [blame] | 1482 | return pathsForModuleSrcFromFullPath(ctx, ret, false) |
Nan Zhang | 581fd21 | 2018-01-10 16:06:12 -0800 | [diff] [blame] | 1483 | } |
| 1484 | |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 1485 | func init() { |
Colin Cross | 798bfce | 2016-10-12 14:28:16 -0700 | [diff] [blame] | 1486 | RegisterSingletonType("buildtarget", BuildTargetSingleton) |
Colin Cross | 463a90e | 2015-06-17 14:20:06 -0700 | [diff] [blame] | 1487 | } |
| 1488 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1489 | func BuildTargetSingleton() Singleton { |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1490 | return &buildTargetSingleton{} |
| 1491 | } |
| 1492 | |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 1493 | func parentDir(dir string) string { |
| 1494 | dir, _ = filepath.Split(dir) |
| 1495 | return filepath.Clean(dir) |
| 1496 | } |
| 1497 | |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1498 | type buildTargetSingleton struct{} |
| 1499 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1500 | func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) { |
| 1501 | var checkbuildDeps Paths |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1502 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1503 | mmTarget := func(dir string) WritablePath { |
| 1504 | return PathForPhony(ctx, |
| 1505 | "MODULES-IN-"+strings.Replace(filepath.Clean(dir), "/", "-", -1)) |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 1506 | } |
| 1507 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1508 | modulesInDir := make(map[string]Paths) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1509 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1510 | ctx.VisitAllModules(func(module Module) { |
| 1511 | blueprintDir := module.base().blueprintDir |
| 1512 | installTarget := module.base().installTarget |
| 1513 | checkbuildTarget := module.base().checkbuildTarget |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1514 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1515 | if checkbuildTarget != nil { |
| 1516 | checkbuildDeps = append(checkbuildDeps, checkbuildTarget) |
| 1517 | modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], checkbuildTarget) |
| 1518 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1519 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1520 | if installTarget != nil { |
| 1521 | modulesInDir[blueprintDir] = append(modulesInDir[blueprintDir], installTarget) |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1522 | } |
| 1523 | }) |
| 1524 | |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 1525 | suffix := "" |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1526 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 1527 | suffix = "-soong" |
| 1528 | } |
| 1529 | |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1530 | // Create a top-level checkbuild target that depends on all modules |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1531 | ctx.Build(pctx, BuildParams{ |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1532 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1533 | Output: PathForPhony(ctx, "checkbuild"+suffix), |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1534 | Implicits: checkbuildDeps, |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1535 | }) |
| 1536 | |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 1537 | // Make will generate the MODULES-IN-* targets |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1538 | if ctx.Config().EmbeddedInMake() { |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 1539 | return |
| 1540 | } |
| 1541 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1542 | sortedKeys := func(m map[string]Paths) []string { |
| 1543 | s := make([]string, 0, len(m)) |
| 1544 | for k := range m { |
| 1545 | s = append(s, k) |
| 1546 | } |
| 1547 | sort.Strings(s) |
| 1548 | return s |
| 1549 | } |
| 1550 | |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 1551 | // Ensure ancestor directories are in modulesInDir |
| 1552 | dirs := sortedKeys(modulesInDir) |
| 1553 | for _, dir := range dirs { |
| 1554 | dir := parentDir(dir) |
| 1555 | for dir != "." && dir != "/" { |
| 1556 | if _, exists := modulesInDir[dir]; exists { |
| 1557 | break |
| 1558 | } |
| 1559 | modulesInDir[dir] = nil |
| 1560 | dir = parentDir(dir) |
| 1561 | } |
| 1562 | } |
| 1563 | |
| 1564 | // Make directories build their direct subdirectories |
| 1565 | dirs = sortedKeys(modulesInDir) |
| 1566 | for _, dir := range dirs { |
| 1567 | p := parentDir(dir) |
| 1568 | if p != "." && p != "/" { |
| 1569 | modulesInDir[p] = append(modulesInDir[p], mmTarget(dir)) |
| 1570 | } |
| 1571 | } |
| 1572 | |
Dan Willemsen | d2e95fb | 2017-09-20 14:30:50 -0700 | [diff] [blame] | 1573 | // Create a MODULES-IN-<directory> target that depends on all modules in a directory, and |
| 1574 | // depends on the MODULES-IN-* targets of all of its subdirectories that contain Android.bp |
| 1575 | // files. |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1576 | for _, dir := range dirs { |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1577 | ctx.Build(pctx, BuildParams{ |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1578 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1579 | Output: mmTarget(dir), |
Colin Cross | 87d8b56 | 2017-04-25 10:01:55 -0700 | [diff] [blame] | 1580 | Implicits: modulesInDir[dir], |
Dan Willemsen | 5ba07e8 | 2015-12-11 13:51:06 -0800 | [diff] [blame] | 1581 | // HACK: checkbuild should be an optional build, but force it |
| 1582 | // enabled for now in standalone builds |
Colin Cross | aabf679 | 2017-11-29 00:27:14 -0800 | [diff] [blame] | 1583 | Default: !ctx.Config().EmbeddedInMake(), |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1584 | }) |
| 1585 | } |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1586 | |
| 1587 | // Create (host|host-cross|target)-<OS> phony rules to build a reduced checkbuild. |
| 1588 | osDeps := map[OsType]Paths{} |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1589 | ctx.VisitAllModules(func(module Module) { |
| 1590 | if module.Enabled() { |
| 1591 | os := module.Target().Os |
| 1592 | osDeps[os] = append(osDeps[os], module.base().checkbuildFiles...) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1593 | } |
| 1594 | }) |
| 1595 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1596 | osClass := make(map[string]Paths) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1597 | for os, deps := range osDeps { |
| 1598 | var className string |
| 1599 | |
| 1600 | switch os.Class { |
| 1601 | case Host: |
| 1602 | className = "host" |
| 1603 | case HostCross: |
| 1604 | className = "host-cross" |
| 1605 | case Device: |
| 1606 | className = "target" |
| 1607 | default: |
| 1608 | continue |
| 1609 | } |
| 1610 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1611 | name := PathForPhony(ctx, className+"-"+os.Name) |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1612 | osClass[className] = append(osClass[className], name) |
| 1613 | |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1614 | ctx.Build(pctx, BuildParams{ |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1615 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1616 | Output: name, |
| 1617 | Implicits: deps, |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1618 | }) |
| 1619 | } |
| 1620 | |
| 1621 | // Wrap those into host|host-cross|target phony rules |
| 1622 | osClasses := sortedKeys(osClass) |
| 1623 | for _, class := range osClasses { |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1624 | ctx.Build(pctx, BuildParams{ |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1625 | Rule: blueprint.Phony, |
Colin Cross | 0875c52 | 2017-11-28 17:34:01 -0800 | [diff] [blame] | 1626 | Output: PathForPhony(ctx, class), |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1627 | Implicits: osClass[class], |
Dan Willemsen | 61d88b8 | 2017-09-20 17:29:08 -0700 | [diff] [blame] | 1628 | }) |
| 1629 | } |
Colin Cross | 1f8c52b | 2015-06-16 16:38:17 -0700 | [diff] [blame] | 1630 | } |
Colin Cross | d779da4 | 2015-12-17 18:00:23 -0800 | [diff] [blame] | 1631 | |
Brandon Lee | 5d45c6f | 2018-08-15 15:35:38 -0700 | [diff] [blame] | 1632 | // Collect information for opening IDE project files in java/jdeps.go. |
| 1633 | type IDEInfo interface { |
| 1634 | IDEInfo(ideInfo *IdeInfo) |
| 1635 | BaseModuleName() string |
| 1636 | } |
| 1637 | |
| 1638 | // Extract the base module name from the Import name. |
| 1639 | // Often the Import name has a prefix "prebuilt_". |
| 1640 | // Remove the prefix explicitly if needed |
| 1641 | // until we find a better solution to get the Import name. |
| 1642 | type IDECustomizedModuleName interface { |
| 1643 | IDECustomizedModuleName() string |
| 1644 | } |
| 1645 | |
| 1646 | type IdeInfo struct { |
| 1647 | Deps []string `json:"dependencies,omitempty"` |
| 1648 | Srcs []string `json:"srcs,omitempty"` |
| 1649 | Aidl_include_dirs []string `json:"aidl_include_dirs,omitempty"` |
| 1650 | Jarjar_rules []string `json:"jarjar_rules,omitempty"` |
| 1651 | Jars []string `json:"jars,omitempty"` |
| 1652 | Classes []string `json:"class,omitempty"` |
| 1653 | Installed_paths []string `json:"installed,omitempty"` |
| 1654 | } |