| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1 | // Copyright 2019 The Android Open Source Project | 
|  | 2 | // | 
|  | 3 | // Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 4 | // you may not use this file except in compliance with the License. | 
|  | 5 | // You may obtain a copy of the License at | 
|  | 6 | // | 
|  | 7 | //     http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 8 | // | 
|  | 9 | // Unless required by applicable law or agreed to in writing, software | 
|  | 10 | // distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 12 | // See the License for the specific language governing permissions and | 
|  | 13 | // limitations under the License. | 
|  | 14 |  | 
|  | 15 | package rust | 
|  | 16 |  | 
|  | 17 | import ( | 
| Chris Parsons | 637458d | 2023-09-19 20:09:00 +0000 | [diff] [blame] | 18 | "fmt" | 
|  | 19 | "strings" | 
|  | 20 |  | 
| Vinh Tran | b4bb20f | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 21 | "android/soong/bazel" | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 22 | "android/soong/bloaty" | 
| Aditya Choudhary | 87b2ab2 | 2023-11-17 15:27:06 +0000 | [diff] [blame] | 23 | "android/soong/testing" | 
| Vinh Tran | bcb5f57 | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 24 | "android/soong/ui/metrics/bp2build_metrics_proto" | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 25 |  | 
|  | 26 | "github.com/google/blueprint" | 
|  | 27 | "github.com/google/blueprint/proptools" | 
|  | 28 |  | 
|  | 29 | "android/soong/android" | 
|  | 30 | "android/soong/cc" | 
| Thiébaud Weksteen | 31f1bb8 | 2020-08-27 13:37:29 +0200 | [diff] [blame] | 31 | cc_config "android/soong/cc/config" | 
| hamzeh | c0a671f | 2021-07-22 12:05:08 -0700 | [diff] [blame] | 32 | "android/soong/fuzz" | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 33 | "android/soong/multitree" | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 34 | "android/soong/rust/config" | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 35 | "android/soong/snapshot" | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 36 | ) | 
|  | 37 |  | 
|  | 38 | var pctx = android.NewPackageContext("android/soong/rust") | 
|  | 39 |  | 
|  | 40 | func init() { | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 41 | android.RegisterModuleType("rust_defaults", defaultsFactory) | 
|  | 42 | android.PreDepsMutators(func(ctx android.RegisterMutatorsContext) { | 
|  | 43 | ctx.BottomUp("rust_libraries", LibraryMutator).Parallel() | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 44 | ctx.BottomUp("rust_stdlinkage", LibstdMutator).Parallel() | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 45 | ctx.BottomUp("rust_begin", BeginMutator).Parallel() | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 46 | }) | 
|  | 47 | android.PostDepsMutators(func(ctx android.RegisterMutatorsContext) { | 
|  | 48 | ctx.BottomUp("rust_sanitizers", rustSanitizerRuntimeMutator).Parallel() | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 49 | }) | 
| Inseob Kim | 3b24406 | 2023-07-11 13:31:36 +0900 | [diff] [blame] | 50 | pctx.Import("android/soong/android") | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 51 | pctx.Import("android/soong/rust/config") | 
| Thiébaud Weksteen | 682c9d7 | 2020-08-31 10:06:16 +0200 | [diff] [blame] | 52 | pctx.ImportAs("cc_config", "android/soong/cc/config") | 
| LaMont Jones | 0c10e4d | 2023-05-16 00:58:37 +0000 | [diff] [blame] | 53 | android.InitRegistrationContext.RegisterParallelSingletonType("kythe_rust_extract", kytheExtractRustFactory) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 54 | } | 
|  | 55 |  | 
|  | 56 | type Flags struct { | 
| Ivan Lozano | 8a23fa4 | 2020-06-16 10:26:57 -0400 | [diff] [blame] | 57 | GlobalRustFlags []string // Flags that apply globally to rust | 
|  | 58 | GlobalLinkFlags []string // Flags that apply globally to linker | 
|  | 59 | RustFlags       []string // Flags that apply to rust | 
|  | 60 | LinkFlags       []string // Flags that apply to linker | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 61 | ClippyFlags     []string // Flags that apply to clippy-driver, during the linting | 
| Dan Albert | 06feee9 | 2021-03-19 15:06:02 -0700 | [diff] [blame] | 62 | RustdocFlags    []string // Flags that apply to rustdoc | 
| Ivan Lozano | f1c8433 | 2019-09-20 11:00:37 -0700 | [diff] [blame] | 63 | Toolchain       config.Toolchain | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 64 | Coverage        bool | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 65 | Clippy          bool | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 66 | EmitXrefs       bool // If true, emit rules to aid cross-referencing | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 67 | } | 
|  | 68 |  | 
|  | 69 | type BaseProperties struct { | 
| Liz Kammer | 884fe9e | 2023-02-28 14:29:13 -0500 | [diff] [blame] | 70 | AndroidMkRlibs         []string `blueprint:"mutated"` | 
|  | 71 | AndroidMkDylibs        []string `blueprint:"mutated"` | 
|  | 72 | AndroidMkProcMacroLibs []string `blueprint:"mutated"` | 
| Liz Kammer | 884fe9e | 2023-02-28 14:29:13 -0500 | [diff] [blame] | 73 | AndroidMkStaticLibs    []string `blueprint:"mutated"` | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 74 |  | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 75 | ImageVariationPrefix string `blueprint:"mutated"` | 
|  | 76 | VndkVersion          string `blueprint:"mutated"` | 
|  | 77 | SubName              string `blueprint:"mutated"` | 
|  | 78 |  | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 79 | // SubName is used by CC for tracking image variants / SDK versions. RustSubName is used for Rust-specific | 
|  | 80 | // subnaming which shouldn't be visible to CC modules (such as the rlib stdlinkage subname). This should be | 
|  | 81 | // appended before SubName. | 
|  | 82 | RustSubName string `blueprint:"mutated"` | 
|  | 83 |  | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 84 | // Set by imageMutator | 
| Ivan Lozano | e6d3098 | 2021-02-05 10:57:43 -0500 | [diff] [blame] | 85 | CoreVariantNeeded          bool     `blueprint:"mutated"` | 
|  | 86 | VendorRamdiskVariantNeeded bool     `blueprint:"mutated"` | 
| Matthew Maurer | c686838 | 2021-07-13 14:12:37 -0700 | [diff] [blame] | 87 | RamdiskVariantNeeded       bool     `blueprint:"mutated"` | 
| Matthew Maurer | 460ee94 | 2021-02-11 12:31:46 -0800 | [diff] [blame] | 88 | RecoveryVariantNeeded      bool     `blueprint:"mutated"` | 
| Ivan Lozano | e6d3098 | 2021-02-05 10:57:43 -0500 | [diff] [blame] | 89 | ExtraVariants              []string `blueprint:"mutated"` | 
|  | 90 |  | 
| Ivan Lozano | a226863 | 2021-07-22 10:52:06 -0400 | [diff] [blame] | 91 | // Allows this module to use non-APEX version of libraries. Useful | 
|  | 92 | // for building binaries that are started before APEXes are activated. | 
|  | 93 | Bootstrap *bool | 
|  | 94 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 95 | // Used by vendor snapshot to record dependencies from snapshot modules. | 
|  | 96 | SnapshotSharedLibs []string `blueprint:"mutated"` | 
| Justin Yun | 5e03586 | 2021-06-29 20:50:37 +0900 | [diff] [blame] | 97 | SnapshotStaticLibs []string `blueprint:"mutated"` | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 98 | SnapshotRlibs      []string `blueprint:"mutated"` | 
|  | 99 | SnapshotDylibs     []string `blueprint:"mutated"` | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 100 |  | 
| Matthew Maurer | c686838 | 2021-07-13 14:12:37 -0700 | [diff] [blame] | 101 | // Make this module available when building for ramdisk. | 
|  | 102 | // On device without a dedicated recovery partition, the module is only | 
|  | 103 | // available after switching root into | 
|  | 104 | // /first_stage_ramdisk. To expose the module before switching root, install | 
|  | 105 | // the recovery variant instead. | 
|  | 106 | Ramdisk_available *bool | 
|  | 107 |  | 
| Ivan Lozano | e6d3098 | 2021-02-05 10:57:43 -0500 | [diff] [blame] | 108 | // Make this module available when building for vendor ramdisk. | 
|  | 109 | // On device without a dedicated recovery partition, the module is only | 
|  | 110 | // available after switching root into | 
|  | 111 | // /first_stage_ramdisk. To expose the module before switching root, install | 
| Matthew Maurer | 460ee94 | 2021-02-11 12:31:46 -0800 | [diff] [blame] | 112 | // the recovery variant instead | 
| Ivan Lozano | e6d3098 | 2021-02-05 10:57:43 -0500 | [diff] [blame] | 113 | Vendor_ramdisk_available *bool | 
| Ivan Lozano | 26ecd6c | 2020-07-31 13:40:31 -0400 | [diff] [blame] | 114 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 115 | // Normally Soong uses the directory structure to decide which modules | 
|  | 116 | // should be included (framework) or excluded (non-framework) from the | 
|  | 117 | // different snapshots (vendor, recovery, etc.), but this property | 
|  | 118 | // allows a partner to exclude a module normally thought of as a | 
|  | 119 | // framework module from the vendor snapshot. | 
|  | 120 | Exclude_from_vendor_snapshot *bool | 
|  | 121 |  | 
|  | 122 | // Normally Soong uses the directory structure to decide which modules | 
|  | 123 | // should be included (framework) or excluded (non-framework) from the | 
|  | 124 | // different snapshots (vendor, recovery, etc.), but this property | 
|  | 125 | // allows a partner to exclude a module normally thought of as a | 
|  | 126 | // framework module from the recovery snapshot. | 
|  | 127 | Exclude_from_recovery_snapshot *bool | 
|  | 128 |  | 
| Matthew Maurer | 460ee94 | 2021-02-11 12:31:46 -0800 | [diff] [blame] | 129 | // Make this module available when building for recovery | 
|  | 130 | Recovery_available *bool | 
|  | 131 |  | 
| Ivan Lozano | 3e9f9e4 | 2020-12-04 15:05:43 -0500 | [diff] [blame] | 132 | // Minimum sdk version that the artifact should support when it runs as part of mainline modules(APEX). | 
|  | 133 | Min_sdk_version *string | 
|  | 134 |  | 
| Jiyong Park | d1e366a | 2021-10-05 09:12:41 +0900 | [diff] [blame] | 135 | HideFromMake   bool `blueprint:"mutated"` | 
|  | 136 | PreventInstall bool `blueprint:"mutated"` | 
|  | 137 |  | 
|  | 138 | Installable *bool | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 139 | } | 
|  | 140 |  | 
|  | 141 | type Module struct { | 
| hamzeh | c0a671f | 2021-07-22 12:05:08 -0700 | [diff] [blame] | 142 | fuzz.FuzzModule | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 143 |  | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 144 | VendorProperties cc.VendorProperties | 
|  | 145 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 146 | Properties BaseProperties | 
|  | 147 |  | 
| Aditya Choudhary | 87b2ab2 | 2023-11-17 15:27:06 +0000 | [diff] [blame] | 148 | hod        android.HostOrDeviceSupported | 
|  | 149 | multilib   android.Multilib | 
|  | 150 | testModule bool | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 151 |  | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 152 | makeLinkType string | 
|  | 153 |  | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 154 | afdo             *afdo | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 155 | compiler         compiler | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 156 | coverage         *coverage | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 157 | clippy           *clippy | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 158 | sanitize         *sanitize | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 159 | cachedToolchain  config.Toolchain | 
| Ivan Lozano | 4fef93c | 2020-07-08 08:39:44 -0400 | [diff] [blame] | 160 | sourceProvider   SourceProvider | 
| Andrei Homescu | c776792 | 2020-08-05 06:36:19 -0700 | [diff] [blame] | 161 | subAndroidMkOnce map[SubAndroidMkProvider]bool | 
| Ivan Lozano | 4fef93c | 2020-07-08 08:39:44 -0400 | [diff] [blame] | 162 |  | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 163 | // Output file to be installed, may be stripped or unstripped. | 
|  | 164 | outputFile android.OptionalPath | 
|  | 165 |  | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 166 | // Cross-reference input file | 
|  | 167 | kytheFiles android.Paths | 
|  | 168 |  | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 169 | docTimestampFile android.OptionalPath | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 170 |  | 
|  | 171 | hideApexVariantFromMake bool | 
| Ivan Lozano | e950cda | 2021-11-09 11:26:04 -0500 | [diff] [blame] | 172 |  | 
|  | 173 | // For apex variants, this is set as apex.min_sdk_version | 
|  | 174 | apexSdkVersion android.ApiLevel | 
| Cole Faust | b6e6f99 | 2023-08-17 17:42:26 -0700 | [diff] [blame] | 175 |  | 
|  | 176 | transitiveAndroidMkSharedLibs *android.DepSet[string] | 
| Vinh Tran | bcb5f57 | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 177 |  | 
|  | 178 | android.BazelModuleBase | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 179 | } | 
|  | 180 |  | 
| Ivan Lozano | 3968d8f | 2020-12-14 11:27:52 -0500 | [diff] [blame] | 181 | func (mod *Module) Header() bool { | 
|  | 182 | //TODO: If Rust libraries provide header variants, this needs to be updated. | 
|  | 183 | return false | 
|  | 184 | } | 
|  | 185 |  | 
|  | 186 | func (mod *Module) SetPreventInstall() { | 
|  | 187 | mod.Properties.PreventInstall = true | 
|  | 188 | } | 
|  | 189 |  | 
| Ivan Lozano | 3968d8f | 2020-12-14 11:27:52 -0500 | [diff] [blame] | 190 | func (mod *Module) SetHideFromMake() { | 
|  | 191 | mod.Properties.HideFromMake = true | 
|  | 192 | } | 
|  | 193 |  | 
| Jiyong Park | d1e366a | 2021-10-05 09:12:41 +0900 | [diff] [blame] | 194 | func (mod *Module) HiddenFromMake() bool { | 
|  | 195 | return mod.Properties.HideFromMake | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 196 | } | 
|  | 197 |  | 
| Ivan Lozano | 3968d8f | 2020-12-14 11:27:52 -0500 | [diff] [blame] | 198 | func (mod *Module) SanitizePropDefined() bool { | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 199 | // Because compiler is not set for some Rust modules where sanitize might be set, check that compiler is also not | 
|  | 200 | // nil since we need compiler to actually sanitize. | 
|  | 201 | return mod.sanitize != nil && mod.compiler != nil | 
| Ivan Lozano | 3968d8f | 2020-12-14 11:27:52 -0500 | [diff] [blame] | 202 | } | 
|  | 203 |  | 
| Ivan Lozano | 3968d8f | 2020-12-14 11:27:52 -0500 | [diff] [blame] | 204 | func (mod *Module) IsPrebuilt() bool { | 
|  | 205 | if _, ok := mod.compiler.(*prebuiltLibraryDecorator); ok { | 
|  | 206 | return true | 
|  | 207 | } | 
|  | 208 | return false | 
|  | 209 | } | 
|  | 210 |  | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 211 | func (mod *Module) OutputFiles(tag string) (android.Paths, error) { | 
|  | 212 | switch tag { | 
|  | 213 | case "": | 
| Andrei Homescu | 5db69cc | 2020-08-06 15:27:45 -0700 | [diff] [blame] | 214 | if mod.sourceProvider != nil && (mod.compiler == nil || mod.compiler.Disabled()) { | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 215 | return mod.sourceProvider.Srcs(), nil | 
|  | 216 | } else { | 
| Jiyong Park | e54f07e | 2021-04-07 15:08:04 +0900 | [diff] [blame] | 217 | if mod.OutputFile().Valid() { | 
|  | 218 | return android.Paths{mod.OutputFile().Path()}, nil | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 219 | } | 
|  | 220 | return android.Paths{}, nil | 
|  | 221 | } | 
| Ivan Lozano | 0f9963e | 2023-02-06 13:31:02 -0500 | [diff] [blame] | 222 | case "unstripped": | 
|  | 223 | if mod.compiler != nil { | 
|  | 224 | return android.PathsIfNonNil(mod.compiler.unstrippedOutputFilePath()), nil | 
|  | 225 | } | 
|  | 226 | return nil, nil | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 227 | default: | 
|  | 228 | return nil, fmt.Errorf("unsupported module reference tag %q", tag) | 
|  | 229 | } | 
|  | 230 | } | 
|  | 231 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 232 | func (mod *Module) SelectedStl() string { | 
|  | 233 | return "" | 
|  | 234 | } | 
|  | 235 |  | 
| Ivan Lozano | 2b26297 | 2019-11-21 12:30:50 -0800 | [diff] [blame] | 236 | func (mod *Module) NonCcVariants() bool { | 
|  | 237 | if mod.compiler != nil { | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 238 | if _, ok := mod.compiler.(libraryInterface); ok { | 
|  | 239 | return false | 
| Ivan Lozano | 2b26297 | 2019-11-21 12:30:50 -0800 | [diff] [blame] | 240 | } | 
|  | 241 | } | 
|  | 242 | panic(fmt.Errorf("NonCcVariants called on non-library module: %q", mod.BaseModuleName())) | 
|  | 243 | } | 
|  | 244 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 245 | func (mod *Module) Static() bool { | 
|  | 246 | if mod.compiler != nil { | 
|  | 247 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 248 | return library.static() | 
|  | 249 | } | 
|  | 250 | } | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 251 | return false | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 252 | } | 
|  | 253 |  | 
|  | 254 | func (mod *Module) Shared() bool { | 
|  | 255 | if mod.compiler != nil { | 
|  | 256 | if library, ok := mod.compiler.(libraryInterface); ok { | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 257 | return library.shared() | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 258 | } | 
|  | 259 | } | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 260 | return false | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 261 | } | 
|  | 262 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 263 | func (mod *Module) Dylib() bool { | 
|  | 264 | if mod.compiler != nil { | 
|  | 265 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 266 | return library.dylib() | 
|  | 267 | } | 
|  | 268 | } | 
|  | 269 | return false | 
|  | 270 | } | 
|  | 271 |  | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 272 | func (mod *Module) Source() bool { | 
|  | 273 | if mod.compiler != nil { | 
|  | 274 | if library, ok := mod.compiler.(libraryInterface); ok && mod.sourceProvider != nil { | 
|  | 275 | return library.source() | 
|  | 276 | } | 
|  | 277 | } | 
|  | 278 | return false | 
|  | 279 | } | 
|  | 280 |  | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 281 | func (mod *Module) RlibStd() bool { | 
|  | 282 | if mod.compiler != nil { | 
|  | 283 | if library, ok := mod.compiler.(libraryInterface); ok && library.rlib() { | 
|  | 284 | return library.rlibStd() | 
|  | 285 | } | 
|  | 286 | } | 
|  | 287 | panic(fmt.Errorf("RlibStd() called on non-rlib module: %q", mod.BaseModuleName())) | 
|  | 288 | } | 
|  | 289 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 290 | func (mod *Module) Rlib() bool { | 
|  | 291 | if mod.compiler != nil { | 
|  | 292 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 293 | return library.rlib() | 
|  | 294 | } | 
|  | 295 | } | 
|  | 296 | return false | 
|  | 297 | } | 
|  | 298 |  | 
|  | 299 | func (mod *Module) Binary() bool { | 
| Ivan Lozano | 21fa0a5 | 2021-11-01 09:19:45 -0400 | [diff] [blame] | 300 | if binary, ok := mod.compiler.(binaryInterface); ok { | 
|  | 301 | return binary.binary() | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 302 | } | 
|  | 303 | return false | 
|  | 304 | } | 
|  | 305 |  | 
| Justin Yun | 5e03586 | 2021-06-29 20:50:37 +0900 | [diff] [blame] | 306 | func (mod *Module) StaticExecutable() bool { | 
|  | 307 | if !mod.Binary() { | 
|  | 308 | return false | 
|  | 309 | } | 
| Ivan Lozano | 21fa0a5 | 2021-11-01 09:19:45 -0400 | [diff] [blame] | 310 | return mod.StaticallyLinked() | 
| Justin Yun | 5e03586 | 2021-06-29 20:50:37 +0900 | [diff] [blame] | 311 | } | 
|  | 312 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 313 | func (mod *Module) Object() bool { | 
|  | 314 | // Rust has no modules which produce only object files. | 
|  | 315 | return false | 
|  | 316 | } | 
|  | 317 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 318 | func (mod *Module) Toc() android.OptionalPath { | 
|  | 319 | if mod.compiler != nil { | 
| Ivan Lozano | 7b0781d | 2021-11-03 15:30:18 -0400 | [diff] [blame] | 320 | if lib, ok := mod.compiler.(libraryInterface); ok { | 
|  | 321 | return lib.toc() | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 322 | } | 
|  | 323 | } | 
|  | 324 | panic(fmt.Errorf("Toc() called on non-library module: %q", mod.BaseModuleName())) | 
|  | 325 | } | 
|  | 326 |  | 
| Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 327 | func (mod *Module) UseSdk() bool { | 
|  | 328 | return false | 
|  | 329 | } | 
|  | 330 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 331 | func (mod *Module) RelativeInstallPath() string { | 
|  | 332 | if mod.compiler != nil { | 
|  | 333 | return mod.compiler.relativeInstallPath() | 
|  | 334 | } | 
|  | 335 | return "" | 
|  | 336 | } | 
|  | 337 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 338 | func (mod *Module) UseVndk() bool { | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 339 | return mod.Properties.VndkVersion != "" | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 342 | func (mod *Module) Bootstrap() bool { | 
| Ivan Lozano | a226863 | 2021-07-22 10:52:06 -0400 | [diff] [blame] | 343 | return Bool(mod.Properties.Bootstrap) | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 344 | } | 
|  | 345 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 346 | func (mod *Module) MustUseVendorVariant() bool { | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 347 | return true | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 | func (mod *Module) SubName() string { | 
|  | 351 | return mod.Properties.SubName | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 352 | } | 
|  | 353 |  | 
|  | 354 | func (mod *Module) IsVndk() bool { | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 355 | // TODO(b/165791368) | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 356 | return false | 
|  | 357 | } | 
|  | 358 |  | 
| Ivan Lozano | f9e2172 | 2020-12-02 09:00:51 -0500 | [diff] [blame] | 359 | func (mod *Module) IsVndkExt() bool { | 
|  | 360 | return false | 
|  | 361 | } | 
|  | 362 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 363 | func (mod *Module) IsVndkSp() bool { | 
|  | 364 | return false | 
|  | 365 | } | 
|  | 366 |  | 
| Ivan Lozano | f1868af | 2022-04-12 13:08:36 -0400 | [diff] [blame] | 367 | func (mod *Module) IsVndkPrebuiltLibrary() bool { | 
|  | 368 | // Rust modules do not provide VNDK prebuilts | 
|  | 369 | return false | 
|  | 370 | } | 
|  | 371 |  | 
|  | 372 | func (mod *Module) IsVendorPublicLibrary() bool { | 
|  | 373 | return mod.VendorProperties.IsVendorPublicLibrary | 
|  | 374 | } | 
|  | 375 |  | 
|  | 376 | func (mod *Module) SdkAndPlatformVariantVisibleToMake() bool { | 
|  | 377 | // Rust modules to not provide Sdk variants | 
|  | 378 | return false | 
|  | 379 | } | 
|  | 380 |  | 
| Colin Cross | 127bb8b | 2020-12-16 16:46:01 -0800 | [diff] [blame] | 381 | func (c *Module) IsVndkPrivate() bool { | 
|  | 382 | return false | 
|  | 383 | } | 
|  | 384 |  | 
|  | 385 | func (c *Module) IsLlndk() bool { | 
|  | 386 | return false | 
|  | 387 | } | 
|  | 388 |  | 
|  | 389 | func (c *Module) IsLlndkPublic() bool { | 
| Ivan Lozano | f9e2172 | 2020-12-02 09:00:51 -0500 | [diff] [blame] | 390 | return false | 
|  | 391 | } | 
|  | 392 |  | 
| Ivan Lozano | 3a7d000 | 2021-03-30 12:19:36 -0400 | [diff] [blame] | 393 | func (mod *Module) KernelHeadersDecorator() bool { | 
|  | 394 | return false | 
|  | 395 | } | 
|  | 396 |  | 
| Colin Cross | 1f3f130 | 2021-04-26 18:37:44 -0700 | [diff] [blame] | 397 | func (m *Module) NeedsLlndkVariants() bool { | 
| Ivan Lozano | 3a7d000 | 2021-03-30 12:19:36 -0400 | [diff] [blame] | 398 | return false | 
|  | 399 | } | 
|  | 400 |  | 
| Colin Cross | 5271fea | 2021-04-27 13:06:04 -0700 | [diff] [blame] | 401 | func (m *Module) NeedsVendorPublicLibraryVariants() bool { | 
|  | 402 | return false | 
|  | 403 | } | 
|  | 404 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 405 | func (mod *Module) HasLlndkStubs() bool { | 
|  | 406 | return false | 
|  | 407 | } | 
|  | 408 |  | 
|  | 409 | func (mod *Module) StubsVersion() string { | 
|  | 410 | panic(fmt.Errorf("StubsVersion called on non-versioned module: %q", mod.BaseModuleName())) | 
|  | 411 | } | 
|  | 412 |  | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 413 | func (mod *Module) SdkVersion() string { | 
|  | 414 | return "" | 
|  | 415 | } | 
|  | 416 |  | 
| Colin Cross | c511bc5 | 2020-04-07 16:50:32 +0000 | [diff] [blame] | 417 | func (mod *Module) AlwaysSdk() bool { | 
|  | 418 | return false | 
|  | 419 | } | 
|  | 420 |  | 
| Jiyong Park | 2286afd | 2020-06-16 21:58:53 +0900 | [diff] [blame] | 421 | func (mod *Module) IsSdkVariant() bool { | 
|  | 422 | return false | 
|  | 423 | } | 
|  | 424 |  | 
| Colin Cross | 1348ce3 | 2020-10-01 13:37:16 -0700 | [diff] [blame] | 425 | func (mod *Module) SplitPerApiLevel() bool { | 
|  | 426 | return false | 
|  | 427 | } | 
|  | 428 |  | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 429 | func (mod *Module) XrefRustFiles() android.Paths { | 
|  | 430 | return mod.kytheFiles | 
|  | 431 | } | 
|  | 432 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 433 | type Deps struct { | 
| Ivan Lozano | 63bb768 | 2021-03-23 15:53:44 -0400 | [diff] [blame] | 434 | Dylibs          []string | 
|  | 435 | Rlibs           []string | 
|  | 436 | Rustlibs        []string | 
|  | 437 | Stdlibs         []string | 
|  | 438 | ProcMacros      []string | 
|  | 439 | SharedLibs      []string | 
|  | 440 | StaticLibs      []string | 
|  | 441 | WholeStaticLibs []string | 
|  | 442 | HeaderLibs      []string | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 443 |  | 
| Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 444 | // Used for data dependencies adjacent to tests | 
|  | 445 | DataLibs []string | 
|  | 446 | DataBins []string | 
|  | 447 |  | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 448 | CrtBegin, CrtEnd []string | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 449 | } | 
|  | 450 |  | 
|  | 451 | type PathDeps struct { | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 452 | DyLibs        RustLibraries | 
|  | 453 | RLibs         RustLibraries | 
|  | 454 | SharedLibs    android.Paths | 
|  | 455 | SharedLibDeps android.Paths | 
|  | 456 | StaticLibs    android.Paths | 
|  | 457 | ProcMacros    RustLibraries | 
|  | 458 | AfdoProfiles  android.Paths | 
| Ivan Lozano | 3dfa12d | 2021-02-04 11:29:41 -0500 | [diff] [blame] | 459 |  | 
|  | 460 | // depFlags and depLinkFlags are rustc and linker (clang) flags. | 
|  | 461 | depFlags     []string | 
|  | 462 | depLinkFlags []string | 
|  | 463 |  | 
|  | 464 | // linkDirs are link paths passed via -L to rustc. linkObjects are objects passed directly to the linker. | 
|  | 465 | // Both of these are exported and propagate to dependencies. | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 466 | linkDirs    []string | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 467 | linkObjects []string | 
| Ivan Lozano | f1c8433 | 2019-09-20 11:00:37 -0700 | [diff] [blame] | 468 |  | 
| Ivan Lozano | 45901ed | 2020-07-24 16:05:01 -0400 | [diff] [blame] | 469 | // Used by bindgen modules which call clang | 
|  | 470 | depClangFlags         []string | 
|  | 471 | depIncludePaths       android.Paths | 
| Ivan Lozano | ddd0bdb | 2020-08-28 17:00:26 -0400 | [diff] [blame] | 472 | depGeneratedHeaders   android.Paths | 
| Ivan Lozano | 45901ed | 2020-07-24 16:05:01 -0400 | [diff] [blame] | 473 | depSystemIncludePaths android.Paths | 
|  | 474 |  | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 475 | CrtBegin android.Paths | 
|  | 476 | CrtEnd   android.Paths | 
| Chih-Hung Hsieh | bbd25ae | 2020-05-15 17:36:30 -0700 | [diff] [blame] | 477 |  | 
|  | 478 | // Paths to generated source files | 
| Ivan Lozano | 9d74a52 | 2020-12-01 09:25:22 -0500 | [diff] [blame] | 479 | SrcDeps          android.Paths | 
|  | 480 | srcProviderFiles android.Paths | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 481 | } | 
|  | 482 |  | 
|  | 483 | type RustLibraries []RustLibrary | 
|  | 484 |  | 
|  | 485 | type RustLibrary struct { | 
|  | 486 | Path      android.Path | 
|  | 487 | CrateName string | 
|  | 488 | } | 
|  | 489 |  | 
|  | 490 | type compiler interface { | 
| Thiébaud Weksteen | ee6a89b | 2021-02-25 16:30:57 +0100 | [diff] [blame] | 491 | initialize(ctx ModuleContext) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 492 | compilerFlags(ctx ModuleContext, flags Flags) Flags | 
| Ivan Lozano | 67eada3 | 2021-09-23 11:50:33 -0400 | [diff] [blame] | 493 | cfgFlags(ctx ModuleContext, flags Flags) Flags | 
|  | 494 | featureFlags(ctx ModuleContext, flags Flags) Flags | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 495 | compilerProps() []interface{} | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 496 | compile(ctx ModuleContext, flags Flags, deps PathDeps) buildOutput | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 497 | compilerDeps(ctx DepsContext, deps Deps) Deps | 
|  | 498 | crateName() string | 
| Dan Albert | 06feee9 | 2021-03-19 15:06:02 -0700 | [diff] [blame] | 499 | rustdoc(ctx ModuleContext, flags Flags, deps PathDeps) android.OptionalPath | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 500 |  | 
| Thiébaud Weksteen | ee6a89b | 2021-02-25 16:30:57 +0100 | [diff] [blame] | 501 | // Output directory in which source-generated code from dependencies is | 
|  | 502 | // copied. This is equivalent to Cargo's OUT_DIR variable. | 
|  | 503 | CargoOutDir() android.OptionalPath | 
| Dan Albert | 06feee9 | 2021-03-19 15:06:02 -0700 | [diff] [blame] | 504 |  | 
| Ivan Lozano | a9a1fc0 | 2021-08-11 15:13:43 -0400 | [diff] [blame] | 505 | // CargoPkgVersion returns the value of the Cargo_pkg_version property. | 
|  | 506 | CargoPkgVersion() string | 
|  | 507 |  | 
|  | 508 | // CargoEnvCompat returns whether Cargo environment variables should be used. | 
|  | 509 | CargoEnvCompat() bool | 
|  | 510 |  | 
| Chih-Hung Hsieh | 9a4a7ba | 2019-12-12 19:36:05 -0800 | [diff] [blame] | 511 | inData() bool | 
| Thiébaud Weksteen | fabaff6 | 2020-08-27 13:48:36 +0200 | [diff] [blame] | 512 | install(ctx ModuleContext) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 513 | relativeInstallPath() string | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 514 | everInstallable() bool | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 515 |  | 
|  | 516 | nativeCoverage() bool | 
| Ivan Lozano | 26ecd6c | 2020-07-31 13:40:31 -0400 | [diff] [blame] | 517 |  | 
|  | 518 | Disabled() bool | 
|  | 519 | SetDisabled() | 
| Ivan Lozano | 042504f | 2020-08-18 14:31:23 -0400 | [diff] [blame] | 520 |  | 
| Ivan Lozano | dd05547 | 2020-09-28 13:22:45 -0400 | [diff] [blame] | 521 | stdLinkage(ctx *depsContext) RustLinkage | 
| Ivan Lozano | 9ef9cb8 | 2023-02-14 10:56:14 -0500 | [diff] [blame] | 522 | noStdlibs() bool | 
| Jiyong Park | e54f07e | 2021-04-07 15:08:04 +0900 | [diff] [blame] | 523 |  | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 524 | unstrippedOutputFilePath() android.Path | 
| Jiyong Park | e54f07e | 2021-04-07 15:08:04 +0900 | [diff] [blame] | 525 | strippedOutputFilePath() android.OptionalPath | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 526 | } | 
|  | 527 |  | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 528 | type exportedFlagsProducer interface { | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 529 | exportLinkDirs(...string) | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 530 | exportLinkObjects(...string) | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 531 | } | 
|  | 532 |  | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 533 | type xref interface { | 
|  | 534 | XrefRustFiles() android.Paths | 
|  | 535 | } | 
|  | 536 |  | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 537 | type flagExporter struct { | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 538 | linkDirs    []string | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 539 | linkObjects []string | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 540 | } | 
|  | 541 |  | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 542 | func (flagExporter *flagExporter) exportLinkDirs(dirs ...string) { | 
|  | 543 | flagExporter.linkDirs = android.FirstUniqueStrings(append(flagExporter.linkDirs, dirs...)) | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 544 | } | 
|  | 545 |  | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 546 | func (flagExporter *flagExporter) exportLinkObjects(flags ...string) { | 
|  | 547 | flagExporter.linkObjects = android.FirstUniqueStrings(append(flagExporter.linkObjects, flags...)) | 
| Ivan Lozano | 2093af2 | 2020-08-25 12:48:19 -0400 | [diff] [blame] | 548 | } | 
|  | 549 |  | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 550 | func (flagExporter *flagExporter) setProvider(ctx ModuleContext) { | 
|  | 551 | ctx.SetProvider(FlagExporterInfoProvider, FlagExporterInfo{ | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 552 | LinkDirs:    flagExporter.linkDirs, | 
|  | 553 | LinkObjects: flagExporter.linkObjects, | 
|  | 554 | }) | 
|  | 555 | } | 
|  | 556 |  | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 557 | var _ exportedFlagsProducer = (*flagExporter)(nil) | 
|  | 558 |  | 
|  | 559 | func NewFlagExporter() *flagExporter { | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 560 | return &flagExporter{} | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 561 | } | 
|  | 562 |  | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 563 | type FlagExporterInfo struct { | 
|  | 564 | Flags       []string | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 565 | LinkDirs    []string // TODO: this should be android.Paths | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 566 | LinkObjects []string // TODO: this should be android.Paths | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 567 | } | 
|  | 568 |  | 
|  | 569 | var FlagExporterInfoProvider = blueprint.NewProvider(FlagExporterInfo{}) | 
|  | 570 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 571 | func (mod *Module) isCoverageVariant() bool { | 
|  | 572 | return mod.coverage.Properties.IsCoverageVariant | 
|  | 573 | } | 
|  | 574 |  | 
|  | 575 | var _ cc.Coverage = (*Module)(nil) | 
|  | 576 |  | 
|  | 577 | func (mod *Module) IsNativeCoverageNeeded(ctx android.BaseModuleContext) bool { | 
|  | 578 | return mod.coverage != nil && mod.coverage.Properties.NeedCoverageVariant | 
|  | 579 | } | 
|  | 580 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 581 | func (mod *Module) VndkVersion() string { | 
|  | 582 | return mod.Properties.VndkVersion | 
|  | 583 | } | 
|  | 584 |  | 
|  | 585 | func (mod *Module) PreventInstall() bool { | 
|  | 586 | return mod.Properties.PreventInstall | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 587 | } | 
|  | 588 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 589 | func (mod *Module) MarkAsCoverageVariant(coverage bool) { | 
|  | 590 | mod.coverage.Properties.IsCoverageVariant = coverage | 
|  | 591 | } | 
|  | 592 |  | 
|  | 593 | func (mod *Module) EnableCoverageIfNeeded() { | 
|  | 594 | mod.coverage.Properties.CoverageEnabled = mod.coverage.Properties.NeedCoverageBuild | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 595 | } | 
|  | 596 |  | 
|  | 597 | func defaultsFactory() android.Module { | 
|  | 598 | return DefaultsFactory() | 
|  | 599 | } | 
|  | 600 |  | 
|  | 601 | type Defaults struct { | 
|  | 602 | android.ModuleBase | 
|  | 603 | android.DefaultsModuleBase | 
|  | 604 | } | 
|  | 605 |  | 
|  | 606 | func DefaultsFactory(props ...interface{}) android.Module { | 
|  | 607 | module := &Defaults{} | 
|  | 608 |  | 
|  | 609 | module.AddProperties(props...) | 
|  | 610 | module.AddProperties( | 
|  | 611 | &BaseProperties{}, | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 612 | &cc.AfdoProperties{}, | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 613 | &cc.VendorProperties{}, | 
| Jakub Kotur | 1d640d0 | 2021-01-06 12:40:43 +0100 | [diff] [blame] | 614 | &BenchmarkProperties{}, | 
| Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 615 | &BindgenProperties{}, | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 616 | &BaseCompilerProperties{}, | 
|  | 617 | &BinaryCompilerProperties{}, | 
|  | 618 | &LibraryCompilerProperties{}, | 
|  | 619 | &ProcMacroCompilerProperties{}, | 
|  | 620 | &PrebuiltProperties{}, | 
| Ivan Lozano | 4fef93c | 2020-07-08 08:39:44 -0400 | [diff] [blame] | 621 | &SourceProviderProperties{}, | 
| Chih-Hung Hsieh | 41805be | 2019-10-31 20:56:47 -0700 | [diff] [blame] | 622 | &TestProperties{}, | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 623 | &cc.CoverageProperties{}, | 
| Ivan Lozano | bc9e421 | 2020-09-25 16:08:34 -0400 | [diff] [blame] | 624 | &cc.RustBindgenClangProperties{}, | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 625 | &ClippyProperties{}, | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 626 | &SanitizeProperties{}, | 
| Pawan Wagh | ccb7558 | 2023-08-16 23:58:25 +0000 | [diff] [blame] | 627 | &fuzz.FuzzProperties{}, | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 628 | ) | 
|  | 629 |  | 
|  | 630 | android.InitDefaultsModule(module) | 
|  | 631 | return module | 
|  | 632 | } | 
|  | 633 |  | 
|  | 634 | func (mod *Module) CrateName() string { | 
| Ivan Lozano | ad8b18b | 2019-10-31 19:38:29 -0700 | [diff] [blame] | 635 | return mod.compiler.crateName() | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 636 | } | 
|  | 637 |  | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 638 | func (mod *Module) CcLibrary() bool { | 
|  | 639 | if mod.compiler != nil { | 
| Ivan Lozano | 45e0e5b | 2021-11-13 07:42:36 -0500 | [diff] [blame] | 640 | if _, ok := mod.compiler.(libraryInterface); ok { | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 641 | return true | 
|  | 642 | } | 
|  | 643 | } | 
|  | 644 | return false | 
|  | 645 | } | 
|  | 646 |  | 
|  | 647 | func (mod *Module) CcLibraryInterface() bool { | 
|  | 648 | if mod.compiler != nil { | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 649 | // use build{Static,Shared}() instead of {static,shared}() here because this might be called before | 
|  | 650 | // VariantIs{Static,Shared} is set. | 
|  | 651 | if lib, ok := mod.compiler.(libraryInterface); ok && (lib.buildShared() || lib.buildStatic()) { | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 652 | return true | 
|  | 653 | } | 
|  | 654 | } | 
|  | 655 | return false | 
|  | 656 | } | 
|  | 657 |  | 
| Ivan Lozano | 61c02cc | 2023-06-09 14:06:44 -0400 | [diff] [blame] | 658 | func (mod *Module) RustLibraryInterface() bool { | 
|  | 659 | if mod.compiler != nil { | 
|  | 660 | if _, ok := mod.compiler.(libraryInterface); ok { | 
|  | 661 | return true | 
|  | 662 | } | 
|  | 663 | } | 
|  | 664 | return false | 
|  | 665 | } | 
|  | 666 |  | 
| Ivan Lozano | 0f9963e | 2023-02-06 13:31:02 -0500 | [diff] [blame] | 667 | func (mod *Module) IsFuzzModule() bool { | 
|  | 668 | if _, ok := mod.compiler.(*fuzzDecorator); ok { | 
|  | 669 | return true | 
|  | 670 | } | 
|  | 671 | return false | 
|  | 672 | } | 
|  | 673 |  | 
|  | 674 | func (mod *Module) FuzzModuleStruct() fuzz.FuzzModule { | 
|  | 675 | return mod.FuzzModule | 
|  | 676 | } | 
|  | 677 |  | 
|  | 678 | func (mod *Module) FuzzPackagedModule() fuzz.FuzzPackagedModule { | 
|  | 679 | if fuzzer, ok := mod.compiler.(*fuzzDecorator); ok { | 
|  | 680 | return fuzzer.fuzzPackagedModule | 
|  | 681 | } | 
|  | 682 | panic(fmt.Errorf("FuzzPackagedModule called on non-fuzz module: %q", mod.BaseModuleName())) | 
|  | 683 | } | 
|  | 684 |  | 
| Hamzeh Zawawy | 3891749 | 2023-04-05 22:08:46 +0000 | [diff] [blame] | 685 | func (mod *Module) FuzzSharedLibraries() android.RuleBuilderInstalls { | 
| Ivan Lozano | 0f9963e | 2023-02-06 13:31:02 -0500 | [diff] [blame] | 686 | if fuzzer, ok := mod.compiler.(*fuzzDecorator); ok { | 
|  | 687 | return fuzzer.sharedLibraries | 
|  | 688 | } | 
|  | 689 | panic(fmt.Errorf("FuzzSharedLibraries called on non-fuzz module: %q", mod.BaseModuleName())) | 
|  | 690 | } | 
|  | 691 |  | 
| Ivan Lozano | 39b0bf0 | 2021-10-14 12:22:09 -0400 | [diff] [blame] | 692 | func (mod *Module) UnstrippedOutputFile() android.Path { | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 693 | if mod.compiler != nil { | 
|  | 694 | return mod.compiler.unstrippedOutputFilePath() | 
| Ivan Lozano | 39b0bf0 | 2021-10-14 12:22:09 -0400 | [diff] [blame] | 695 | } | 
|  | 696 | return nil | 
|  | 697 | } | 
|  | 698 |  | 
| Ivan Lozano | e0833b1 | 2019-11-06 19:15:49 -0800 | [diff] [blame] | 699 | func (mod *Module) IncludeDirs() android.Paths { | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 700 | if mod.compiler != nil { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 701 | if library, ok := mod.compiler.(*libraryDecorator); ok { | 
| Ivan Lozano | e0833b1 | 2019-11-06 19:15:49 -0800 | [diff] [blame] | 702 | return library.includeDirs | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 703 | } | 
|  | 704 | } | 
|  | 705 | panic(fmt.Errorf("IncludeDirs called on non-library module: %q", mod.BaseModuleName())) | 
|  | 706 | } | 
|  | 707 |  | 
|  | 708 | func (mod *Module) SetStatic() { | 
|  | 709 | if mod.compiler != nil { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 710 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 711 | library.setStatic() | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 712 | return | 
|  | 713 | } | 
|  | 714 | } | 
|  | 715 | panic(fmt.Errorf("SetStatic called on non-library module: %q", mod.BaseModuleName())) | 
|  | 716 | } | 
|  | 717 |  | 
|  | 718 | func (mod *Module) SetShared() { | 
|  | 719 | if mod.compiler != nil { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 720 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 721 | library.setShared() | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 722 | return | 
|  | 723 | } | 
|  | 724 | } | 
|  | 725 | panic(fmt.Errorf("SetShared called on non-library module: %q", mod.BaseModuleName())) | 
|  | 726 | } | 
|  | 727 |  | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 728 | func (mod *Module) BuildStaticVariant() bool { | 
|  | 729 | if mod.compiler != nil { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 730 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 731 | return library.buildStatic() | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 732 | } | 
|  | 733 | } | 
|  | 734 | panic(fmt.Errorf("BuildStaticVariant called on non-library module: %q", mod.BaseModuleName())) | 
|  | 735 | } | 
|  | 736 |  | 
|  | 737 | func (mod *Module) BuildSharedVariant() bool { | 
|  | 738 | if mod.compiler != nil { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 739 | if library, ok := mod.compiler.(libraryInterface); ok { | 
|  | 740 | return library.buildShared() | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 741 | } | 
|  | 742 | } | 
|  | 743 | panic(fmt.Errorf("BuildSharedVariant called on non-library module: %q", mod.BaseModuleName())) | 
|  | 744 | } | 
|  | 745 |  | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 746 | func (mod *Module) Module() android.Module { | 
|  | 747 | return mod | 
|  | 748 | } | 
|  | 749 |  | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 750 | func (mod *Module) OutputFile() android.OptionalPath { | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 751 | return mod.outputFile | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 752 | } | 
|  | 753 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 754 | func (mod *Module) CoverageFiles() android.Paths { | 
|  | 755 | if mod.compiler != nil { | 
| Joel Galenson | fa04938 | 2021-01-14 16:03:18 -0800 | [diff] [blame] | 756 | return android.Paths{} | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 757 | } | 
|  | 758 | panic(fmt.Errorf("CoverageFiles called on non-library module: %q", mod.BaseModuleName())) | 
|  | 759 | } | 
|  | 760 |  | 
| Ivan Lozano | 7f67c2a | 2022-06-27 16:00:26 -0400 | [diff] [blame] | 761 | // Rust does not produce gcno files, and therefore does not produce a coverage archive. | 
|  | 762 | func (mod *Module) CoverageOutputFile() android.OptionalPath { | 
|  | 763 | return android.OptionalPath{} | 
|  | 764 | } | 
|  | 765 |  | 
|  | 766 | func (mod *Module) IsNdk(config android.Config) bool { | 
|  | 767 | return false | 
|  | 768 | } | 
|  | 769 |  | 
|  | 770 | func (mod *Module) IsStubs() bool { | 
|  | 771 | return false | 
|  | 772 | } | 
|  | 773 |  | 
| Jiyong Park | 459feca | 2020-12-15 11:02:21 +0900 | [diff] [blame] | 774 | func (mod *Module) installable(apexInfo android.ApexInfo) bool { | 
| Jiyong Park | 2811e07 | 2021-09-30 17:25:21 +0900 | [diff] [blame] | 775 | if !proptools.BoolDefault(mod.Installable(), mod.EverInstallable()) { | 
| Jiyong Park | bf8147a | 2021-05-17 13:19:33 +0900 | [diff] [blame] | 776 | return false | 
|  | 777 | } | 
|  | 778 |  | 
| Jiyong Park | 459feca | 2020-12-15 11:02:21 +0900 | [diff] [blame] | 779 | // The apex variant is not installable because it is included in the APEX and won't appear | 
|  | 780 | // in the system partition as a standalone file. | 
|  | 781 | if !apexInfo.IsForPlatform() { | 
|  | 782 | return false | 
|  | 783 | } | 
|  | 784 |  | 
| Jiyong Park | e54f07e | 2021-04-07 15:08:04 +0900 | [diff] [blame] | 785 | return mod.OutputFile().Valid() && !mod.Properties.PreventInstall | 
| Jiyong Park | 459feca | 2020-12-15 11:02:21 +0900 | [diff] [blame] | 786 | } | 
|  | 787 |  | 
| Ivan Lozano | e950cda | 2021-11-09 11:26:04 -0500 | [diff] [blame] | 788 | func (ctx moduleContext) apexVariationName() string { | 
|  | 789 | return ctx.Provider(android.ApexInfoProvider).(android.ApexInfo).ApexVariationName | 
|  | 790 | } | 
|  | 791 |  | 
| Ivan Lozano | 183a321 | 2019-10-18 14:18:45 -0700 | [diff] [blame] | 792 | var _ cc.LinkableInterface = (*Module)(nil) | 
|  | 793 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 794 | func (mod *Module) Init() android.Module { | 
|  | 795 | mod.AddProperties(&mod.Properties) | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 796 | mod.AddProperties(&mod.VendorProperties) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 797 |  | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 798 | if mod.afdo != nil { | 
|  | 799 | mod.AddProperties(mod.afdo.props()...) | 
|  | 800 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 801 | if mod.compiler != nil { | 
|  | 802 | mod.AddProperties(mod.compiler.compilerProps()...) | 
|  | 803 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 804 | if mod.coverage != nil { | 
|  | 805 | mod.AddProperties(mod.coverage.props()...) | 
|  | 806 | } | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 807 | if mod.clippy != nil { | 
|  | 808 | mod.AddProperties(mod.clippy.props()...) | 
|  | 809 | } | 
| Ivan Lozano | 4fef93c | 2020-07-08 08:39:44 -0400 | [diff] [blame] | 810 | if mod.sourceProvider != nil { | 
| Andrei Homescu | c776792 | 2020-08-05 06:36:19 -0700 | [diff] [blame] | 811 | mod.AddProperties(mod.sourceProvider.SourceProviderProps()...) | 
| Ivan Lozano | 4fef93c | 2020-07-08 08:39:44 -0400 | [diff] [blame] | 812 | } | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 813 | if mod.sanitize != nil { | 
|  | 814 | mod.AddProperties(mod.sanitize.props()...) | 
|  | 815 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 816 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 817 | android.InitAndroidArchModule(mod, mod.hod, mod.multilib) | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 818 | android.InitApexModule(mod) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 819 |  | 
|  | 820 | android.InitDefaultableModule(mod) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 821 | return mod | 
|  | 822 | } | 
|  | 823 |  | 
|  | 824 | func newBaseModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module { | 
|  | 825 | return &Module{ | 
|  | 826 | hod:      hod, | 
|  | 827 | multilib: multilib, | 
|  | 828 | } | 
|  | 829 | } | 
|  | 830 | func newModule(hod android.HostOrDeviceSupported, multilib android.Multilib) *Module { | 
|  | 831 | module := newBaseModule(hod, multilib) | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 832 | module.afdo = &afdo{} | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 833 | module.coverage = &coverage{} | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 834 | module.clippy = &clippy{} | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 835 | module.sanitize = &sanitize{} | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 836 | return module | 
|  | 837 | } | 
|  | 838 |  | 
|  | 839 | type ModuleContext interface { | 
|  | 840 | android.ModuleContext | 
|  | 841 | ModuleContextIntf | 
|  | 842 | } | 
|  | 843 |  | 
|  | 844 | type BaseModuleContext interface { | 
|  | 845 | android.BaseModuleContext | 
|  | 846 | ModuleContextIntf | 
|  | 847 | } | 
|  | 848 |  | 
|  | 849 | type DepsContext interface { | 
|  | 850 | android.BottomUpMutatorContext | 
|  | 851 | ModuleContextIntf | 
|  | 852 | } | 
|  | 853 |  | 
|  | 854 | type ModuleContextIntf interface { | 
| Thiébaud Weksteen | 1f7f70f | 2020-06-24 11:32:48 +0200 | [diff] [blame] | 855 | RustModule() *Module | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 856 | toolchain() config.Toolchain | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 857 | } | 
|  | 858 |  | 
|  | 859 | type depsContext struct { | 
|  | 860 | android.BottomUpMutatorContext | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 861 | } | 
|  | 862 |  | 
|  | 863 | type moduleContext struct { | 
|  | 864 | android.ModuleContext | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 865 | } | 
|  | 866 |  | 
| Thiébaud Weksteen | 1f7f70f | 2020-06-24 11:32:48 +0200 | [diff] [blame] | 867 | type baseModuleContext struct { | 
|  | 868 | android.BaseModuleContext | 
|  | 869 | } | 
|  | 870 |  | 
|  | 871 | func (ctx *moduleContext) RustModule() *Module { | 
|  | 872 | return ctx.Module().(*Module) | 
|  | 873 | } | 
|  | 874 |  | 
|  | 875 | func (ctx *moduleContext) toolchain() config.Toolchain { | 
|  | 876 | return ctx.RustModule().toolchain(ctx) | 
|  | 877 | } | 
|  | 878 |  | 
|  | 879 | func (ctx *depsContext) RustModule() *Module { | 
|  | 880 | return ctx.Module().(*Module) | 
|  | 881 | } | 
|  | 882 |  | 
|  | 883 | func (ctx *depsContext) toolchain() config.Toolchain { | 
|  | 884 | return ctx.RustModule().toolchain(ctx) | 
|  | 885 | } | 
|  | 886 |  | 
|  | 887 | func (ctx *baseModuleContext) RustModule() *Module { | 
|  | 888 | return ctx.Module().(*Module) | 
|  | 889 | } | 
|  | 890 |  | 
|  | 891 | func (ctx *baseModuleContext) toolchain() config.Toolchain { | 
|  | 892 | return ctx.RustModule().toolchain(ctx) | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 893 | } | 
|  | 894 |  | 
|  | 895 | func (mod *Module) nativeCoverage() bool { | 
| Matthew Maurer | a61e31f | 2021-05-27 11:09:11 -0700 | [diff] [blame] | 896 | // Bug: http://b/137883967 - native-bridge modules do not currently work with coverage | 
|  | 897 | if mod.Target().NativeBridge == android.NativeBridgeEnabled { | 
|  | 898 | return false | 
|  | 899 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 900 | return mod.compiler != nil && mod.compiler.nativeCoverage() | 
|  | 901 | } | 
|  | 902 |  | 
| Ivan Lozano | d7586b6 | 2021-04-01 09:49:36 -0400 | [diff] [blame] | 903 | func (mod *Module) EverInstallable() bool { | 
|  | 904 | return mod.compiler != nil && | 
|  | 905 | // Check to see whether the module is actually ever installable. | 
|  | 906 | mod.compiler.everInstallable() | 
|  | 907 | } | 
|  | 908 |  | 
|  | 909 | func (mod *Module) Installable() *bool { | 
|  | 910 | return mod.Properties.Installable | 
|  | 911 | } | 
|  | 912 |  | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 913 | func (mod *Module) ProcMacro() bool { | 
|  | 914 | if pm, ok := mod.compiler.(procMacroInterface); ok { | 
|  | 915 | return pm.ProcMacro() | 
|  | 916 | } | 
|  | 917 | return false | 
|  | 918 | } | 
|  | 919 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 920 | func (mod *Module) toolchain(ctx android.BaseModuleContext) config.Toolchain { | 
|  | 921 | if mod.cachedToolchain == nil { | 
|  | 922 | mod.cachedToolchain = config.FindToolchain(ctx.Os(), ctx.Arch()) | 
|  | 923 | } | 
|  | 924 | return mod.cachedToolchain | 
|  | 925 | } | 
|  | 926 |  | 
| Thiébaud Weksteen | 31f1bb8 | 2020-08-27 13:37:29 +0200 | [diff] [blame] | 927 | func (mod *Module) ccToolchain(ctx android.BaseModuleContext) cc_config.Toolchain { | 
|  | 928 | return cc_config.FindToolchain(ctx.Os(), ctx.Arch()) | 
|  | 929 | } | 
|  | 930 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 931 | func (d *Defaults) GenerateAndroidBuildActions(ctx android.ModuleContext) { | 
|  | 932 | } | 
|  | 933 |  | 
|  | 934 | func (mod *Module) GenerateAndroidBuildActions(actx android.ModuleContext) { | 
|  | 935 | ctx := &moduleContext{ | 
|  | 936 | ModuleContext: actx, | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 937 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 938 |  | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 939 | apexInfo := actx.Provider(android.ApexInfoProvider).(android.ApexInfo) | 
|  | 940 | if !apexInfo.IsForPlatform() { | 
|  | 941 | mod.hideApexVariantFromMake = true | 
|  | 942 | } | 
|  | 943 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 944 | toolchain := mod.toolchain(ctx) | 
| Ivan Lozano | 6a88443 | 2020-12-02 09:15:16 -0500 | [diff] [blame] | 945 | mod.makeLinkType = cc.GetMakeLinkType(actx, mod) | 
|  | 946 |  | 
| Ivan Lozano | f1868af | 2022-04-12 13:08:36 -0400 | [diff] [blame] | 947 | mod.Properties.SubName = cc.GetSubnameProperty(actx, mod) | 
| Matthew Maurer | a61e31f | 2021-05-27 11:09:11 -0700 | [diff] [blame] | 948 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 949 | if !toolchain.Supported() { | 
|  | 950 | // This toolchain's unsupported, there's nothing to do for this mod. | 
|  | 951 | return | 
|  | 952 | } | 
|  | 953 |  | 
|  | 954 | deps := mod.depsToPaths(ctx) | 
|  | 955 | flags := Flags{ | 
|  | 956 | Toolchain: toolchain, | 
|  | 957 | } | 
|  | 958 |  | 
| Ivan Lozano | 67eada3 | 2021-09-23 11:50:33 -0400 | [diff] [blame] | 959 | // Calculate rustc flags | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 960 | if mod.afdo != nil { | 
| Vinh Tran | cde1016 | 2023-03-09 22:07:19 -0500 | [diff] [blame] | 961 | flags, deps = mod.afdo.flags(actx, flags, deps) | 
| Yi Kong | 46c6e59 | 2022-01-20 22:55:00 +0800 | [diff] [blame] | 962 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 963 | if mod.compiler != nil { | 
|  | 964 | flags = mod.compiler.compilerFlags(ctx, flags) | 
| Ivan Lozano | 67eada3 | 2021-09-23 11:50:33 -0400 | [diff] [blame] | 965 | flags = mod.compiler.cfgFlags(ctx, flags) | 
|  | 966 | flags = mod.compiler.featureFlags(ctx, flags) | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 967 | } | 
|  | 968 | if mod.coverage != nil { | 
|  | 969 | flags, deps = mod.coverage.flags(ctx, flags, deps) | 
|  | 970 | } | 
| Thiébaud Weksteen | 92f703b | 2020-06-22 13:28:02 +0200 | [diff] [blame] | 971 | if mod.clippy != nil { | 
|  | 972 | flags, deps = mod.clippy.flags(ctx, flags, deps) | 
|  | 973 | } | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 974 | if mod.sanitize != nil { | 
|  | 975 | flags, deps = mod.sanitize.flags(ctx, flags, deps) | 
|  | 976 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 977 |  | 
| Thiébaud Weksteen | 295c72b | 2020-09-23 18:10:17 +0200 | [diff] [blame] | 978 | // SourceProvider needs to call GenerateSource() before compiler calls | 
|  | 979 | // compile() so it can provide the source. A SourceProvider has | 
|  | 980 | // multiple variants (e.g. source, rlib, dylib). Only the "source" | 
|  | 981 | // variant is responsible for effectively generating the source. The | 
|  | 982 | // remaining variants relies on the "source" variant output. | 
| Ivan Lozano | 26ecd6c | 2020-07-31 13:40:31 -0400 | [diff] [blame] | 983 | if mod.sourceProvider != nil { | 
| Thiébaud Weksteen | 295c72b | 2020-09-23 18:10:17 +0200 | [diff] [blame] | 984 | if mod.compiler.(libraryInterface).source() { | 
|  | 985 | mod.sourceProvider.GenerateSource(ctx, deps) | 
|  | 986 | mod.sourceProvider.setSubName(ctx.ModuleSubDir()) | 
|  | 987 | } else { | 
|  | 988 | sourceMod := actx.GetDirectDepWithTag(mod.Name(), sourceDepTag) | 
|  | 989 | sourceLib := sourceMod.(*Module).compiler.(*libraryDecorator) | 
| Chih-Hung Hsieh | c49649c | 2020-10-01 21:25:05 -0700 | [diff] [blame] | 990 | mod.sourceProvider.setOutputFiles(sourceLib.sourceProvider.Srcs()) | 
| Thiébaud Weksteen | 295c72b | 2020-09-23 18:10:17 +0200 | [diff] [blame] | 991 | } | 
| Ivan Lozano | 26ecd6c | 2020-07-31 13:40:31 -0400 | [diff] [blame] | 992 | } | 
|  | 993 |  | 
|  | 994 | if mod.compiler != nil && !mod.compiler.Disabled() { | 
| Thiébaud Weksteen | ee6a89b | 2021-02-25 16:30:57 +0100 | [diff] [blame] | 995 | mod.compiler.initialize(ctx) | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 996 | buildOutput := mod.compiler.compile(ctx, flags, deps) | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 997 | if ctx.Failed() { | 
|  | 998 | return | 
|  | 999 | } | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 1000 | mod.outputFile = android.OptionalPathForPath(buildOutput.outputFile) | 
|  | 1001 | if buildOutput.kytheFile != nil { | 
|  | 1002 | mod.kytheFiles = append(mod.kytheFiles, buildOutput.kytheFile) | 
|  | 1003 | } | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 1004 | bloaty.MeasureSizeForPaths(ctx, mod.compiler.strippedOutputFilePath(), android.OptionalPathForPath(mod.compiler.unstrippedOutputFilePath())) | 
| Jiyong Park | 459feca | 2020-12-15 11:02:21 +0900 | [diff] [blame] | 1005 |  | 
| Dan Albert | 06feee9 | 2021-03-19 15:06:02 -0700 | [diff] [blame] | 1006 | mod.docTimestampFile = mod.compiler.rustdoc(ctx, flags, deps) | 
| Matthew Maurer | e380363 | 2021-12-10 21:57:21 +0000 | [diff] [blame] | 1007 | if mod.docTimestampFile.Valid() { | 
|  | 1008 | ctx.CheckbuildFile(mod.docTimestampFile.Path()) | 
|  | 1009 | } | 
| Dan Albert | 06feee9 | 2021-03-19 15:06:02 -0700 | [diff] [blame] | 1010 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1011 | // glob exported headers for snapshot, if BOARD_VNDK_VERSION is current or | 
|  | 1012 | // RECOVERY_SNAPSHOT_VERSION is current. | 
|  | 1013 | if lib, ok := mod.compiler.(snapshotLibraryInterface); ok { | 
|  | 1014 | if cc.ShouldCollectHeadersForSnapshot(ctx, mod, apexInfo) { | 
|  | 1015 | lib.collectHeadersForSnapshot(ctx, deps) | 
|  | 1016 | } | 
|  | 1017 | } | 
|  | 1018 |  | 
| Jiyong Park | 459feca | 2020-12-15 11:02:21 +0900 | [diff] [blame] | 1019 | apexInfo := actx.Provider(android.ApexInfoProvider).(android.ApexInfo) | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 1020 | if !proptools.BoolDefault(mod.Installable(), mod.EverInstallable()) && !mod.ProcMacro() { | 
| Jiyong Park | d1e366a | 2021-10-05 09:12:41 +0900 | [diff] [blame] | 1021 | // If the module has been specifically configure to not be installed then | 
|  | 1022 | // hide from make as otherwise it will break when running inside make as the | 
|  | 1023 | // output path to install will not be specified. Not all uninstallable | 
|  | 1024 | // modules can be hidden from make as some are needed for resolving make | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 1025 | // side dependencies. In particular, proc-macros need to be captured in the | 
|  | 1026 | // host snapshot. | 
| Jiyong Park | d1e366a | 2021-10-05 09:12:41 +0900 | [diff] [blame] | 1027 | mod.HideFromMake() | 
|  | 1028 | } else if !mod.installable(apexInfo) { | 
|  | 1029 | mod.SkipInstall() | 
|  | 1030 | } | 
|  | 1031 |  | 
|  | 1032 | // Still call install though, the installs will be stored as PackageSpecs to allow | 
|  | 1033 | // using the outputs in a genrule. | 
|  | 1034 | if mod.OutputFile().Valid() { | 
| Thiébaud Weksteen | fabaff6 | 2020-08-27 13:48:36 +0200 | [diff] [blame] | 1035 | mod.compiler.install(ctx) | 
| Jiyong Park | d1e366a | 2021-10-05 09:12:41 +0900 | [diff] [blame] | 1036 | if ctx.Failed() { | 
|  | 1037 | return | 
|  | 1038 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1039 | } | 
| Chris Wailes | 74be764 | 2021-07-22 16:20:28 -0700 | [diff] [blame] | 1040 |  | 
|  | 1041 | ctx.Phony("rust", ctx.RustModule().OutputFile().Path()) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1042 | } | 
| Aditya Choudhary | 87b2ab2 | 2023-11-17 15:27:06 +0000 | [diff] [blame] | 1043 | if mod.testModule { | 
|  | 1044 | ctx.SetProvider(testing.TestModuleProviderKey, testing.TestModuleProviderData{}) | 
|  | 1045 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1046 | } | 
|  | 1047 |  | 
|  | 1048 | func (mod *Module) deps(ctx DepsContext) Deps { | 
|  | 1049 | deps := Deps{} | 
|  | 1050 |  | 
|  | 1051 | if mod.compiler != nil { | 
|  | 1052 | deps = mod.compiler.compilerDeps(ctx, deps) | 
| Ivan Lozano | 26ecd6c | 2020-07-31 13:40:31 -0400 | [diff] [blame] | 1053 | } | 
|  | 1054 | if mod.sourceProvider != nil { | 
| Andrei Homescu | c776792 | 2020-08-05 06:36:19 -0700 | [diff] [blame] | 1055 | deps = mod.sourceProvider.SourceProviderDeps(ctx, deps) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1056 | } | 
|  | 1057 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1058 | if mod.coverage != nil { | 
|  | 1059 | deps = mod.coverage.deps(ctx, deps) | 
|  | 1060 | } | 
|  | 1061 |  | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 1062 | if mod.sanitize != nil { | 
|  | 1063 | deps = mod.sanitize.deps(ctx, deps) | 
|  | 1064 | } | 
|  | 1065 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1066 | deps.Rlibs = android.LastUniqueStrings(deps.Rlibs) | 
|  | 1067 | deps.Dylibs = android.LastUniqueStrings(deps.Dylibs) | 
| Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 1068 | deps.Rustlibs = android.LastUniqueStrings(deps.Rustlibs) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1069 | deps.ProcMacros = android.LastUniqueStrings(deps.ProcMacros) | 
|  | 1070 | deps.SharedLibs = android.LastUniqueStrings(deps.SharedLibs) | 
|  | 1071 | deps.StaticLibs = android.LastUniqueStrings(deps.StaticLibs) | 
| Andrew Walbran | 797e4be | 2022-03-07 15:41:53 +0000 | [diff] [blame] | 1072 | deps.Stdlibs = android.LastUniqueStrings(deps.Stdlibs) | 
| Ivan Lozano | 63bb768 | 2021-03-23 15:53:44 -0400 | [diff] [blame] | 1073 | deps.WholeStaticLibs = android.LastUniqueStrings(deps.WholeStaticLibs) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1074 | return deps | 
|  | 1075 |  | 
|  | 1076 | } | 
|  | 1077 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1078 | type dependencyTag struct { | 
|  | 1079 | blueprint.BaseDependencyTag | 
| Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1080 | name      string | 
|  | 1081 | library   bool | 
|  | 1082 | procMacro bool | 
| Colin Cross | 65cb314 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1083 | dynamic   bool | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1084 | } | 
|  | 1085 |  | 
| Jiyong Park | 65b6224 | 2020-11-25 12:44:59 +0900 | [diff] [blame] | 1086 | // InstallDepNeeded returns true for rlibs, dylibs, and proc macros so that they or their transitive | 
|  | 1087 | // dependencies (especially C/C++ shared libs) are installed as dependencies of a rust binary. | 
|  | 1088 | func (d dependencyTag) InstallDepNeeded() bool { | 
| Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1089 | return d.library || d.procMacro | 
| Jiyong Park | 65b6224 | 2020-11-25 12:44:59 +0900 | [diff] [blame] | 1090 | } | 
|  | 1091 |  | 
|  | 1092 | var _ android.InstallNeededDependencyTag = dependencyTag{} | 
|  | 1093 |  | 
| Colin Cross | 65cb314 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1094 | func (d dependencyTag) LicenseAnnotations() []android.LicenseAnnotation { | 
|  | 1095 | if d.library && d.dynamic { | 
|  | 1096 | return []android.LicenseAnnotation{android.LicenseAnnotationSharedDependency} | 
|  | 1097 | } | 
|  | 1098 | return nil | 
|  | 1099 | } | 
|  | 1100 |  | 
|  | 1101 | var _ android.LicenseAnnotationsDependencyTag = dependencyTag{} | 
|  | 1102 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1103 | var ( | 
| Ivan Lozano | c564d2d | 2020-08-04 15:43:37 -0400 | [diff] [blame] | 1104 | customBindgenDepTag = dependencyTag{name: "customBindgenTag"} | 
|  | 1105 | rlibDepTag          = dependencyTag{name: "rlibTag", library: true} | 
| Colin Cross | 65cb314 | 2021-12-10 23:05:02 +0000 | [diff] [blame] | 1106 | dylibDepTag         = dependencyTag{name: "dylib", library: true, dynamic: true} | 
| Jaewoong Jung | 18aefc1 | 2020-12-21 09:11:10 -0800 | [diff] [blame] | 1107 | procMacroDepTag     = dependencyTag{name: "procMacro", procMacro: true} | 
| Ivan Lozano | c564d2d | 2020-08-04 15:43:37 -0400 | [diff] [blame] | 1108 | testPerSrcDepTag    = dependencyTag{name: "rust_unit_tests"} | 
| Thiébaud Weksteen | 295c72b | 2020-09-23 18:10:17 +0200 | [diff] [blame] | 1109 | sourceDepTag        = dependencyTag{name: "source"} | 
| Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 1110 | dataLibDepTag       = dependencyTag{name: "data lib"} | 
|  | 1111 | dataBinDepTag       = dependencyTag{name: "data bin"} | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1112 | ) | 
|  | 1113 |  | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1114 | func IsDylibDepTag(depTag blueprint.DependencyTag) bool { | 
|  | 1115 | tag, ok := depTag.(dependencyTag) | 
|  | 1116 | return ok && tag == dylibDepTag | 
|  | 1117 | } | 
|  | 1118 |  | 
| Jiyong Park | 94e22fd | 2021-04-08 18:19:15 +0900 | [diff] [blame] | 1119 | func IsRlibDepTag(depTag blueprint.DependencyTag) bool { | 
|  | 1120 | tag, ok := depTag.(dependencyTag) | 
|  | 1121 | return ok && tag == rlibDepTag | 
|  | 1122 | } | 
|  | 1123 |  | 
| Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 1124 | type autoDep struct { | 
|  | 1125 | variation string | 
|  | 1126 | depTag    dependencyTag | 
|  | 1127 | } | 
|  | 1128 |  | 
|  | 1129 | var ( | 
| Thiébaud Weksteen | 295c72b | 2020-09-23 18:10:17 +0200 | [diff] [blame] | 1130 | rlibVariation  = "rlib" | 
|  | 1131 | dylibVariation = "dylib" | 
|  | 1132 | rlibAutoDep    = autoDep{variation: rlibVariation, depTag: rlibDepTag} | 
|  | 1133 | dylibAutoDep   = autoDep{variation: dylibVariation, depTag: dylibDepTag} | 
| Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 1134 | ) | 
|  | 1135 |  | 
|  | 1136 | type autoDeppable interface { | 
| Liz Kammer | 356f7d4 | 2021-01-26 09:18:53 -0500 | [diff] [blame] | 1137 | autoDep(ctx android.BottomUpMutatorContext) autoDep | 
| Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 1138 | } | 
|  | 1139 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1140 | func (mod *Module) begin(ctx BaseModuleContext) { | 
|  | 1141 | if mod.coverage != nil { | 
|  | 1142 | mod.coverage.begin(ctx) | 
|  | 1143 | } | 
| Ivan Lozano | 6cd99e6 | 2020-02-11 08:24:25 -0500 | [diff] [blame] | 1144 | if mod.sanitize != nil { | 
|  | 1145 | mod.sanitize.begin(ctx) | 
|  | 1146 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1147 | } | 
|  | 1148 |  | 
| Ivan Lozano | fba2aa2 | 2021-11-11 09:29:07 -0500 | [diff] [blame] | 1149 | func (mod *Module) Prebuilt() *android.Prebuilt { | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 1150 | if p, ok := mod.compiler.(rustPrebuilt); ok { | 
| Ivan Lozano | fba2aa2 | 2021-11-11 09:29:07 -0500 | [diff] [blame] | 1151 | return p.prebuilt() | 
|  | 1152 | } | 
|  | 1153 | return nil | 
|  | 1154 | } | 
|  | 1155 |  | 
| Justin Yun | 24b246a | 2023-03-16 10:36:16 +0900 | [diff] [blame] | 1156 | func rustMakeLibName(ctx android.ModuleContext, c cc.LinkableInterface, dep cc.LinkableInterface, depName string) string { | 
|  | 1157 | if rustDep, ok := dep.(*Module); ok { | 
|  | 1158 | // Use base module name for snapshots when exporting to Makefile. | 
|  | 1159 | if snapshotPrebuilt, ok := rustDep.compiler.(cc.SnapshotInterface); ok { | 
|  | 1160 | baseName := rustDep.BaseModuleName() | 
|  | 1161 | return baseName + snapshotPrebuilt.SnapshotAndroidMkSuffix() + rustDep.AndroidMkSuffix() | 
|  | 1162 | } | 
|  | 1163 | } | 
|  | 1164 | return cc.MakeLibName(ctx, c, dep, depName) | 
|  | 1165 | } | 
|  | 1166 |  | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1167 | func collectIncludedProtos(mod *Module, dep *Module) { | 
|  | 1168 | if protoMod, ok := mod.sourceProvider.(*protobufDecorator); ok { | 
|  | 1169 | if _, ok := dep.sourceProvider.(*protobufDecorator); ok { | 
|  | 1170 | protoMod.additionalCrates = append(protoMod.additionalCrates, dep.CrateName()) | 
|  | 1171 | } | 
|  | 1172 | } | 
|  | 1173 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1174 | func (mod *Module) depsToPaths(ctx android.ModuleContext) PathDeps { | 
|  | 1175 | var depPaths PathDeps | 
|  | 1176 |  | 
|  | 1177 | directRlibDeps := []*Module{} | 
|  | 1178 | directDylibDeps := []*Module{} | 
|  | 1179 | directProcMacroDeps := []*Module{} | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 1180 | directSharedLibDeps := []cc.SharedLibraryInfo{} | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 1181 | directStaticLibDeps := [](cc.LinkableInterface){} | 
| Ivan Lozano | 07cbaf4 | 2020-07-22 16:09:13 -0400 | [diff] [blame] | 1182 | directSrcProvidersDeps := []*Module{} | 
|  | 1183 | directSrcDeps := [](android.SourceFileProducer){} | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1184 |  | 
| Ivan Lozano | e950cda | 2021-11-09 11:26:04 -0500 | [diff] [blame] | 1185 | // For the dependency from platform to apex, use the latest stubs | 
|  | 1186 | mod.apexSdkVersion = android.FutureApiLevel | 
|  | 1187 | apexInfo := ctx.Provider(android.ApexInfoProvider).(android.ApexInfo) | 
|  | 1188 | if !apexInfo.IsForPlatform() { | 
|  | 1189 | mod.apexSdkVersion = apexInfo.MinSdkVersion | 
|  | 1190 | } | 
|  | 1191 |  | 
|  | 1192 | if android.InList("hwaddress", ctx.Config().SanitizeDevice()) { | 
|  | 1193 | // In hwasan build, we override apexSdkVersion to the FutureApiLevel(10000) | 
|  | 1194 | // so that even Q(29/Android10) apexes could use the dynamic unwinder by linking the newer stubs(e.g libc(R+)). | 
|  | 1195 | // (b/144430859) | 
|  | 1196 | mod.apexSdkVersion = android.FutureApiLevel | 
|  | 1197 | } | 
|  | 1198 |  | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 1199 | skipModuleList := map[string]bool{} | 
|  | 1200 |  | 
|  | 1201 | var apiImportInfo multitree.ApiImportInfo | 
|  | 1202 | hasApiImportInfo := false | 
|  | 1203 |  | 
|  | 1204 | ctx.VisitDirectDeps(func(dep android.Module) { | 
|  | 1205 | if dep.Name() == "api_imports" { | 
|  | 1206 | apiImportInfo = ctx.OtherModuleProvider(dep, multitree.ApiImportsProvider).(multitree.ApiImportInfo) | 
|  | 1207 | hasApiImportInfo = true | 
|  | 1208 | } | 
|  | 1209 | }) | 
|  | 1210 |  | 
|  | 1211 | if hasApiImportInfo { | 
|  | 1212 | targetStubModuleList := map[string]string{} | 
|  | 1213 | targetOrigModuleList := map[string]string{} | 
|  | 1214 |  | 
|  | 1215 | // Search for dependency which both original module and API imported library with APEX stub exists | 
|  | 1216 | ctx.VisitDirectDeps(func(dep android.Module) { | 
|  | 1217 | depName := ctx.OtherModuleName(dep) | 
|  | 1218 | if apiLibrary, ok := apiImportInfo.ApexSharedLibs[depName]; ok { | 
|  | 1219 | targetStubModuleList[apiLibrary] = depName | 
|  | 1220 | } | 
|  | 1221 | }) | 
|  | 1222 | ctx.VisitDirectDeps(func(dep android.Module) { | 
|  | 1223 | depName := ctx.OtherModuleName(dep) | 
|  | 1224 | if origLibrary, ok := targetStubModuleList[depName]; ok { | 
|  | 1225 | targetOrigModuleList[origLibrary] = depName | 
|  | 1226 | } | 
|  | 1227 | }) | 
|  | 1228 |  | 
|  | 1229 | // Decide which library should be used between original and API imported library | 
|  | 1230 | ctx.VisitDirectDeps(func(dep android.Module) { | 
|  | 1231 | depName := ctx.OtherModuleName(dep) | 
|  | 1232 | if apiLibrary, ok := targetOrigModuleList[depName]; ok { | 
|  | 1233 | if cc.ShouldUseStubForApex(ctx, dep) { | 
|  | 1234 | skipModuleList[depName] = true | 
|  | 1235 | } else { | 
|  | 1236 | skipModuleList[apiLibrary] = true | 
|  | 1237 | } | 
|  | 1238 | } | 
|  | 1239 | }) | 
|  | 1240 | } | 
|  | 1241 |  | 
| Cole Faust | b6e6f99 | 2023-08-17 17:42:26 -0700 | [diff] [blame] | 1242 | var transitiveAndroidMkSharedLibs []*android.DepSet[string] | 
|  | 1243 | var directAndroidMkSharedLibs []string | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1244 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1245 | ctx.VisitDirectDeps(func(dep android.Module) { | 
|  | 1246 | depName := ctx.OtherModuleName(dep) | 
|  | 1247 | depTag := ctx.OtherModuleDependencyTag(dep) | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1248 |  | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 1249 | if _, exists := skipModuleList[depName]; exists { | 
|  | 1250 | return | 
|  | 1251 | } | 
| A. Cody Schuffelen | c183e3a | 2023-08-14 21:09:47 -0700 | [diff] [blame] | 1252 |  | 
|  | 1253 | if depTag == android.DarwinUniversalVariantTag { | 
|  | 1254 | return | 
|  | 1255 | } | 
|  | 1256 |  | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 1257 | if rustDep, ok := dep.(*Module); ok && !rustDep.CcLibraryInterface() { | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1258 | //Handle Rust Modules | 
| Justin Yun | 24b246a | 2023-03-16 10:36:16 +0900 | [diff] [blame] | 1259 | makeLibName := rustMakeLibName(ctx, mod, rustDep, depName+rustDep.Properties.RustSubName) | 
| Ivan Lozano | 70e0a07 | 2019-09-13 14:23:15 -0700 | [diff] [blame] | 1260 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1261 | switch depTag { | 
|  | 1262 | case dylibDepTag: | 
|  | 1263 | dylib, ok := rustDep.compiler.(libraryInterface) | 
|  | 1264 | if !ok || !dylib.dylib() { | 
|  | 1265 | ctx.ModuleErrorf("mod %q not an dylib library", depName) | 
|  | 1266 | return | 
|  | 1267 | } | 
|  | 1268 | directDylibDeps = append(directDylibDeps, rustDep) | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1269 | mod.Properties.AndroidMkDylibs = append(mod.Properties.AndroidMkDylibs, makeLibName) | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1270 | mod.Properties.SnapshotDylibs = append(mod.Properties.SnapshotDylibs, cc.BaseLibName(depName)) | 
|  | 1271 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1272 | case rlibDepTag: | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1273 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1274 | rlib, ok := rustDep.compiler.(libraryInterface) | 
|  | 1275 | if !ok || !rlib.rlib() { | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1276 | ctx.ModuleErrorf("mod %q not an rlib library", makeLibName) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1277 | return | 
|  | 1278 | } | 
|  | 1279 | directRlibDeps = append(directRlibDeps, rustDep) | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1280 | mod.Properties.AndroidMkRlibs = append(mod.Properties.AndroidMkRlibs, makeLibName) | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1281 | mod.Properties.SnapshotRlibs = append(mod.Properties.SnapshotRlibs, cc.BaseLibName(depName)) | 
|  | 1282 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1283 | case procMacroDepTag: | 
|  | 1284 | directProcMacroDeps = append(directProcMacroDeps, rustDep) | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1285 | mod.Properties.AndroidMkProcMacroLibs = append(mod.Properties.AndroidMkProcMacroLibs, makeLibName) | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1286 |  | 
|  | 1287 | case sourceDepTag: | 
|  | 1288 | if _, ok := mod.sourceProvider.(*protobufDecorator); ok { | 
|  | 1289 | collectIncludedProtos(mod, rustDep) | 
|  | 1290 | } | 
| Paul Duffin | d5cf92e | 2021-07-09 17:38:55 +0100 | [diff] [blame] | 1291 | } | 
|  | 1292 |  | 
| Cole Faust | b6e6f99 | 2023-08-17 17:42:26 -0700 | [diff] [blame] | 1293 | transitiveAndroidMkSharedLibs = append(transitiveAndroidMkSharedLibs, rustDep.transitiveAndroidMkSharedLibs) | 
|  | 1294 |  | 
| Paul Duffin | d5cf92e | 2021-07-09 17:38:55 +0100 | [diff] [blame] | 1295 | if android.IsSourceDepTagWithOutputTag(depTag, "") { | 
| Ivan Lozano | 07cbaf4 | 2020-07-22 16:09:13 -0400 | [diff] [blame] | 1296 | // Since these deps are added in path_properties.go via AddDependencies, we need to ensure the correct | 
|  | 1297 | // OS/Arch variant is used. | 
|  | 1298 | var helper string | 
|  | 1299 | if ctx.Host() { | 
|  | 1300 | helper = "missing 'host_supported'?" | 
|  | 1301 | } else { | 
|  | 1302 | helper = "device module defined?" | 
|  | 1303 | } | 
|  | 1304 |  | 
|  | 1305 | if dep.Target().Os != ctx.Os() { | 
|  | 1306 | ctx.ModuleErrorf("OS mismatch on dependency %q (%s)", dep.Name(), helper) | 
|  | 1307 | return | 
|  | 1308 | } else if dep.Target().Arch.ArchType != ctx.Arch().ArchType { | 
|  | 1309 | ctx.ModuleErrorf("Arch mismatch on dependency %q (%s)", dep.Name(), helper) | 
|  | 1310 | return | 
|  | 1311 | } | 
|  | 1312 | directSrcProvidersDeps = append(directSrcProvidersDeps, rustDep) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1313 | } | 
|  | 1314 |  | 
| Ivan Lozano | 2bbcacf | 2020-08-07 09:00:50 -0400 | [diff] [blame] | 1315 | //Append the dependencies exportedDirs, except for proc-macros which target a different arch/OS | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 1316 | if depTag != procMacroDepTag { | 
|  | 1317 | exportedInfo := ctx.OtherModuleProvider(dep, FlagExporterInfoProvider).(FlagExporterInfo) | 
|  | 1318 | depPaths.linkDirs = append(depPaths.linkDirs, exportedInfo.LinkDirs...) | 
|  | 1319 | depPaths.depFlags = append(depPaths.depFlags, exportedInfo.Flags...) | 
|  | 1320 | depPaths.linkObjects = append(depPaths.linkObjects, exportedInfo.LinkObjects...) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1321 | } | 
|  | 1322 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1323 | if depTag == dylibDepTag || depTag == rlibDepTag || depTag == procMacroDepTag { | 
| Ivan Lozano | 8d10fc3 | 2021-11-05 16:36:47 -0400 | [diff] [blame] | 1324 | linkFile := rustDep.UnstrippedOutputFile() | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1325 | linkDir := linkPathFromFilePath(linkFile) | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 1326 | if lib, ok := mod.compiler.(exportedFlagsProducer); ok { | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1327 | lib.exportLinkDirs(linkDir) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1328 | } | 
|  | 1329 | } | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1330 | if depTag == sourceDepTag { | 
|  | 1331 | if _, ok := mod.sourceProvider.(*protobufDecorator); ok && mod.Source() { | 
|  | 1332 | if _, ok := rustDep.sourceProvider.(*protobufDecorator); ok { | 
|  | 1333 | exportedInfo := ctx.OtherModuleProvider(dep, cc.FlagExporterInfoProvider).(cc.FlagExporterInfo) | 
|  | 1334 | depPaths.depIncludePaths = append(depPaths.depIncludePaths, exportedInfo.IncludeDirs...) | 
|  | 1335 | } | 
|  | 1336 | } | 
|  | 1337 | } | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 1338 | } else if ccDep, ok := dep.(cc.LinkableInterface); ok { | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 1339 | //Handle C dependencies | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1340 | makeLibName := cc.MakeLibName(ctx, mod, ccDep, depName) | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 1341 | if _, ok := ccDep.(*Module); !ok { | 
|  | 1342 | if ccDep.Module().Target().Os != ctx.Os() { | 
|  | 1343 | ctx.ModuleErrorf("OS mismatch between %q and %q", ctx.ModuleName(), depName) | 
|  | 1344 | return | 
|  | 1345 | } | 
|  | 1346 | if ccDep.Module().Target().Arch.ArchType != ctx.Arch().ArchType { | 
|  | 1347 | ctx.ModuleErrorf("Arch mismatch between %q and %q", ctx.ModuleName(), depName) | 
|  | 1348 | return | 
|  | 1349 | } | 
| Ivan Lozano | 70e0a07 | 2019-09-13 14:23:15 -0700 | [diff] [blame] | 1350 | } | 
| Ivan Lozano | 2093af2 | 2020-08-25 12:48:19 -0400 | [diff] [blame] | 1351 | linkObject := ccDep.OutputFile() | 
| Ivan Lozano | 2093af2 | 2020-08-25 12:48:19 -0400 | [diff] [blame] | 1352 | if !linkObject.Valid() { | 
| Colin Cross | a86ea0e | 2023-08-01 09:57:22 -0700 | [diff] [blame] | 1353 | if !ctx.Config().AllowMissingDependencies() { | 
|  | 1354 | ctx.ModuleErrorf("Invalid output file when adding dep %q to %q", depName, ctx.ModuleName()) | 
|  | 1355 | } else { | 
|  | 1356 | ctx.AddMissingDependencies([]string{depName}) | 
|  | 1357 | } | 
|  | 1358 | return | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1359 | } | 
|  | 1360 |  | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1361 | linkPath := linkPathFromFilePath(linkObject.Path()) | 
| Colin Cross | a86ea0e | 2023-08-01 09:57:22 -0700 | [diff] [blame] | 1362 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1363 | exportDep := false | 
| Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 1364 | switch { | 
|  | 1365 | case cc.IsStaticDepTag(depTag): | 
| Ivan Lozano | 63bb768 | 2021-03-23 15:53:44 -0400 | [diff] [blame] | 1366 | if cc.IsWholeStaticLib(depTag) { | 
|  | 1367 | // rustc will bundle static libraries when they're passed with "-lstatic=<lib>". This will fail | 
|  | 1368 | // if the library is not prefixed by "lib". | 
| Ivan Lozano | fdadcd7 | 2021-11-01 09:04:23 -0400 | [diff] [blame] | 1369 | if mod.Binary() { | 
|  | 1370 | // Binaries may sometimes need to link whole static libraries that don't start with 'lib'. | 
|  | 1371 | // Since binaries don't need to 'rebundle' these like libraries and only use these for the | 
|  | 1372 | // final linkage, pass the args directly to the linker to handle these cases. | 
|  | 1373 | depPaths.depLinkFlags = append(depPaths.depLinkFlags, []string{"-Wl,--whole-archive", linkObject.Path().String(), "-Wl,--no-whole-archive"}...) | 
|  | 1374 | } else if libName, ok := libNameFromFilePath(linkObject.Path()); ok { | 
| Ivan Lozano | fb6f36f | 2021-02-05 12:27:08 -0500 | [diff] [blame] | 1375 | depPaths.depFlags = append(depPaths.depFlags, "-lstatic="+libName) | 
| Ivan Lozano | 63bb768 | 2021-03-23 15:53:44 -0400 | [diff] [blame] | 1376 | } else { | 
|  | 1377 | ctx.ModuleErrorf("'%q' cannot be listed as a whole_static_library in Rust modules unless the output is prefixed by 'lib'", depName, ctx.ModuleName()) | 
| Ivan Lozano | fb6f36f | 2021-02-05 12:27:08 -0500 | [diff] [blame] | 1378 | } | 
| Ivan Lozano | 3dfa12d | 2021-02-04 11:29:41 -0500 | [diff] [blame] | 1379 | } | 
|  | 1380 |  | 
|  | 1381 | // Add this to linkObjects to pass the library directly to the linker as well. This propagates | 
|  | 1382 | // to dependencies to avoid having to redeclare static libraries for dependents of the dylib variant. | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1383 | depPaths.linkObjects = append(depPaths.linkObjects, linkObject.String()) | 
| Ivan Lozano | 3dfa12d | 2021-02-04 11:29:41 -0500 | [diff] [blame] | 1384 | depPaths.linkDirs = append(depPaths.linkDirs, linkPath) | 
|  | 1385 |  | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 1386 | exportedInfo := ctx.OtherModuleProvider(dep, cc.FlagExporterInfoProvider).(cc.FlagExporterInfo) | 
|  | 1387 | depPaths.depIncludePaths = append(depPaths.depIncludePaths, exportedInfo.IncludeDirs...) | 
|  | 1388 | depPaths.depSystemIncludePaths = append(depPaths.depSystemIncludePaths, exportedInfo.SystemIncludeDirs...) | 
|  | 1389 | depPaths.depClangFlags = append(depPaths.depClangFlags, exportedInfo.Flags...) | 
|  | 1390 | depPaths.depGeneratedHeaders = append(depPaths.depGeneratedHeaders, exportedInfo.GeneratedHeaders...) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1391 | directStaticLibDeps = append(directStaticLibDeps, ccDep) | 
| Justin Yun | 2b3ed64 | 2022-02-16 08:15:07 +0900 | [diff] [blame] | 1392 |  | 
|  | 1393 | // Record baseLibName for snapshots. | 
|  | 1394 | mod.Properties.SnapshotStaticLibs = append(mod.Properties.SnapshotStaticLibs, cc.BaseLibName(depName)) | 
|  | 1395 |  | 
| Ivan Lozano | c08897c | 2021-04-02 12:41:32 -0400 | [diff] [blame] | 1396 | mod.Properties.AndroidMkStaticLibs = append(mod.Properties.AndroidMkStaticLibs, makeLibName) | 
| Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 1397 | case cc.IsSharedDepTag(depTag): | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 1398 | // For the shared lib dependencies, we may link to the stub variant | 
|  | 1399 | // of the dependency depending on the context (e.g. if this | 
|  | 1400 | // dependency crosses the APEX boundaries). | 
|  | 1401 | sharedLibraryInfo, exportedInfo := cc.ChooseStubOrImpl(ctx, dep) | 
|  | 1402 |  | 
|  | 1403 | // Re-get linkObject as ChooseStubOrImpl actually tells us which | 
|  | 1404 | // object (either from stub or non-stub) to use. | 
|  | 1405 | linkObject = android.OptionalPathForPath(sharedLibraryInfo.SharedLibrary) | 
| Colin Cross | a86ea0e | 2023-08-01 09:57:22 -0700 | [diff] [blame] | 1406 | if !linkObject.Valid() { | 
|  | 1407 | if !ctx.Config().AllowMissingDependencies() { | 
|  | 1408 | ctx.ModuleErrorf("Invalid output file when adding dep %q to %q", depName, ctx.ModuleName()) | 
|  | 1409 | } else { | 
|  | 1410 | ctx.AddMissingDependencies([]string{depName}) | 
|  | 1411 | } | 
|  | 1412 | return | 
|  | 1413 | } | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1414 | linkPath = linkPathFromFilePath(linkObject.Path()) | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 1415 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1416 | depPaths.linkDirs = append(depPaths.linkDirs, linkPath) | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1417 | depPaths.linkObjects = append(depPaths.linkObjects, linkObject.String()) | 
| Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 1418 | depPaths.depIncludePaths = append(depPaths.depIncludePaths, exportedInfo.IncludeDirs...) | 
|  | 1419 | depPaths.depSystemIncludePaths = append(depPaths.depSystemIncludePaths, exportedInfo.SystemIncludeDirs...) | 
|  | 1420 | depPaths.depClangFlags = append(depPaths.depClangFlags, exportedInfo.Flags...) | 
|  | 1421 | depPaths.depGeneratedHeaders = append(depPaths.depGeneratedHeaders, exportedInfo.GeneratedHeaders...) | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 1422 | directSharedLibDeps = append(directSharedLibDeps, sharedLibraryInfo) | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1423 |  | 
|  | 1424 | // Record baseLibName for snapshots. | 
|  | 1425 | mod.Properties.SnapshotSharedLibs = append(mod.Properties.SnapshotSharedLibs, cc.BaseLibName(depName)) | 
|  | 1426 |  | 
| Cole Faust | b6e6f99 | 2023-08-17 17:42:26 -0700 | [diff] [blame] | 1427 | directAndroidMkSharedLibs = append(directAndroidMkSharedLibs, makeLibName) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1428 | exportDep = true | 
| Zach Johnson | 3df4e63 | 2020-11-06 11:56:27 -0800 | [diff] [blame] | 1429 | case cc.IsHeaderDepTag(depTag): | 
|  | 1430 | exportedInfo := ctx.OtherModuleProvider(dep, cc.FlagExporterInfoProvider).(cc.FlagExporterInfo) | 
|  | 1431 | depPaths.depIncludePaths = append(depPaths.depIncludePaths, exportedInfo.IncludeDirs...) | 
|  | 1432 | depPaths.depSystemIncludePaths = append(depPaths.depSystemIncludePaths, exportedInfo.SystemIncludeDirs...) | 
|  | 1433 | depPaths.depGeneratedHeaders = append(depPaths.depGeneratedHeaders, exportedInfo.GeneratedHeaders...) | 
| Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 1434 | case depTag == cc.CrtBeginDepTag: | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 1435 | depPaths.CrtBegin = append(depPaths.CrtBegin, linkObject.Path()) | 
| Colin Cross | 6e511a9 | 2020-07-27 21:26:48 -0700 | [diff] [blame] | 1436 | case depTag == cc.CrtEndDepTag: | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 1437 | depPaths.CrtEnd = append(depPaths.CrtEnd, linkObject.Path()) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1438 | } | 
|  | 1439 |  | 
|  | 1440 | // Make sure these dependencies are propagated | 
| Matthew Maurer | bb3add1 | 2020-06-25 09:34:12 -0700 | [diff] [blame] | 1441 | if lib, ok := mod.compiler.(exportedFlagsProducer); ok && exportDep { | 
|  | 1442 | lib.exportLinkDirs(linkPath) | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1443 | lib.exportLinkObjects(linkObject.String()) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1444 | } | 
| Colin Cross | 018cbeb | 2022-01-24 17:22:45 -0800 | [diff] [blame] | 1445 | } else { | 
|  | 1446 | switch { | 
|  | 1447 | case depTag == cc.CrtBeginDepTag: | 
|  | 1448 | depPaths.CrtBegin = append(depPaths.CrtBegin, android.OutputFileForModule(ctx, dep, "")) | 
|  | 1449 | case depTag == cc.CrtEndDepTag: | 
|  | 1450 | depPaths.CrtEnd = append(depPaths.CrtEnd, android.OutputFileForModule(ctx, dep, "")) | 
|  | 1451 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1452 | } | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 1453 |  | 
|  | 1454 | if srcDep, ok := dep.(android.SourceFileProducer); ok { | 
| Paul Duffin | d5cf92e | 2021-07-09 17:38:55 +0100 | [diff] [blame] | 1455 | if android.IsSourceDepTagWithOutputTag(depTag, "") { | 
| Ivan Lozano | 89435d1 | 2020-07-31 11:01:18 -0400 | [diff] [blame] | 1456 | // These are usually genrules which don't have per-target variants. | 
|  | 1457 | directSrcDeps = append(directSrcDeps, srcDep) | 
|  | 1458 | } | 
|  | 1459 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1460 | }) | 
|  | 1461 |  | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1462 | mod.transitiveAndroidMkSharedLibs = android.NewDepSet[string](android.PREORDER, directAndroidMkSharedLibs, transitiveAndroidMkSharedLibs) | 
|  | 1463 |  | 
|  | 1464 | var rlibDepFiles RustLibraries | 
|  | 1465 | for _, dep := range directRlibDeps { | 
|  | 1466 | rlibDepFiles = append(rlibDepFiles, RustLibrary{Path: dep.UnstrippedOutputFile(), CrateName: dep.CrateName()}) | 
|  | 1467 | } | 
|  | 1468 | var dylibDepFiles RustLibraries | 
|  | 1469 | for _, dep := range directDylibDeps { | 
|  | 1470 | dylibDepFiles = append(dylibDepFiles, RustLibrary{Path: dep.UnstrippedOutputFile(), CrateName: dep.CrateName()}) | 
|  | 1471 | } | 
|  | 1472 | var procMacroDepFiles RustLibraries | 
|  | 1473 | for _, dep := range directProcMacroDeps { | 
|  | 1474 | procMacroDepFiles = append(procMacroDepFiles, RustLibrary{Path: dep.UnstrippedOutputFile(), CrateName: dep.CrateName()}) | 
|  | 1475 | } | 
|  | 1476 |  | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1477 | var staticLibDepFiles android.Paths | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1478 | for _, dep := range directStaticLibDeps { | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1479 | staticLibDepFiles = append(staticLibDepFiles, dep.OutputFile().Path()) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1480 | } | 
|  | 1481 |  | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1482 | var sharedLibFiles android.Paths | 
|  | 1483 | var sharedLibDepFiles android.Paths | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1484 | for _, dep := range directSharedLibDeps { | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1485 | sharedLibFiles = append(sharedLibFiles, dep.SharedLibrary) | 
| Jiyong Park | 7d55b61 | 2021-06-11 17:22:09 +0900 | [diff] [blame] | 1486 | if dep.TableOfContents.Valid() { | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1487 | sharedLibDepFiles = append(sharedLibDepFiles, dep.TableOfContents.Path()) | 
| Ivan Lozano | ec6e991 | 2021-01-21 15:23:29 -0500 | [diff] [blame] | 1488 | } else { | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1489 | sharedLibDepFiles = append(sharedLibDepFiles, dep.SharedLibrary) | 
| Ivan Lozano | ec6e991 | 2021-01-21 15:23:29 -0500 | [diff] [blame] | 1490 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1491 | } | 
|  | 1492 |  | 
| Ivan Lozano | 07cbaf4 | 2020-07-22 16:09:13 -0400 | [diff] [blame] | 1493 | var srcProviderDepFiles android.Paths | 
|  | 1494 | for _, dep := range directSrcProvidersDeps { | 
|  | 1495 | srcs, _ := dep.OutputFiles("") | 
|  | 1496 | srcProviderDepFiles = append(srcProviderDepFiles, srcs...) | 
|  | 1497 | } | 
|  | 1498 | for _, dep := range directSrcDeps { | 
|  | 1499 | srcs := dep.Srcs() | 
|  | 1500 | srcProviderDepFiles = append(srcProviderDepFiles, srcs...) | 
|  | 1501 | } | 
|  | 1502 |  | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1503 | depPaths.RLibs = append(depPaths.RLibs, rlibDepFiles...) | 
|  | 1504 | depPaths.DyLibs = append(depPaths.DyLibs, dylibDepFiles...) | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1505 | depPaths.SharedLibs = append(depPaths.SharedLibs, sharedLibFiles...) | 
|  | 1506 | depPaths.SharedLibDeps = append(depPaths.SharedLibDeps, sharedLibDepFiles...) | 
|  | 1507 | depPaths.StaticLibs = append(depPaths.StaticLibs, staticLibDepFiles...) | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1508 | depPaths.ProcMacros = append(depPaths.ProcMacros, procMacroDepFiles...) | 
| Ivan Lozano | 07cbaf4 | 2020-07-22 16:09:13 -0400 | [diff] [blame] | 1509 | depPaths.SrcDeps = append(depPaths.SrcDeps, srcProviderDepFiles...) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1510 |  | 
|  | 1511 | // Dedup exported flags from dependencies | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1512 | depPaths.linkDirs = android.FirstUniqueStrings(depPaths.linkDirs) | 
| Colin Cross | 004bd3f | 2023-10-02 11:39:17 -0700 | [diff] [blame] | 1513 | depPaths.linkObjects = android.FirstUniqueStrings(depPaths.linkObjects) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1514 | depPaths.depFlags = android.FirstUniqueStrings(depPaths.depFlags) | 
| Ivan Lozano | 45901ed | 2020-07-24 16:05:01 -0400 | [diff] [blame] | 1515 | depPaths.depClangFlags = android.FirstUniqueStrings(depPaths.depClangFlags) | 
|  | 1516 | depPaths.depIncludePaths = android.FirstUniquePaths(depPaths.depIncludePaths) | 
|  | 1517 | depPaths.depSystemIncludePaths = android.FirstUniquePaths(depPaths.depSystemIncludePaths) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1518 |  | 
|  | 1519 | return depPaths | 
|  | 1520 | } | 
|  | 1521 |  | 
| Chih-Hung Hsieh | 9a4a7ba | 2019-12-12 19:36:05 -0800 | [diff] [blame] | 1522 | func (mod *Module) InstallInData() bool { | 
|  | 1523 | if mod.compiler == nil { | 
|  | 1524 | return false | 
|  | 1525 | } | 
|  | 1526 | return mod.compiler.inData() | 
|  | 1527 | } | 
|  | 1528 |  | 
| Matthew Maurer | 9f59e8d | 2021-08-19 13:10:05 -0700 | [diff] [blame] | 1529 | func (mod *Module) InstallInRamdisk() bool { | 
|  | 1530 | return mod.InRamdisk() | 
|  | 1531 | } | 
|  | 1532 |  | 
|  | 1533 | func (mod *Module) InstallInVendorRamdisk() bool { | 
|  | 1534 | return mod.InVendorRamdisk() | 
|  | 1535 | } | 
|  | 1536 |  | 
|  | 1537 | func (mod *Module) InstallInRecovery() bool { | 
|  | 1538 | return mod.InRecovery() | 
|  | 1539 | } | 
|  | 1540 |  | 
| Wen-yi Chu | 41326c1 | 2023-09-22 03:58:59 +0000 | [diff] [blame] | 1541 | func linkPathFromFilePath(filepath android.Path) string { | 
|  | 1542 | return strings.Split(filepath.String(), filepath.Base())[0] | 
|  | 1543 | } | 
|  | 1544 |  | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 1545 | // usePublicApi returns true if the rust variant should link against NDK (publicapi) | 
|  | 1546 | func (r *Module) usePublicApi() bool { | 
|  | 1547 | return r.Device() && r.UseSdk() | 
|  | 1548 | } | 
|  | 1549 |  | 
|  | 1550 | // useVendorApi returns true if the rust variant should link against LLNDK (vendorapi) | 
|  | 1551 | func (r *Module) useVendorApi() bool { | 
|  | 1552 | return r.Device() && (r.InVendor() || r.InProduct()) | 
|  | 1553 | } | 
|  | 1554 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1555 | func (mod *Module) DepsMutator(actx android.BottomUpMutatorContext) { | 
|  | 1556 | ctx := &depsContext{ | 
|  | 1557 | BottomUpMutatorContext: actx, | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1558 | } | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1559 |  | 
|  | 1560 | deps := mod.deps(ctx) | 
| Colin Cross | 3146c5c | 2020-09-30 15:34:40 -0700 | [diff] [blame] | 1561 | var commonDepVariations []blueprint.Variation | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1562 | var snapshotInfo *cc.SnapshotInfo | 
|  | 1563 |  | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1564 | apiImportInfo := cc.GetApiImports(mod, actx) | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 1565 | if mod.usePublicApi() || mod.useVendorApi() { | 
|  | 1566 | for idx, lib := range deps.SharedLibs { | 
|  | 1567 | deps.SharedLibs[idx] = cc.GetReplaceModuleName(lib, apiImportInfo.SharedLibs) | 
|  | 1568 | } | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1569 | } | 
|  | 1570 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1571 | if ctx.Os() == android.Android { | 
|  | 1572 | deps.SharedLibs, _ = cc.RewriteLibs(mod, &snapshotInfo, actx, ctx.Config(), deps.SharedLibs) | 
|  | 1573 | } | 
| Ivan Lozano | dd05547 | 2020-09-28 13:22:45 -0400 | [diff] [blame] | 1574 |  | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1575 | stdLinkage := "dylib-std" | 
| Ivan Lozano | dd05547 | 2020-09-28 13:22:45 -0400 | [diff] [blame] | 1576 | if mod.compiler.stdLinkage(ctx) == RlibLinkage { | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1577 | stdLinkage = "rlib-std" | 
|  | 1578 | } | 
|  | 1579 |  | 
|  | 1580 | rlibDepVariations := commonDepVariations | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1581 |  | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1582 | if lib, ok := mod.compiler.(libraryInterface); !ok || !lib.sysroot() { | 
|  | 1583 | rlibDepVariations = append(rlibDepVariations, | 
|  | 1584 | blueprint.Variation{Mutator: "rust_stdlinkage", Variation: stdLinkage}) | 
|  | 1585 | } | 
|  | 1586 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1587 | // rlibs | 
| Ivan Lozano | 2d40763 | 2022-04-07 12:59:11 -0400 | [diff] [blame] | 1588 | rlibDepVariations = append(rlibDepVariations, blueprint.Variation{Mutator: "rust_libraries", Variation: rlibVariation}) | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1589 | for _, lib := range deps.Rlibs { | 
|  | 1590 | depTag := rlibDepTag | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1591 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).Rlibs) | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1592 |  | 
| Ivan Lozano | 2d40763 | 2022-04-07 12:59:11 -0400 | [diff] [blame] | 1593 | actx.AddVariationDependencies(rlibDepVariations, depTag, lib) | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1594 | } | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1595 |  | 
|  | 1596 | // dylibs | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1597 | dylibDepVariations := append(commonDepVariations, blueprint.Variation{Mutator: "rust_libraries", Variation: dylibVariation}) | 
|  | 1598 | for _, lib := range deps.Dylibs { | 
|  | 1599 | addDylibDependency(actx, lib, mod, &snapshotInfo, dylibDepVariations, dylibDepTag) | 
|  | 1600 | } | 
| Ivan Lozano | 52767be | 2019-10-18 14:49:46 -0700 | [diff] [blame] | 1601 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1602 | // rustlibs | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1603 | if deps.Rustlibs != nil { | 
|  | 1604 | if !mod.compiler.Disabled() { | 
|  | 1605 | for _, lib := range deps.Rustlibs { | 
|  | 1606 | autoDep := mod.compiler.(autoDeppable).autoDep(ctx) | 
|  | 1607 | if autoDep.depTag == rlibDepTag { | 
|  | 1608 | // Handle the rlib deptag case | 
| Inseob Kim | cd2b46a | 2023-03-31 18:04:12 +0900 | [diff] [blame] | 1609 | addRlibDependency(actx, lib, mod, &snapshotInfo, rlibDepVariations) | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1610 | } else { | 
|  | 1611 | // autoDep.depTag is a dylib depTag. Not all rustlibs may be available as a dylib however. | 
|  | 1612 | // Check for the existence of the dylib deptag variant. Select it if available, | 
|  | 1613 | // otherwise select the rlib variant. | 
|  | 1614 | autoDepVariations := append(commonDepVariations, | 
|  | 1615 | blueprint.Variation{Mutator: "rust_libraries", Variation: autoDep.variation}) | 
|  | 1616 |  | 
|  | 1617 | replacementLib := cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).Dylibs) | 
|  | 1618 |  | 
|  | 1619 | if actx.OtherModuleDependencyVariantExists(autoDepVariations, replacementLib) { | 
|  | 1620 | addDylibDependency(actx, lib, mod, &snapshotInfo, autoDepVariations, autoDep.depTag) | 
|  | 1621 | } else { | 
|  | 1622 | // If there's no dylib dependency available, try to add the rlib dependency instead. | 
|  | 1623 | addRlibDependency(actx, lib, mod, &snapshotInfo, rlibDepVariations) | 
|  | 1624 | } | 
|  | 1625 | } | 
|  | 1626 | } | 
|  | 1627 | } else if _, ok := mod.sourceProvider.(*protobufDecorator); ok { | 
|  | 1628 | for _, lib := range deps.Rustlibs { | 
|  | 1629 | replacementLib := cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).Dylibs) | 
|  | 1630 | srcProviderVariations := append(commonDepVariations, | 
|  | 1631 | blueprint.Variation{Mutator: "rust_libraries", Variation: "source"}) | 
|  | 1632 |  | 
|  | 1633 | if actx.OtherModuleDependencyVariantExists(srcProviderVariations, replacementLib) { | 
|  | 1634 | actx.AddVariationDependencies(srcProviderVariations, sourceDepTag, lib) | 
| Ivan Lozano | 2d40763 | 2022-04-07 12:59:11 -0400 | [diff] [blame] | 1635 | } | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1636 | } | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1637 | } | 
| Matthew Maurer | 0f003b1 | 2020-06-29 14:34:06 -0700 | [diff] [blame] | 1638 | } | 
| Ivan Lozano | d106efe | 2023-09-21 23:30:26 -0400 | [diff] [blame] | 1639 |  | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1640 | // stdlibs | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1641 | if deps.Stdlibs != nil { | 
| Ivan Lozano | dd05547 | 2020-09-28 13:22:45 -0400 | [diff] [blame] | 1642 | if mod.compiler.stdLinkage(ctx) == RlibLinkage { | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1643 | for _, lib := range deps.Stdlibs { | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1644 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).Rlibs) | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1645 | actx.AddVariationDependencies(append(commonDepVariations, []blueprint.Variation{{Mutator: "rust_libraries", Variation: "rlib"}}...), | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1646 | rlibDepTag, lib) | 
| Ivan Lozano | 3149e6e | 2021-06-01 15:09:53 -0400 | [diff] [blame] | 1647 | } | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1648 | } else { | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1649 | for _, lib := range deps.Stdlibs { | 
|  | 1650 | addDylibDependency(actx, lib, mod, &snapshotInfo, dylibDepVariations, dylibDepTag) | 
|  | 1651 | } | 
| Ivan Lozano | 2b08113 | 2020-09-08 12:46:52 -0400 | [diff] [blame] | 1652 | } | 
|  | 1653 | } | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1654 |  | 
|  | 1655 | for _, lib := range deps.SharedLibs { | 
|  | 1656 | depTag := cc.SharedDepTag() | 
|  | 1657 | name, version := cc.StubsLibNameAndVersion(lib) | 
|  | 1658 |  | 
|  | 1659 | variations := []blueprint.Variation{ | 
|  | 1660 | {Mutator: "link", Variation: "shared"}, | 
|  | 1661 | } | 
| Spandan Das | 604f376 | 2023-03-16 22:51:40 +0000 | [diff] [blame] | 1662 | // For core variant, add a dep on the implementation (if it exists) and its .apiimport (if it exists) | 
|  | 1663 | // GenerateAndroidBuildActions will pick the correct impl/stub based on the api_domain boundary | 
|  | 1664 | if _, ok := apiImportInfo.ApexSharedLibs[name]; !ok || ctx.OtherModuleExists(name) { | 
|  | 1665 | cc.AddSharedLibDependenciesWithVersions(ctx, mod, variations, depTag, name, version, false) | 
|  | 1666 | } | 
|  | 1667 |  | 
|  | 1668 | if apiLibraryName, ok := apiImportInfo.ApexSharedLibs[name]; ok { | 
|  | 1669 | cc.AddSharedLibDependenciesWithVersions(ctx, mod, variations, depTag, apiLibraryName, version, false) | 
|  | 1670 | } | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1671 | } | 
|  | 1672 |  | 
|  | 1673 | for _, lib := range deps.WholeStaticLibs { | 
|  | 1674 | depTag := cc.StaticDepTag(true) | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1675 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).StaticLibs) | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1676 |  | 
|  | 1677 | actx.AddVariationDependencies([]blueprint.Variation{ | 
|  | 1678 | {Mutator: "link", Variation: "static"}, | 
|  | 1679 | }, depTag, lib) | 
|  | 1680 | } | 
|  | 1681 |  | 
|  | 1682 | for _, lib := range deps.StaticLibs { | 
|  | 1683 | depTag := cc.StaticDepTag(false) | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1684 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, &snapshotInfo, actx).StaticLibs) | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1685 |  | 
|  | 1686 | actx.AddVariationDependencies([]blueprint.Variation{ | 
|  | 1687 | {Mutator: "link", Variation: "static"}, | 
|  | 1688 | }, depTag, lib) | 
|  | 1689 | } | 
| Ivan Lozano | 5ca5ef6 | 2019-09-23 10:10:40 -0700 | [diff] [blame] | 1690 |  | 
| Zach Johnson | 3df4e63 | 2020-11-06 11:56:27 -0800 | [diff] [blame] | 1691 | actx.AddVariationDependencies(nil, cc.HeaderDepTag(), deps.HeaderLibs...) | 
|  | 1692 |  | 
| Colin Cross | 565cafd | 2020-09-25 18:47:38 -0700 | [diff] [blame] | 1693 | crtVariations := cc.GetCrtVariations(ctx, mod) | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 1694 | for _, crt := range deps.CrtBegin { | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1695 | actx.AddVariationDependencies(crtVariations, cc.CrtBeginDepTag, | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1696 | cc.GetReplaceModuleName(crt, cc.GetSnapshot(mod, &snapshotInfo, actx).Objects)) | 
| Ivan Lozano | f1c8433 | 2019-09-20 11:00:37 -0700 | [diff] [blame] | 1697 | } | 
| Colin Cross | fe605e1 | 2022-01-23 20:46:16 -0800 | [diff] [blame] | 1698 | for _, crt := range deps.CrtEnd { | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1699 | actx.AddVariationDependencies(crtVariations, cc.CrtEndDepTag, | 
| Kiyoung Kim | 487689e | 2022-07-26 09:48:22 +0900 | [diff] [blame] | 1700 | cc.GetReplaceModuleName(crt, cc.GetSnapshot(mod, &snapshotInfo, actx).Objects)) | 
| Ivan Lozano | f1c8433 | 2019-09-20 11:00:37 -0700 | [diff] [blame] | 1701 | } | 
|  | 1702 |  | 
| Ivan Lozano | c564d2d | 2020-08-04 15:43:37 -0400 | [diff] [blame] | 1703 | if mod.sourceProvider != nil { | 
|  | 1704 | if bindgen, ok := mod.sourceProvider.(*bindgenDecorator); ok && | 
|  | 1705 | bindgen.Properties.Custom_bindgen != "" { | 
|  | 1706 | actx.AddFarVariationDependencies(ctx.Config().BuildOSTarget.Variations(), customBindgenDepTag, | 
|  | 1707 | bindgen.Properties.Custom_bindgen) | 
|  | 1708 | } | 
|  | 1709 | } | 
| Ivan Lozano | 1921e80 | 2021-05-20 13:39:16 -0400 | [diff] [blame] | 1710 |  | 
| Ivan Lozano | 4e5f07d | 2021-11-04 14:09:38 -0400 | [diff] [blame] | 1711 | actx.AddVariationDependencies([]blueprint.Variation{ | 
|  | 1712 | {Mutator: "link", Variation: "shared"}, | 
|  | 1713 | }, dataLibDepTag, deps.DataLibs...) | 
|  | 1714 |  | 
|  | 1715 | actx.AddVariationDependencies(nil, dataBinDepTag, deps.DataBins...) | 
|  | 1716 |  | 
| Ivan Lozano | 5ca5ef6 | 2019-09-23 10:10:40 -0700 | [diff] [blame] | 1717 | // proc_macros are compiler plugins, and so we need the host arch variant as a dependendcy. | 
| Colin Cross | 0f7d2ef | 2019-10-16 11:03:10 -0700 | [diff] [blame] | 1718 | actx.AddFarVariationDependencies(ctx.Config().BuildOSTarget.Variations(), procMacroDepTag, deps.ProcMacros...) | 
| Vinh Tran | cde1016 | 2023-03-09 22:07:19 -0500 | [diff] [blame] | 1719 |  | 
|  | 1720 | mod.afdo.addDep(ctx, actx) | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1721 | } | 
|  | 1722 |  | 
| Ivan Lozano | 2d40763 | 2022-04-07 12:59:11 -0400 | [diff] [blame] | 1723 | // addRlibDependency will add an rlib dependency, rewriting to the snapshot library if available. | 
| Inseob Kim | cd2b46a | 2023-03-31 18:04:12 +0900 | [diff] [blame] | 1724 | func addRlibDependency(actx android.BottomUpMutatorContext, lib string, mod *Module, snapshotInfo **cc.SnapshotInfo, variations []blueprint.Variation) { | 
|  | 1725 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, snapshotInfo, actx).Rlibs) | 
| Ivan Lozano | 2d40763 | 2022-04-07 12:59:11 -0400 | [diff] [blame] | 1726 | actx.AddVariationDependencies(variations, rlibDepTag, lib) | 
|  | 1727 | } | 
|  | 1728 |  | 
| Ivan Lozano | add122a | 2023-07-13 11:01:41 -0400 | [diff] [blame] | 1729 | func addDylibDependency(actx android.BottomUpMutatorContext, lib string, mod *Module, snapshotInfo **cc.SnapshotInfo, variations []blueprint.Variation, depTag dependencyTag) { | 
|  | 1730 | lib = cc.GetReplaceModuleName(lib, cc.GetSnapshot(mod, snapshotInfo, actx).Dylibs) | 
|  | 1731 | actx.AddVariationDependencies(variations, depTag, lib) | 
|  | 1732 | } | 
|  | 1733 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1734 | func BeginMutator(ctx android.BottomUpMutatorContext) { | 
|  | 1735 | if mod, ok := ctx.Module().(*Module); ok && mod.Enabled() { | 
|  | 1736 | mod.beginMutator(ctx) | 
|  | 1737 | } | 
|  | 1738 | } | 
|  | 1739 |  | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1740 | func (mod *Module) beginMutator(actx android.BottomUpMutatorContext) { | 
|  | 1741 | ctx := &baseModuleContext{ | 
|  | 1742 | BaseModuleContext: actx, | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1743 | } | 
| Ivan Lozano | a0cd8f9 | 2020-04-09 09:56:02 -0400 | [diff] [blame] | 1744 |  | 
|  | 1745 | mod.begin(ctx) | 
|  | 1746 | } | 
|  | 1747 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1748 | func (mod *Module) Name() string { | 
|  | 1749 | name := mod.ModuleBase.Name() | 
|  | 1750 | if p, ok := mod.compiler.(interface { | 
|  | 1751 | Name(string) string | 
|  | 1752 | }); ok { | 
|  | 1753 | name = p.Name(name) | 
|  | 1754 | } | 
|  | 1755 | return name | 
|  | 1756 | } | 
|  | 1757 |  | 
| Thiébaud Weksteen | 9e8451e | 2020-08-13 12:55:59 +0200 | [diff] [blame] | 1758 | func (mod *Module) disableClippy() { | 
| Ivan Lozano | 32267c8 | 2020-08-04 16:27:16 -0400 | [diff] [blame] | 1759 | if mod.clippy != nil { | 
| Thiébaud Weksteen | 9e8451e | 2020-08-13 12:55:59 +0200 | [diff] [blame] | 1760 | mod.clippy.Properties.Clippy_lints = proptools.StringPtr("none") | 
| Ivan Lozano | 32267c8 | 2020-08-04 16:27:16 -0400 | [diff] [blame] | 1761 | } | 
|  | 1762 | } | 
|  | 1763 |  | 
| Chih-Hung Hsieh | 5c4e489 | 2020-05-15 17:36:30 -0700 | [diff] [blame] | 1764 | var _ android.HostToolProvider = (*Module)(nil) | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 1765 | var _ snapshot.RelativeInstallPath = (*Module)(nil) | 
| Chih-Hung Hsieh | 5c4e489 | 2020-05-15 17:36:30 -0700 | [diff] [blame] | 1766 |  | 
|  | 1767 | func (mod *Module) HostToolPath() android.OptionalPath { | 
|  | 1768 | if !mod.Host() { | 
|  | 1769 | return android.OptionalPath{} | 
|  | 1770 | } | 
| Chih-Hung Hsieh | a756270 | 2020-08-10 21:50:43 -0700 | [diff] [blame] | 1771 | if binary, ok := mod.compiler.(*binaryDecorator); ok { | 
|  | 1772 | return android.OptionalPathForPath(binary.baseCompiler.path) | 
| Ivan Lozano | 872d579 | 2022-03-23 17:31:39 -0400 | [diff] [blame] | 1773 | } else if pm, ok := mod.compiler.(*procMacroDecorator); ok { | 
|  | 1774 | // Even though proc-macros aren't strictly "tools", since they target the compiler | 
|  | 1775 | // and act as compiler plugins, we treat them similarly. | 
|  | 1776 | return android.OptionalPathForPath(pm.baseCompiler.path) | 
| Chih-Hung Hsieh | 5c4e489 | 2020-05-15 17:36:30 -0700 | [diff] [blame] | 1777 | } | 
|  | 1778 | return android.OptionalPath{} | 
|  | 1779 | } | 
|  | 1780 |  | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1781 | var _ android.ApexModule = (*Module)(nil) | 
|  | 1782 |  | 
| Ivan Lozano | a91ba25 | 2022-01-11 12:02:06 -0500 | [diff] [blame] | 1783 | func (mod *Module) MinSdkVersion() string { | 
| Ivan Lozano | 3e9f9e4 | 2020-12-04 15:05:43 -0500 | [diff] [blame] | 1784 | return String(mod.Properties.Min_sdk_version) | 
|  | 1785 | } | 
|  | 1786 |  | 
| Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 1787 | // Implements android.ApexModule | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1788 | func (mod *Module) ShouldSupportSdkVersion(ctx android.BaseModuleContext, sdkVersion android.ApiLevel) error { | 
| Ivan Lozano | a91ba25 | 2022-01-11 12:02:06 -0500 | [diff] [blame] | 1789 | minSdkVersion := mod.MinSdkVersion() | 
| Ivan Lozano | 3e9f9e4 | 2020-12-04 15:05:43 -0500 | [diff] [blame] | 1790 | if minSdkVersion == "apex_inherit" { | 
|  | 1791 | return nil | 
|  | 1792 | } | 
|  | 1793 | if minSdkVersion == "" { | 
|  | 1794 | return fmt.Errorf("min_sdk_version is not specificed") | 
|  | 1795 | } | 
|  | 1796 |  | 
|  | 1797 | // Not using nativeApiLevelFromUser because the context here is not | 
|  | 1798 | // necessarily a native context. | 
|  | 1799 | ver, err := android.ApiLevelFromUser(ctx, minSdkVersion) | 
|  | 1800 | if err != nil { | 
|  | 1801 | return err | 
|  | 1802 | } | 
|  | 1803 |  | 
|  | 1804 | if ver.GreaterThan(sdkVersion) { | 
|  | 1805 | return fmt.Errorf("newer SDK(%v)", ver) | 
|  | 1806 | } | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1807 | return nil | 
|  | 1808 | } | 
|  | 1809 |  | 
| Jiyong Park | 45bf82e | 2020-12-15 22:29:02 +0900 | [diff] [blame] | 1810 | // Implements android.ApexModule | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1811 | func (mod *Module) DepIsInSameApex(ctx android.BaseModuleContext, dep android.Module) bool { | 
|  | 1812 | depTag := ctx.OtherModuleDependencyTag(dep) | 
|  | 1813 |  | 
|  | 1814 | if ccm, ok := dep.(*cc.Module); ok { | 
|  | 1815 | if ccm.HasStubsVariants() { | 
|  | 1816 | if cc.IsSharedDepTag(depTag) { | 
|  | 1817 | // dynamic dep to a stubs lib crosses APEX boundary | 
|  | 1818 | return false | 
|  | 1819 | } | 
|  | 1820 | if cc.IsRuntimeDepTag(depTag) { | 
|  | 1821 | // runtime dep to a stubs lib also crosses APEX boundary | 
|  | 1822 | return false | 
|  | 1823 | } | 
|  | 1824 |  | 
|  | 1825 | if cc.IsHeaderDepTag(depTag) { | 
|  | 1826 | return false | 
|  | 1827 | } | 
|  | 1828 | } | 
|  | 1829 | if mod.Static() && cc.IsSharedDepTag(depTag) { | 
|  | 1830 | // shared_lib dependency from a static lib is considered as crossing | 
|  | 1831 | // the APEX boundary because the dependency doesn't actually is | 
|  | 1832 | // linked; the dependency is used only during the compilation phase. | 
|  | 1833 | return false | 
|  | 1834 | } | 
|  | 1835 | } | 
|  | 1836 |  | 
| Matthew Maurer | 581b6d8 | 2022-09-29 16:46:25 -0700 | [diff] [blame] | 1837 | if depTag == procMacroDepTag || depTag == customBindgenDepTag { | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1838 | return false | 
|  | 1839 | } | 
|  | 1840 |  | 
|  | 1841 | return true | 
|  | 1842 | } | 
|  | 1843 |  | 
|  | 1844 | // Overrides ApexModule.IsInstallabeToApex() | 
|  | 1845 | func (mod *Module) IsInstallableToApex() bool { | 
|  | 1846 | if mod.compiler != nil { | 
| Ivan Lozano | 45e0e5b | 2021-11-13 07:42:36 -0500 | [diff] [blame] | 1847 | if lib, ok := mod.compiler.(libraryInterface); ok && (lib.shared() || lib.dylib()) { | 
| Jiyong Park | 99644e9 | 2020-11-17 22:21:02 +0900 | [diff] [blame] | 1848 | return true | 
|  | 1849 | } | 
|  | 1850 | if _, ok := mod.compiler.(*binaryDecorator); ok { | 
|  | 1851 | return true | 
|  | 1852 | } | 
|  | 1853 | } | 
|  | 1854 | return false | 
|  | 1855 | } | 
|  | 1856 |  | 
| Ivan Lozano | 3dfa12d | 2021-02-04 11:29:41 -0500 | [diff] [blame] | 1857 | // If a library file has a "lib" prefix, extract the library name without the prefix. | 
|  | 1858 | func libNameFromFilePath(filepath android.Path) (string, bool) { | 
|  | 1859 | libName := strings.TrimSuffix(filepath.Base(), filepath.Ext()) | 
|  | 1860 | if strings.HasPrefix(libName, "lib") { | 
|  | 1861 | libName = libName[3:] | 
|  | 1862 | return libName, true | 
|  | 1863 | } | 
|  | 1864 | return "", false | 
|  | 1865 | } | 
|  | 1866 |  | 
| Sasha Smundak | a76acba | 2022-04-18 20:12:56 -0700 | [diff] [blame] | 1867 | func kytheExtractRustFactory() android.Singleton { | 
|  | 1868 | return &kytheExtractRustSingleton{} | 
|  | 1869 | } | 
|  | 1870 |  | 
|  | 1871 | type kytheExtractRustSingleton struct { | 
|  | 1872 | } | 
|  | 1873 |  | 
|  | 1874 | func (k kytheExtractRustSingleton) GenerateBuildActions(ctx android.SingletonContext) { | 
|  | 1875 | var xrefTargets android.Paths | 
|  | 1876 | ctx.VisitAllModules(func(module android.Module) { | 
|  | 1877 | if rustModule, ok := module.(xref); ok { | 
|  | 1878 | xrefTargets = append(xrefTargets, rustModule.XrefRustFiles()...) | 
|  | 1879 | } | 
|  | 1880 | }) | 
|  | 1881 | if len(xrefTargets) > 0 { | 
|  | 1882 | ctx.Phony("xref_rust", xrefTargets...) | 
|  | 1883 | } | 
|  | 1884 | } | 
|  | 1885 |  | 
| Jihoon Kang | f78a890 | 2022-09-01 22:47:07 +0000 | [diff] [blame] | 1886 | func (c *Module) Partition() string { | 
|  | 1887 | return "" | 
|  | 1888 | } | 
|  | 1889 |  | 
| Chris Parsons | 637458d | 2023-09-19 20:09:00 +0000 | [diff] [blame] | 1890 | func (m *Module) ConvertWithBp2build(ctx android.Bp2buildMutatorContext) { | 
| Vinh Tran | bcb5f57 | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1891 | if ctx.ModuleType() == "rust_library_host" || ctx.ModuleType() == "rust_library" { | 
|  | 1892 | libraryBp2build(ctx, m) | 
| Vinh Tran | b4bb20f | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1893 | } else if ctx.ModuleType() == "rust_proc_macro" { | 
|  | 1894 | procMacroBp2build(ctx, m) | 
| Vinh Tran | 093a57e | 2023-08-24 12:10:49 -0400 | [diff] [blame] | 1895 | } else if ctx.ModuleType() == "rust_binary_host" { | 
|  | 1896 | binaryBp2build(ctx, m) | 
| Vinh Tran | 47faaad | 2023-09-25 14:47:19 -0400 | [diff] [blame] | 1897 | } else if ctx.ModuleType() == "rust_protobuf_host" || ctx.ModuleType() == "rust_protobuf" { | 
| Vinh Tran | 0c4b9ec | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1898 | protoLibraryBp2build(ctx, m) | 
| Vinh Tran | 7515994 | 2023-10-17 16:28:04 -0400 | [diff] [blame] | 1899 | } else if ctx.ModuleType() == "rust_ffi_static" { | 
|  | 1900 | ffiStaticBp2build(ctx, m) | 
| Vinh Tran | bcb5f57 | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1901 | } else { | 
|  | 1902 | ctx.MarkBp2buildUnconvertible(bp2build_metrics_proto.UnconvertedReasonType_TYPE_UNSUPPORTED, "") | 
|  | 1903 | } | 
|  | 1904 | } | 
|  | 1905 |  | 
| Vinh Tran | b4bb20f | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1906 | // This is a workaround by assuming the conventions that rust crate repos are structured | 
| Vinh Tran | c1a6cee | 2023-08-24 12:10:49 -0400 | [diff] [blame] | 1907 | // while waiting for the sandboxing work to complete. | 
| Vinh Tran | b4bb20f | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1908 | // TODO(b/297344471): When crate_root prop is set which enforces inputs sandboxing, | 
|  | 1909 | // always use `srcs` and `compile_data` props to generate `srcs` and `compile_data` attributes | 
|  | 1910 | // instead of using globs. | 
| Chris Parsons | 637458d | 2023-09-19 20:09:00 +0000 | [diff] [blame] | 1911 | func srcsAndCompileDataAttrs(ctx android.Bp2buildMutatorContext, c baseCompiler) (bazel.LabelList, bazel.LabelList) { | 
| Vinh Tran | b4bb20f | 2023-08-24 11:10:01 -0400 | [diff] [blame] | 1912 | var srcs bazel.LabelList | 
|  | 1913 | var compileData bazel.LabelList | 
|  | 1914 |  | 
|  | 1915 | if c.Properties.Srcs[0] == "src/lib.rs" { | 
|  | 1916 | srcs = android.BazelLabelForModuleSrc(ctx, []string{"src/**/*.rs"}) | 
|  | 1917 | compileData = android.BazelLabelForModuleSrc( | 
|  | 1918 | ctx, | 
|  | 1919 | []string{ | 
|  | 1920 | "src/**/*.proto", | 
|  | 1921 | "examples/**/*.rs", | 
|  | 1922 | "**/*.md", | 
|  | 1923 | }, | 
|  | 1924 | ) | 
|  | 1925 | } else { | 
|  | 1926 | srcs = android.BazelLabelForModuleSrc(ctx, c.Properties.Srcs) | 
|  | 1927 | } | 
|  | 1928 |  | 
|  | 1929 | return srcs, compileData | 
|  | 1930 | } | 
|  | 1931 |  | 
| Ivan Lozano | ffee334 | 2019-08-27 12:03:00 -0700 | [diff] [blame] | 1932 | var Bool = proptools.Bool | 
|  | 1933 | var BoolDefault = proptools.BoolDefault | 
|  | 1934 | var String = proptools.String | 
|  | 1935 | var StringPtr = proptools.StringPtr | 
| Ivan Lozano | 4384568 | 2020-07-09 21:03:28 -0400 | [diff] [blame] | 1936 |  | 
|  | 1937 | var _ android.OutputFileProducer = (*Module)(nil) |