Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 1 | // Copyright 2016 Google Inc. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package cc |
| 16 | |
| 17 | import ( |
Martin Stjernholm | 14ee832 | 2020-09-21 21:45:49 +0100 | [diff] [blame] | 18 | "path/filepath" |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 0d99045 | 2021-08-11 16:46:13 +0000 | [diff] [blame] | 19 | |
| 20 | "android/soong/android" |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 7fa0696 | 2021-10-25 10:28:33 -0400 | [diff] [blame] | 21 | "android/soong/bazel" |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | func init() { |
Paul Duffin | 59986b2 | 2019-12-19 14:38:36 +0000 | [diff] [blame] | 25 | RegisterPrebuiltBuildComponents(android.InitRegistrationContext) |
| 26 | } |
| 27 | |
| 28 | func RegisterPrebuiltBuildComponents(ctx android.RegistrationContext) { |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 29 | ctx.RegisterModuleType("cc_prebuilt_library", PrebuiltLibraryFactory) |
Paul Duffin | 59986b2 | 2019-12-19 14:38:36 +0000 | [diff] [blame] | 30 | ctx.RegisterModuleType("cc_prebuilt_library_shared", PrebuiltSharedLibraryFactory) |
| 31 | ctx.RegisterModuleType("cc_prebuilt_library_static", PrebuiltStaticLibraryFactory) |
Chris Parsons | 1f6d90f | 2020-06-17 16:10:42 -0400 | [diff] [blame] | 32 | ctx.RegisterModuleType("cc_prebuilt_test_library_shared", PrebuiltSharedTestLibraryFactory) |
Martin Stjernholm | 0b92ac8 | 2020-03-11 21:45:49 +0000 | [diff] [blame] | 33 | ctx.RegisterModuleType("cc_prebuilt_object", prebuiltObjectFactory) |
Paul Duffin | 59986b2 | 2019-12-19 14:38:36 +0000 | [diff] [blame] | 34 | ctx.RegisterModuleType("cc_prebuilt_binary", prebuiltBinaryFactory) |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 7fa0696 | 2021-10-25 10:28:33 -0400 | [diff] [blame] | 35 | |
| 36 | android.RegisterBp2BuildMutator("cc_prebuilt_library_shared", PrebuiltLibrarySharedBp2Build) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 37 | } |
| 38 | |
| 39 | type prebuiltLinkerInterface interface { |
| 40 | Name(string) string |
| 41 | prebuilt() *android.Prebuilt |
| 42 | } |
| 43 | |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 44 | type prebuiltLinkerProperties struct { |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 45 | // a prebuilt library or binary. Can reference a genrule module that generates an executable file. |
| 46 | Srcs []string `android:"path,arch_variant"` |
| 47 | |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 48 | Sanitized Sanitized `android:"arch_variant"` |
| 49 | |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 50 | // Check the prebuilt ELF files (e.g. DT_SONAME, DT_NEEDED, resolution of undefined |
| 51 | // symbols, etc), default true. |
| 52 | Check_elf_files *bool |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 53 | |
| 54 | // Optionally provide an import library if this is a Windows PE DLL prebuilt. |
| 55 | // This is needed only if this library is linked by other modules in build time. |
| 56 | // Only makes sense for the Windows target. |
| 57 | Windows_import_lib *string `android:"path,arch_variant"` |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 60 | type prebuiltLinker struct { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 61 | android.Prebuilt |
Logan Chien | 4fcea3d | 2018-11-20 11:59:08 +0800 | [diff] [blame] | 62 | |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 63 | properties prebuiltLinkerProperties |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 64 | } |
| 65 | |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 66 | func (p *prebuiltLinker) prebuilt() *android.Prebuilt { |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 67 | return &p.Prebuilt |
| 68 | } |
| 69 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 70 | func (p *prebuiltLinker) PrebuiltSrcs() []string { |
| 71 | return p.properties.Srcs |
| 72 | } |
| 73 | |
Colin Cross | 33b2fb7 | 2019-05-14 14:07:01 -0700 | [diff] [blame] | 74 | type prebuiltLibraryInterface interface { |
| 75 | libraryInterface |
| 76 | prebuiltLinkerInterface |
| 77 | disablePrebuilt() |
| 78 | } |
| 79 | |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 80 | type prebuiltLibraryLinker struct { |
| 81 | *libraryDecorator |
| 82 | prebuiltLinker |
| 83 | } |
| 84 | |
| 85 | var _ prebuiltLinkerInterface = (*prebuiltLibraryLinker)(nil) |
Colin Cross | 33b2fb7 | 2019-05-14 14:07:01 -0700 | [diff] [blame] | 86 | var _ prebuiltLibraryInterface = (*prebuiltLibraryLinker)(nil) |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 87 | |
Yi Kong | 0098166 | 2018-08-13 16:02:49 -0700 | [diff] [blame] | 88 | func (p *prebuiltLibraryLinker) linkerInit(ctx BaseModuleContext) {} |
| 89 | |
| 90 | func (p *prebuiltLibraryLinker) linkerDeps(ctx DepsContext, deps Deps) Deps { |
Logan Chien | c7f797e | 2019-01-14 15:35:08 +0800 | [diff] [blame] | 91 | return p.libraryDecorator.linkerDeps(ctx, deps) |
Yi Kong | 0098166 | 2018-08-13 16:02:49 -0700 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | func (p *prebuiltLibraryLinker) linkerFlags(ctx ModuleContext, flags Flags) Flags { |
Colin Cross | 1ab10a7 | 2018-09-04 11:02:37 -0700 | [diff] [blame] | 95 | return flags |
Yi Kong | 0098166 | 2018-08-13 16:02:49 -0700 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | func (p *prebuiltLibraryLinker) linkerProps() []interface{} { |
| 99 | return p.libraryDecorator.linkerProps() |
| 100 | } |
| 101 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 102 | func (p *prebuiltLibraryLinker) link(ctx ModuleContext, |
Dan Willemsen | 5cb580f | 2016-09-26 17:33:01 -0700 | [diff] [blame] | 103 | flags Flags, deps PathDeps, objs Objects) android.Path { |
Paul Duffin | f5ea9e1 | 2020-02-21 10:57:00 +0000 | [diff] [blame] | 104 | |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 105 | p.libraryDecorator.flagExporter.exportIncludes(ctx) |
| 106 | p.libraryDecorator.flagExporter.reexportDirs(deps.ReexportedDirs...) |
| 107 | p.libraryDecorator.flagExporter.reexportSystemDirs(deps.ReexportedSystemDirs...) |
| 108 | p.libraryDecorator.flagExporter.reexportFlags(deps.ReexportedFlags...) |
| 109 | p.libraryDecorator.flagExporter.reexportDeps(deps.ReexportedDeps...) |
| 110 | p.libraryDecorator.flagExporter.addExportedGeneratedHeaders(deps.ReexportedGeneratedHeaders...) |
| 111 | |
| 112 | p.libraryDecorator.flagExporter.setProvider(ctx) |
Paul Duffin | f5ea9e1 | 2020-02-21 10:57:00 +0000 | [diff] [blame] | 113 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 114 | // TODO(ccross): verify shared library dependencies |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 115 | srcs := p.prebuiltSrcs(ctx) |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 116 | if len(srcs) > 0 { |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 117 | if len(srcs) > 1 { |
| 118 | ctx.PropertyErrorf("srcs", "multiple prebuilt source files") |
| 119 | return nil |
| 120 | } |
| 121 | |
Jiyong Park | 892a98f | 2020-12-14 09:20:00 +0900 | [diff] [blame] | 122 | p.libraryDecorator.exportVersioningMacroIfNeeded(ctx) |
| 123 | |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 124 | in := android.PathForModuleSrc(ctx, srcs[0]) |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 125 | |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 126 | if p.static() { |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 127 | depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(in).Build() |
| 128 | ctx.SetProvider(StaticLibraryInfoProvider, StaticLibraryInfo{ |
| 129 | StaticLibrary: in, |
| 130 | |
| 131 | TransitiveStaticLibrariesForOrdering: depSet, |
| 132 | }) |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 133 | return in |
| 134 | } |
| 135 | |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 136 | if p.shared() { |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 137 | p.unstrippedOutputFile = in |
Colin Cross | 0fd6a41 | 2019-08-16 14:22:10 -0700 | [diff] [blame] | 138 | libName := p.libraryDecorator.getLibName(ctx) + flags.Toolchain.ShlibSuffix() |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 139 | outputFile := android.PathForModuleOut(ctx, libName) |
| 140 | var implicits android.Paths |
| 141 | |
Thiébaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 142 | if p.stripper.NeedsStrip(ctx) { |
| 143 | stripFlags := flagsToStripFlags(flags) |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 144 | stripped := android.PathForModuleOut(ctx, "stripped", libName) |
Thiébaud Weksteen | d458745 | 2020-08-19 14:53:01 +0200 | [diff] [blame] | 145 | p.stripper.StripExecutableOrSharedLib(ctx, in, stripped, stripFlags) |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 146 | in = stripped |
| 147 | } |
| 148 | |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 149 | // Optimize out relinking against shared libraries whose interface hasn't changed by |
| 150 | // depending on a table of contents file instead of the library itself. |
| 151 | tocFile := android.PathForModuleOut(ctx, libName+".toc") |
| 152 | p.tocFile = android.OptionalPathForPath(tocFile) |
Ivan Lozano | 7b0781d | 2021-11-03 15:30:18 -0400 | [diff] [blame] | 153 | TransformSharedObjectToToc(ctx, outputFile, tocFile) |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 154 | |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 155 | if ctx.Windows() && p.properties.Windows_import_lib != nil { |
| 156 | // Consumers of this library actually links to the import library in build |
| 157 | // time and dynamically links to the DLL in run time. i.e. |
| 158 | // a.exe <-- static link --> foo.lib <-- dynamic link --> foo.dll |
| 159 | importLibSrc := android.PathForModuleSrc(ctx, String(p.properties.Windows_import_lib)) |
| 160 | importLibName := p.libraryDecorator.getLibName(ctx) + ".lib" |
| 161 | importLibOutputFile := android.PathForModuleOut(ctx, importLibName) |
| 162 | implicits = append(implicits, importLibOutputFile) |
| 163 | |
| 164 | ctx.Build(pctx, android.BuildParams{ |
| 165 | Rule: android.Cp, |
| 166 | Description: "prebuilt import library", |
| 167 | Input: importLibSrc, |
| 168 | Output: importLibOutputFile, |
| 169 | Args: map[string]string{ |
| 170 | "cpFlags": "-L", |
| 171 | }, |
| 172 | }) |
| 173 | } |
| 174 | |
| 175 | ctx.Build(pctx, android.BuildParams{ |
| 176 | Rule: android.Cp, |
| 177 | Description: "prebuilt shared library", |
| 178 | Implicits: implicits, |
| 179 | Input: in, |
| 180 | Output: outputFile, |
| 181 | Args: map[string]string{ |
| 182 | "cpFlags": "-L", |
| 183 | }, |
| 184 | }) |
| 185 | |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 186 | ctx.SetProvider(SharedLibraryInfoProvider, SharedLibraryInfo{ |
Liz Kammer | ef6dfea | 2021-06-08 15:37:09 -0400 | [diff] [blame] | 187 | SharedLibrary: outputFile, |
| 188 | Target: ctx.Target(), |
Colin Cross | 0de8a1e | 2020-09-18 14:15:30 -0700 | [diff] [blame] | 189 | |
| 190 | TableOfContents: p.tocFile, |
| 191 | }) |
| 192 | |
Yo Chiang | a3ad9b2 | 2020-03-18 14:19:07 +0800 | [diff] [blame] | 193 | return outputFile |
| 194 | } |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Colin Cross | 649d817 | 2020-12-10 12:30:21 -0800 | [diff] [blame] | 197 | if p.header() { |
| 198 | ctx.SetProvider(HeaderLibraryInfoProvider, HeaderLibraryInfo{}) |
| 199 | |
| 200 | return nil |
| 201 | } |
| 202 | |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 203 | return nil |
| 204 | } |
| 205 | |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 206 | func (p *prebuiltLibraryLinker) prebuiltSrcs(ctx android.BaseModuleContext) []string { |
| 207 | sanitize := ctx.Module().(*Module).sanitize |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 208 | srcs := p.properties.Srcs |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 209 | srcs = append(srcs, srcsForSanitizer(sanitize, p.properties.Sanitized)...) |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 210 | if p.static() { |
| 211 | srcs = append(srcs, p.libraryDecorator.StaticProperties.Static.Srcs...) |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 212 | srcs = append(srcs, srcsForSanitizer(sanitize, p.libraryDecorator.StaticProperties.Static.Sanitized)...) |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 213 | } |
| 214 | if p.shared() { |
| 215 | srcs = append(srcs, p.libraryDecorator.SharedProperties.Shared.Srcs...) |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 216 | srcs = append(srcs, srcsForSanitizer(sanitize, p.libraryDecorator.SharedProperties.Shared.Sanitized)...) |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 217 | } |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 218 | return srcs |
| 219 | } |
| 220 | |
Jiyong Park | 379de2f | 2018-12-19 02:47:14 +0900 | [diff] [blame] | 221 | func (p *prebuiltLibraryLinker) shared() bool { |
| 222 | return p.libraryDecorator.shared() |
| 223 | } |
| 224 | |
Pirama Arumuga Nainar | 65c95ff | 2019-03-25 10:21:31 -0700 | [diff] [blame] | 225 | func (p *prebuiltLibraryLinker) nativeCoverage() bool { |
| 226 | return false |
| 227 | } |
| 228 | |
Colin Cross | 33b2fb7 | 2019-05-14 14:07:01 -0700 | [diff] [blame] | 229 | func (p *prebuiltLibraryLinker) disablePrebuilt() { |
| 230 | p.properties.Srcs = nil |
| 231 | } |
| 232 | |
Jiyong Park | 892a98f | 2020-12-14 09:20:00 +0900 | [diff] [blame] | 233 | // Implements versionedInterface |
| 234 | func (p *prebuiltLibraryLinker) implementationModuleName(name string) string { |
Paul Duffin | 9804da0 | 2021-10-26 10:42:42 +0100 | [diff] [blame] | 235 | return android.RemoveOptionalPrebuiltPrefix(name) |
Jiyong Park | 892a98f | 2020-12-14 09:20:00 +0900 | [diff] [blame] | 236 | } |
| 237 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 238 | func NewPrebuiltLibrary(hod android.HostOrDeviceSupported, srcsProperty string) (*Module, *libraryDecorator) { |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 239 | module, library := NewLibrary(hod) |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 240 | module.compiler = nil |
| 241 | |
| 242 | prebuilt := &prebuiltLibraryLinker{ |
| 243 | libraryDecorator: library, |
| 244 | } |
| 245 | module.linker = prebuilt |
Colin Cross | 31076b3 | 2020-10-23 17:22:06 -0700 | [diff] [blame] | 246 | module.library = prebuilt |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 247 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 248 | module.AddProperties(&prebuilt.properties) |
| 249 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 250 | if srcsProperty == "" { |
| 251 | android.InitPrebuiltModuleWithoutSrcs(module) |
| 252 | } else { |
| 253 | srcsSupplier := func(ctx android.BaseModuleContext, _ android.Module) []string { |
| 254 | return prebuilt.prebuiltSrcs(ctx) |
| 255 | } |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 256 | |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 257 | android.InitPrebuiltModuleWithSrcSupplier(module, srcsSupplier, srcsProperty) |
| 258 | } |
Jiyong Park | 379de2f | 2018-12-19 02:47:14 +0900 | [diff] [blame] | 259 | |
Paul Duffin | ac6e608 | 2019-12-11 15:22:32 +0000 | [diff] [blame] | 260 | // Prebuilt libraries can be used in SDKs. |
Jiyong Park | d1063c1 | 2019-07-17 20:08:41 +0900 | [diff] [blame] | 261 | android.InitSdkAwareModule(module) |
Paul Duffin | ac6e608 | 2019-12-11 15:22:32 +0000 | [diff] [blame] | 262 | return module, library |
| 263 | } |
| 264 | |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 265 | // cc_prebuilt_library installs a precompiled shared library that are |
| 266 | // listed in the srcs property in the device's directory. |
| 267 | func PrebuiltLibraryFactory() android.Module { |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 268 | module, _ := NewPrebuiltLibrary(android.HostAndDeviceSupported, "srcs") |
Paul Duffin | bce90da | 2020-03-12 20:17:14 +0000 | [diff] [blame] | 269 | |
| 270 | // Prebuilt shared libraries can be included in APEXes |
| 271 | android.InitApexModule(module) |
| 272 | |
| 273 | return module.Init() |
| 274 | } |
| 275 | |
Paul Duffin | ac6e608 | 2019-12-11 15:22:32 +0000 | [diff] [blame] | 276 | // cc_prebuilt_library_shared installs a precompiled shared library that are |
| 277 | // listed in the srcs property in the device's directory. |
| 278 | func PrebuiltSharedLibraryFactory() android.Module { |
| 279 | module, _ := NewPrebuiltSharedLibrary(android.HostAndDeviceSupported) |
| 280 | return module.Init() |
| 281 | } |
| 282 | |
Chris Parsons | 1f6d90f | 2020-06-17 16:10:42 -0400 | [diff] [blame] | 283 | // cc_prebuilt_test_library_shared installs a precompiled shared library |
| 284 | // to be used as a data dependency of a test-related module (such as cc_test, or |
| 285 | // cc_test_library). |
| 286 | func PrebuiltSharedTestLibraryFactory() android.Module { |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 287 | module, library := NewPrebuiltLibrary(android.HostAndDeviceSupported, "srcs") |
Chris Parsons | 1f6d90f | 2020-06-17 16:10:42 -0400 | [diff] [blame] | 288 | library.BuildOnlyShared() |
| 289 | library.baseInstaller = NewTestInstaller() |
| 290 | return module.Init() |
| 291 | } |
| 292 | |
Paul Duffin | ac6e608 | 2019-12-11 15:22:32 +0000 | [diff] [blame] | 293 | func NewPrebuiltSharedLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) { |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 294 | module, library := NewPrebuiltLibrary(hod, "srcs") |
Paul Duffin | ac6e608 | 2019-12-11 15:22:32 +0000 | [diff] [blame] | 295 | library.BuildOnlyShared() |
| 296 | |
| 297 | // Prebuilt shared libraries can be included in APEXes |
| 298 | android.InitApexModule(module) |
Jiyong Park | 379de2f | 2018-12-19 02:47:14 +0900 | [diff] [blame] | 299 | |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 300 | return module, library |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 301 | } |
| 302 | |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 303 | // cc_prebuilt_library_static installs a precompiled static library that are |
| 304 | // listed in the srcs property in the device's directory. |
Jooyung Han | 344d543 | 2019-08-23 11:17:39 +0900 | [diff] [blame] | 305 | func PrebuiltStaticLibraryFactory() android.Module { |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 306 | module, _ := NewPrebuiltStaticLibrary(android.HostAndDeviceSupported) |
| 307 | return module.Init() |
| 308 | } |
| 309 | |
| 310 | func NewPrebuiltStaticLibrary(hod android.HostOrDeviceSupported) (*Module, *libraryDecorator) { |
Martin Stjernholm | e65c3ae | 2021-11-23 01:24:06 +0000 | [diff] [blame^] | 311 | module, library := NewPrebuiltLibrary(hod, "srcs") |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 312 | library.BuildOnlyStatic() |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 313 | module.bazelHandler = &prebuiltStaticLibraryBazelHandler{module: module, library: library} |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 314 | return module, library |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 315 | } |
| 316 | |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 7fa0696 | 2021-10-25 10:28:33 -0400 | [diff] [blame] | 317 | type bazelPrebuiltLibrarySharedAttributes struct { |
| 318 | Shared_library bazel.LabelAttribute |
| 319 | } |
| 320 | |
| 321 | func PrebuiltLibrarySharedBp2Build(ctx android.TopDownMutatorContext) { |
| 322 | module, ok := ctx.Module().(*Module) |
| 323 | if !ok { |
| 324 | // Not a cc module |
| 325 | return |
| 326 | } |
| 327 | if !module.ConvertWithBp2build(ctx) { |
| 328 | return |
| 329 | } |
| 330 | if ctx.ModuleType() != "cc_prebuilt_library_shared" { |
| 331 | return |
| 332 | } |
| 333 | |
| 334 | prebuiltLibrarySharedBp2BuildInternal(ctx, module) |
| 335 | } |
| 336 | |
| 337 | func prebuiltLibrarySharedBp2BuildInternal(ctx android.TopDownMutatorContext, module *Module) { |
| 338 | prebuiltAttrs := Bp2BuildParsePrebuiltLibraryProps(ctx, module) |
| 339 | |
| 340 | attrs := &bazelPrebuiltLibrarySharedAttributes{ |
| 341 | Shared_library: prebuiltAttrs.Src, |
| 342 | } |
| 343 | |
| 344 | props := bazel.BazelTargetModuleProperties{ |
| 345 | Rule_class: "prebuilt_library_shared", |
| 346 | Bzl_load_location: "//build/bazel/rules:prebuilt_library_shared.bzl", |
| 347 | } |
| 348 | |
| 349 | name := android.RemoveOptionalPrebuiltPrefix(module.Name()) |
| 350 | ctx.CreateBazelTargetModule(props, android.CommonAttributes{Name: name}, attrs) |
| 351 | } |
| 352 | |
Martin Stjernholm | 0b92ac8 | 2020-03-11 21:45:49 +0000 | [diff] [blame] | 353 | type prebuiltObjectProperties struct { |
| 354 | Srcs []string `android:"path,arch_variant"` |
| 355 | } |
| 356 | |
| 357 | type prebuiltObjectLinker struct { |
| 358 | android.Prebuilt |
| 359 | objectLinker |
| 360 | |
| 361 | properties prebuiltObjectProperties |
| 362 | } |
| 363 | |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 364 | type prebuiltStaticLibraryBazelHandler struct { |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 0d99045 | 2021-08-11 16:46:13 +0000 | [diff] [blame] | 365 | android.BazelHandler |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 366 | |
| 367 | module *Module |
| 368 | library *libraryDecorator |
| 369 | } |
| 370 | |
Alex Márquez Pérez Muñíz Díaz Púras Thaureaux | 0d99045 | 2021-08-11 16:46:13 +0000 | [diff] [blame] | 371 | func (h *prebuiltStaticLibraryBazelHandler) GenerateBazelBuildActions(ctx android.ModuleContext, label string) bool { |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 372 | bazelCtx := ctx.Config().BazelContext |
Chris Parsons | 787fb36 | 2021-10-14 18:43:51 -0400 | [diff] [blame] | 373 | ccInfo, ok, err := bazelCtx.GetCcInfo(label, android.GetConfigKey(ctx)) |
Liz Kammer | fe23bf3 | 2021-04-09 16:17:05 -0400 | [diff] [blame] | 374 | if err != nil { |
| 375 | ctx.ModuleErrorf("Error getting Bazel CcInfo: %s", err) |
| 376 | } |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 377 | if !ok { |
| 378 | return false |
| 379 | } |
Liz Kammer | fe23bf3 | 2021-04-09 16:17:05 -0400 | [diff] [blame] | 380 | staticLibs := ccInfo.CcStaticLibraryFiles |
Liz Kammer | 3f9e155 | 2021-04-02 18:47:09 -0400 | [diff] [blame] | 381 | if len(staticLibs) > 1 { |
| 382 | ctx.ModuleErrorf("expected 1 static library from bazel target %q, got %s", label, staticLibs) |
| 383 | return false |
| 384 | } |
| 385 | |
| 386 | // TODO(b/184543518): cc_prebuilt_library_static may have properties for re-exporting flags |
| 387 | |
| 388 | // TODO(eakammer):Add stub-related flags if this library is a stub library. |
| 389 | // h.library.exportVersioningMacroIfNeeded(ctx) |
| 390 | |
| 391 | // Dependencies on this library will expect collectedSnapshotHeaders to be set, otherwise |
| 392 | // validation will fail. For now, set this to an empty list. |
| 393 | // TODO(cparsons): More closely mirror the collectHeadersForSnapshot implementation. |
| 394 | h.library.collectedSnapshotHeaders = android.Paths{} |
| 395 | |
| 396 | if len(staticLibs) == 0 { |
| 397 | h.module.outputFile = android.OptionalPath{} |
| 398 | return true |
| 399 | } |
| 400 | |
| 401 | out := android.PathForBazelOut(ctx, staticLibs[0]) |
| 402 | h.module.outputFile = android.OptionalPathForPath(out) |
| 403 | |
| 404 | depSet := android.NewDepSetBuilder(android.TOPOLOGICAL).Direct(out).Build() |
| 405 | ctx.SetProvider(StaticLibraryInfoProvider, StaticLibraryInfo{ |
| 406 | StaticLibrary: out, |
| 407 | |
| 408 | TransitiveStaticLibrariesForOrdering: depSet, |
| 409 | }) |
| 410 | |
| 411 | return true |
| 412 | } |
| 413 | |
Martin Stjernholm | 0b92ac8 | 2020-03-11 21:45:49 +0000 | [diff] [blame] | 414 | func (p *prebuiltObjectLinker) prebuilt() *android.Prebuilt { |
| 415 | return &p.Prebuilt |
| 416 | } |
| 417 | |
| 418 | var _ prebuiltLinkerInterface = (*prebuiltObjectLinker)(nil) |
| 419 | |
| 420 | func (p *prebuiltObjectLinker) link(ctx ModuleContext, |
| 421 | flags Flags, deps PathDeps, objs Objects) android.Path { |
| 422 | if len(p.properties.Srcs) > 0 { |
| 423 | return p.Prebuilt.SingleSourcePath(ctx) |
| 424 | } |
| 425 | return nil |
| 426 | } |
| 427 | |
Inseob Kim | 1042d29 | 2020-06-01 23:23:05 +0900 | [diff] [blame] | 428 | func (p *prebuiltObjectLinker) object() bool { |
| 429 | return true |
| 430 | } |
| 431 | |
Colin Cross | 7cabd42 | 2021-06-25 14:21:04 -0700 | [diff] [blame] | 432 | func NewPrebuiltObject(hod android.HostOrDeviceSupported) *Module { |
| 433 | module := newObject(hod) |
Martin Stjernholm | 0b92ac8 | 2020-03-11 21:45:49 +0000 | [diff] [blame] | 434 | prebuilt := &prebuiltObjectLinker{ |
| 435 | objectLinker: objectLinker{ |
| 436 | baseLinker: NewBaseLinker(nil), |
| 437 | }, |
| 438 | } |
| 439 | module.linker = prebuilt |
| 440 | module.AddProperties(&prebuilt.properties) |
| 441 | android.InitPrebuiltModule(module, &prebuilt.properties.Srcs) |
| 442 | android.InitSdkAwareModule(module) |
| 443 | return module |
| 444 | } |
| 445 | |
| 446 | func prebuiltObjectFactory() android.Module { |
Colin Cross | 7cabd42 | 2021-06-25 14:21:04 -0700 | [diff] [blame] | 447 | module := NewPrebuiltObject(android.HostAndDeviceSupported) |
Martin Stjernholm | 0b92ac8 | 2020-03-11 21:45:49 +0000 | [diff] [blame] | 448 | return module.Init() |
| 449 | } |
| 450 | |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 451 | type prebuiltBinaryLinker struct { |
| 452 | *binaryDecorator |
| 453 | prebuiltLinker |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 454 | |
| 455 | toolPath android.OptionalPath |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 456 | } |
| 457 | |
| 458 | var _ prebuiltLinkerInterface = (*prebuiltBinaryLinker)(nil) |
| 459 | |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 460 | func (p *prebuiltBinaryLinker) hostToolPath() android.OptionalPath { |
| 461 | return p.toolPath |
| 462 | } |
| 463 | |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 464 | func (p *prebuiltBinaryLinker) link(ctx ModuleContext, |
| 465 | flags Flags, deps PathDeps, objs Objects) android.Path { |
| 466 | // TODO(ccross): verify shared library dependencies |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 467 | if len(p.properties.Srcs) > 0 { |
Colin Cross | 88f6fef | 2018-09-05 14:20:03 -0700 | [diff] [blame] | 468 | fileName := p.getStem(ctx) + flags.Toolchain.ExecutableSuffix() |
| 469 | in := p.Prebuilt.SingleSourcePath(ctx) |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 470 | outputFile := android.PathForModuleOut(ctx, fileName) |
Colin Cross | b60190a | 2018-09-04 16:28:17 -0700 | [diff] [blame] | 471 | p.unstrippedOutputFile = in |
| 472 | |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 473 | if ctx.Host() { |
| 474 | // Host binaries are symlinked to their prebuilt source locations. That |
| 475 | // way they are executed directly from there so the linker resolves their |
| 476 | // shared library dependencies relative to that location (using |
| 477 | // $ORIGIN/../lib(64):$ORIGIN/lib(64) as RUNPATH). This way the prebuilt |
| 478 | // repository can supply the expected versions of the shared libraries |
| 479 | // without interference from what is in the out tree. |
Colin Cross | 94921e7 | 2017-08-08 16:20:15 -0700 | [diff] [blame] | 480 | |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 481 | // These shared lib paths may point to copies of the libs in |
| 482 | // .intermediates, which isn't where the binary will load them from, but |
| 483 | // it's fine for dependency tracking. If a library dependency is updated, |
| 484 | // the symlink will get a new timestamp, along with any installed symlinks |
| 485 | // handled in make. |
| 486 | sharedLibPaths := deps.EarlySharedLibs |
| 487 | sharedLibPaths = append(sharedLibPaths, deps.SharedLibs...) |
| 488 | sharedLibPaths = append(sharedLibPaths, deps.LateSharedLibs...) |
| 489 | |
Martin Stjernholm | 14ee832 | 2020-09-21 21:45:49 +0100 | [diff] [blame] | 490 | var fromPath = in.String() |
| 491 | if !filepath.IsAbs(fromPath) { |
| 492 | fromPath = "$$PWD/" + fromPath |
| 493 | } |
| 494 | |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 495 | ctx.Build(pctx, android.BuildParams{ |
| 496 | Rule: android.Symlink, |
| 497 | Output: outputFile, |
| 498 | Input: in, |
| 499 | Implicits: sharedLibPaths, |
| 500 | Args: map[string]string{ |
Martin Stjernholm | 14ee832 | 2020-09-21 21:45:49 +0100 | [diff] [blame] | 501 | "fromPath": fromPath, |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 502 | }, |
| 503 | }) |
| 504 | |
| 505 | p.toolPath = android.OptionalPathForPath(outputFile) |
| 506 | } else { |
| 507 | if p.stripper.NeedsStrip(ctx) { |
| 508 | stripped := android.PathForModuleOut(ctx, "stripped", fileName) |
| 509 | p.stripper.StripExecutableOrSharedLib(ctx, in, stripped, flagsToStripFlags(flags)) |
| 510 | in = stripped |
| 511 | } |
| 512 | |
| 513 | // Copy binaries to a name matching the final installed name |
| 514 | ctx.Build(pctx, android.BuildParams{ |
| 515 | Rule: android.CpExecutable, |
| 516 | Description: "prebuilt", |
| 517 | Output: outputFile, |
| 518 | Input: in, |
| 519 | }) |
| 520 | } |
Colin Cross | 94921e7 | 2017-08-08 16:20:15 -0700 | [diff] [blame] | 521 | |
| 522 | return outputFile |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | return nil |
| 526 | } |
| 527 | |
Inseob Kim | 7f283f4 | 2020-06-01 21:53:49 +0900 | [diff] [blame] | 528 | func (p *prebuiltBinaryLinker) binary() bool { |
| 529 | return true |
| 530 | } |
| 531 | |
Patrice Arruda | 3554a98 | 2019-03-27 19:09:10 -0700 | [diff] [blame] | 532 | // cc_prebuilt_binary installs a precompiled executable in srcs property in the |
| 533 | // device's directory. |
Colin Cross | 3624285 | 2017-06-23 15:06:31 -0700 | [diff] [blame] | 534 | func prebuiltBinaryFactory() android.Module { |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 535 | module, _ := NewPrebuiltBinary(android.HostAndDeviceSupported) |
| 536 | return module.Init() |
| 537 | } |
| 538 | |
| 539 | func NewPrebuiltBinary(hod android.HostOrDeviceSupported) (*Module, *binaryDecorator) { |
| 540 | module, binary := NewBinary(hod) |
Colin Cross | de89fb8 | 2017-03-17 13:28:06 -0700 | [diff] [blame] | 541 | module.compiler = nil |
| 542 | |
| 543 | prebuilt := &prebuiltBinaryLinker{ |
| 544 | binaryDecorator: binary, |
| 545 | } |
| 546 | module.linker = prebuilt |
Martin Stjernholm | 837ee1a | 2020-08-20 02:54:52 +0100 | [diff] [blame] | 547 | module.installer = prebuilt |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 548 | |
Colin Cross | 74d73e2 | 2017-08-02 11:05:49 -0700 | [diff] [blame] | 549 | module.AddProperties(&prebuilt.properties) |
| 550 | |
| 551 | android.InitPrebuiltModule(module, &prebuilt.properties.Srcs) |
Leo Li | 74f7b97 | 2017-05-17 11:30:45 -0700 | [diff] [blame] | 552 | return module, binary |
Colin Cross | ce75d2c | 2016-10-06 16:12:58 -0700 | [diff] [blame] | 553 | } |
Evgenii Stepanov | 2080bfe | 2020-07-24 15:35:40 -0700 | [diff] [blame] | 554 | |
| 555 | type Sanitized struct { |
| 556 | None struct { |
| 557 | Srcs []string `android:"path,arch_variant"` |
| 558 | } `android:"arch_variant"` |
| 559 | Address struct { |
| 560 | Srcs []string `android:"path,arch_variant"` |
| 561 | } `android:"arch_variant"` |
| 562 | Hwaddress struct { |
| 563 | Srcs []string `android:"path,arch_variant"` |
| 564 | } `android:"arch_variant"` |
| 565 | } |
| 566 | |
| 567 | func srcsForSanitizer(sanitize *sanitize, sanitized Sanitized) []string { |
| 568 | if sanitize == nil { |
| 569 | return nil |
| 570 | } |
| 571 | if Bool(sanitize.Properties.Sanitize.Address) && sanitized.Address.Srcs != nil { |
| 572 | return sanitized.Address.Srcs |
| 573 | } |
| 574 | if Bool(sanitize.Properties.Sanitize.Hwaddress) && sanitized.Hwaddress.Srcs != nil { |
| 575 | return sanitized.Hwaddress.Srcs |
| 576 | } |
| 577 | return sanitized.None.Srcs |
| 578 | } |