blob: fcc3419946e3dcdd77984806c4f38089b53e9d4d [file] [log] [blame]
Paul Duffinbb7f1ac2021-03-29 22:18:45 +01001// Copyright 2021 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
15package java
16
17import (
Paul Duffin6a766452021-04-12 14:15:22 +010018 "fmt"
19
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010020 "android/soong/android"
21 "android/soong/dexpreopt"
22)
23
24func init() {
25 registerPlatformBootclasspathBuildComponents(android.InitRegistrationContext)
26}
27
28func registerPlatformBootclasspathBuildComponents(ctx android.RegistrationContext) {
Paul Duffine3ecce62021-04-29 10:34:11 +010029 ctx.RegisterSingletonModuleType("platform_bootclasspath", platformBootclasspathFactory)
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010030}
31
Paul Duffin01b463b2021-04-26 20:05:39 +010032// The tags used for the dependencies between the platform bootclasspath and any configured boot
33// jars.
34var (
35 platformBootclasspathArtBootJarDepTag = bootclasspathDependencyTag{name: "art-boot-jar"}
36 platformBootclasspathNonUpdatableBootJarDepTag = bootclasspathDependencyTag{name: "non-updatable-boot-jar"}
37 platformBootclasspathUpdatableBootJarDepTag = bootclasspathDependencyTag{name: "updatable-boot-jar"}
38)
Paul Duffinb432df92021-03-22 22:09:42 +000039
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010040type platformBootclasspathModule struct {
Paul Duffine3ecce62021-04-29 10:34:11 +010041 android.SingletonModuleBase
Artur Satayev97259dc2021-04-07 15:17:14 +010042 ClasspathFragmentBase
Paul Duffinb432df92021-03-22 22:09:42 +000043
Paul Duffin62d8c3b2021-04-07 20:35:11 +010044 properties platformBootclasspathProperties
45
Paul Duffinb432df92021-03-22 22:09:42 +000046 // The apex:module pairs obtained from the configured modules.
Paul Duffinb432df92021-03-22 22:09:42 +000047 configuredModules []android.Module
Paul Duffin62d8c3b2021-04-07 20:35:11 +010048
49 // The apex:module pairs obtained from the fragments.
Paul Duffin62d8c3b2021-04-07 20:35:11 +010050 fragments []android.Module
Paul Duffin6a766452021-04-12 14:15:22 +010051
52 // Path to the monolithic hiddenapi-flags.csv file.
Paul Duffin0b659862021-04-13 13:02:29 +010053 hiddenAPIFlagsCSV android.OutputPath
Paul Duffin6a766452021-04-12 14:15:22 +010054
55 // Path to the monolithic hiddenapi-index.csv file.
Paul Duffin0b659862021-04-13 13:02:29 +010056 hiddenAPIIndexCSV android.OutputPath
Paul Duffin6a766452021-04-12 14:15:22 +010057
58 // Path to the monolithic hiddenapi-unsupported.csv file.
Paul Duffin0b659862021-04-13 13:02:29 +010059 hiddenAPIMetadataCSV android.OutputPath
Paul Duffin62d8c3b2021-04-07 20:35:11 +010060}
61
Paul Duffin62d8c3b2021-04-07 20:35:11 +010062type platformBootclasspathProperties struct {
Paul Duffinb67d8782021-04-22 11:49:41 +010063 BootclasspathFragmentsDepsProperties
Paul Duffin702210b2021-04-08 20:12:41 +010064
Paul Duffin46169772021-04-14 15:01:56 +010065 Hidden_api HiddenAPIFlagFileProperties
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010066}
67
Paul Duffine3ecce62021-04-29 10:34:11 +010068func platformBootclasspathFactory() android.SingletonModule {
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010069 m := &platformBootclasspathModule{}
Paul Duffin62d8c3b2021-04-07 20:35:11 +010070 m.AddProperties(&m.properties)
satayev95e9c5b2021-04-29 11:50:26 +010071 // TODO(satayev): split apex jars into separate configs.
72 initClasspathFragment(m, BOOTCLASSPATH)
Paul Duffinbb7f1ac2021-03-29 22:18:45 +010073 android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
74 return m
75}
76
Paul Duffin6a766452021-04-12 14:15:22 +010077var _ android.OutputFileProducer = (*platformBootclasspathModule)(nil)
78
Artur Satayev97259dc2021-04-07 15:17:14 +010079func (b *platformBootclasspathModule) AndroidMkEntries() (entries []android.AndroidMkEntries) {
80 entries = append(entries, android.AndroidMkEntries{
81 Class: "FAKE",
82 // Need at least one output file in order for this to take effect.
83 OutputFile: android.OptionalPathForPath(b.hiddenAPIFlagsCSV),
84 Include: "$(BUILD_PHONY_PACKAGE)",
85 })
satayev128ce2f2021-05-06 13:21:15 +010086 entries = append(entries, b.classpathFragmentBase().androidMkEntries()...)
Artur Satayev97259dc2021-04-07 15:17:14 +010087 return
Paul Duffin6a766452021-04-12 14:15:22 +010088}
89
90// Make the hidden API files available from the platform-bootclasspath module.
91func (b *platformBootclasspathModule) OutputFiles(tag string) (android.Paths, error) {
92 switch tag {
93 case "hiddenapi-flags.csv":
94 return android.Paths{b.hiddenAPIFlagsCSV}, nil
95 case "hiddenapi-index.csv":
96 return android.Paths{b.hiddenAPIIndexCSV}, nil
97 case "hiddenapi-metadata.csv":
98 return android.Paths{b.hiddenAPIMetadataCSV}, nil
99 }
100
101 return nil, fmt.Errorf("unknown tag %s", tag)
102}
103
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100104func (b *platformBootclasspathModule) DepsMutator(ctx android.BottomUpMutatorContext) {
Paul Duffin74431d52021-04-21 14:10:42 +0100105 b.hiddenAPIDepsMutator(ctx)
106
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100107 if SkipDexpreoptBootJars(ctx) {
108 return
109 }
110
111 // Add a dependency onto the dex2oat tool which is needed for creating the boot image. The
112 // path is retrieved from the dependency by GetGlobalSoongConfig(ctx).
113 dexpreopt.RegisterToolDeps(ctx)
114}
115
Paul Duffin74431d52021-04-21 14:10:42 +0100116func (b *platformBootclasspathModule) hiddenAPIDepsMutator(ctx android.BottomUpMutatorContext) {
117 if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
118 return
119 }
120
121 // Add dependencies onto the stub lib modules.
122 sdkKindToStubLibModules := hiddenAPIComputeMonolithicStubLibModules(ctx.Config())
123 hiddenAPIAddStubLibDependencies(ctx, sdkKindToStubLibModules)
124}
125
Paul Duffin4994d262021-04-22 12:08:59 +0100126func (b *platformBootclasspathModule) BootclasspathDepsMutator(ctx android.BottomUpMutatorContext) {
127 // Add dependencies on all the modules configured in the "art" boot image.
128 artImageConfig := genBootImageConfigs(ctx)[artBootImageName]
Paul Duffin01b463b2021-04-26 20:05:39 +0100129 addDependenciesOntoBootImageModules(ctx, artImageConfig.modules, platformBootclasspathArtBootJarDepTag)
Paul Duffinb432df92021-03-22 22:09:42 +0000130
Paul Duffin01b463b2021-04-26 20:05:39 +0100131 // Add dependencies on all the non-updatable module configured in the "boot" boot image. That does
132 // not include modules configured in the "art" boot image.
Paul Duffin4994d262021-04-22 12:08:59 +0100133 bootImageConfig := b.getImageConfig(ctx)
Paul Duffin01b463b2021-04-26 20:05:39 +0100134 addDependenciesOntoBootImageModules(ctx, bootImageConfig.modules, platformBootclasspathNonUpdatableBootJarDepTag)
Paul Duffinb432df92021-03-22 22:09:42 +0000135
Paul Duffin4994d262021-04-22 12:08:59 +0100136 // Add dependencies on all the updatable modules.
137 updatableModules := dexpreopt.GetGlobalConfig(ctx).UpdatableBootJars
Paul Duffin01b463b2021-04-26 20:05:39 +0100138 addDependenciesOntoBootImageModules(ctx, updatableModules, platformBootclasspathUpdatableBootJarDepTag)
Paul Duffin62d8c3b2021-04-07 20:35:11 +0100139
Paul Duffin4994d262021-04-22 12:08:59 +0100140 // Add dependencies on all the fragments.
141 b.properties.BootclasspathFragmentsDepsProperties.addDependenciesOntoFragments(ctx)
Paul Duffinb432df92021-03-22 22:09:42 +0000142}
143
Paul Duffin01b463b2021-04-26 20:05:39 +0100144func addDependenciesOntoBootImageModules(ctx android.BottomUpMutatorContext, modules android.ConfiguredJarList, tag bootclasspathDependencyTag) {
Paul Duffinb432df92021-03-22 22:09:42 +0000145 for i := 0; i < modules.Len(); i++ {
146 apex := modules.Apex(i)
147 name := modules.Jar(i)
148
Paul Duffin01b463b2021-04-26 20:05:39 +0100149 addDependencyOntoApexModulePair(ctx, apex, name, tag)
Paul Duffinb432df92021-03-22 22:09:42 +0000150 }
151}
152
Paul Duffine3ecce62021-04-29 10:34:11 +0100153// GenerateSingletonBuildActions does nothing and must never do anything.
154//
155// This module only implements android.SingletonModule so that it can implement
156// android.SingletonMakeVarsProvider.
157func (b *platformBootclasspathModule) GenerateSingletonBuildActions(android.SingletonContext) {
158 // Keep empty
159}
160
161func (d *platformBootclasspathModule) MakeVars(ctx android.MakeVarsContext) {
Paul Duffin12d29b72021-04-29 13:50:01 +0100162 d.generateHiddenApiMakeVars(ctx)
Paul Duffine3ecce62021-04-29 10:34:11 +0100163}
164
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100165func (b *platformBootclasspathModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
Paul Duffin01b463b2021-04-26 20:05:39 +0100166 // Gather all the dependencies from the art, updatable and non-updatable boot jars.
167 artModules := gatherApexModulePairDepsWithTag(ctx, platformBootclasspathArtBootJarDepTag)
168 nonUpdatableModules := gatherApexModulePairDepsWithTag(ctx, platformBootclasspathNonUpdatableBootJarDepTag)
169 updatableModules := gatherApexModulePairDepsWithTag(ctx, platformBootclasspathUpdatableBootJarDepTag)
170
171 // Concatenate them all, in order as they would appear on the bootclasspath.
172 var allModules []android.Module
173 allModules = append(allModules, artModules...)
174 allModules = append(allModules, nonUpdatableModules...)
175 allModules = append(allModules, updatableModules...)
176 b.configuredModules = allModules
177
178 // Gather all the fragments dependencies.
Paul Duffin9bacf562021-04-28 21:16:02 +0100179 b.fragments = gatherApexModulePairDepsWithTag(ctx, bootclasspathFragmentDepTag)
Paul Duffinb432df92021-03-22 22:09:42 +0000180
Paul Duffinf23bc472021-04-27 12:42:20 +0100181 // Check the configuration of the boot modules.
182 // ART modules are checked by the art-bootclasspath-fragment.
183 b.checkNonUpdatableModules(ctx, nonUpdatableModules)
184 b.checkUpdatableModules(ctx, updatableModules)
185
satayev013485b2021-05-06 23:38:10 +0100186 b.generateClasspathProtoBuildActions(ctx)
187
Paul Duffinc8ead412021-06-07 19:28:15 +0100188 bootDexJarByModule := b.generateHiddenAPIBuildActions(ctx, b.configuredModules, b.fragments)
189 buildRuleForBootJarsPackageCheck(ctx, bootDexJarByModule)
Paul Duffin702210b2021-04-08 20:12:41 +0100190
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100191 // Nothing to do if skipping the dexpreopt of boot image jars.
192 if SkipDexpreoptBootJars(ctx) {
193 return
194 }
195
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100196 b.generateBootImageBuildActions(ctx, nonUpdatableModules, updatableModules)
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100197}
198
satayev013485b2021-05-06 23:38:10 +0100199// Generate classpaths.proto config
200func (b *platformBootclasspathModule) generateClasspathProtoBuildActions(ctx android.ModuleContext) {
201 // ART and platform boot jars must have a corresponding entry in DEX2OATBOOTCLASSPATH
satayev142ed272021-06-15 16:21:17 +0100202 classpathJars := configuredJarListToClasspathJars(ctx, b.configuredJars(ctx), BOOTCLASSPATH, DEX2OATBOOTCLASSPATH)
satayev013485b2021-05-06 23:38:10 +0100203 b.classpathFragmentBase().generateClasspathProtoBuildActions(ctx, classpathJars)
204}
205
satayev142ed272021-06-15 16:21:17 +0100206func (b *platformBootclasspathModule) configuredJars(ctx android.ModuleContext) android.ConfiguredJarList {
satayev8fab6f82021-05-07 00:10:33 +0100207 return b.getImageConfig(ctx).modules
satayev013485b2021-05-06 23:38:10 +0100208}
209
Paul Duffinf23bc472021-04-27 12:42:20 +0100210// checkNonUpdatableModules ensures that the non-updatable modules supplied are not part of an
211// updatable module.
212func (b *platformBootclasspathModule) checkNonUpdatableModules(ctx android.ModuleContext, modules []android.Module) {
213 for _, m := range modules {
214 apexInfo := ctx.OtherModuleProvider(m, android.ApexInfoProvider).(android.ApexInfo)
215 fromUpdatableApex := apexInfo.Updatable
216 if fromUpdatableApex {
217 // error: this jar is part of an updatable apex
Jiyong Parkab50b072021-05-12 17:13:56 +0900218 ctx.ModuleErrorf("module %q from updatable apexes %q is not allowed in the framework boot image", ctx.OtherModuleName(m), apexInfo.InApexVariants)
Paul Duffinf23bc472021-04-27 12:42:20 +0100219 } else {
220 // ok: this jar is part of the platform or a non-updatable apex
221 }
222 }
223}
224
225// checkUpdatableModules ensures that the updatable modules supplied are not from the platform.
226func (b *platformBootclasspathModule) checkUpdatableModules(ctx android.ModuleContext, modules []android.Module) {
227 for _, m := range modules {
228 apexInfo := ctx.OtherModuleProvider(m, android.ApexInfoProvider).(android.ApexInfo)
229 fromUpdatableApex := apexInfo.Updatable
230 if fromUpdatableApex {
231 // ok: this jar is part of an updatable apex
232 } else {
233 name := ctx.OtherModuleName(m)
234 if apexInfo.IsForPlatform() {
Paul Duffin7487a7a2021-05-19 09:36:09 +0100235 // If AlwaysUsePrebuiltSdks() returns true then it is possible that the updatable list will
236 // include platform variants of a prebuilt module due to workarounds elsewhere. In that case
237 // do not treat this as an error.
238 // TODO(b/179354495): Always treat this as an error when migration to bootclasspath_fragment
239 // modules is complete.
240 if !ctx.Config().AlwaysUsePrebuiltSdks() {
241 // error: this jar is part of the platform
242 ctx.ModuleErrorf("module %q from platform is not allowed in the updatable boot jars list", name)
243 }
Paul Duffinf23bc472021-04-27 12:42:20 +0100244 } else {
245 // TODO(b/177892522): Treat this as an error.
246 // Cannot do that at the moment because framework-wifi and framework-tethering are in the
247 // PRODUCT_UPDATABLE_BOOT_JARS but not marked as updatable in AOSP.
248 }
249 }
250 }
251}
252
Paul Duffinbb7f1ac2021-03-29 22:18:45 +0100253func (b *platformBootclasspathModule) getImageConfig(ctx android.EarlyModuleContext) *bootImageConfig {
254 return defaultBootImageConfig(ctx)
255}
Paul Duffin702210b2021-04-08 20:12:41 +0100256
257// generateHiddenAPIBuildActions generates all the hidden API related build rules.
Paul Duffinc8ead412021-06-07 19:28:15 +0100258func (b *platformBootclasspathModule) generateHiddenAPIBuildActions(ctx android.ModuleContext, modules []android.Module, fragments []android.Module) bootDexJarByModule {
Paul Duffin702210b2021-04-08 20:12:41 +0100259
Paul Duffin90b8ad32021-04-13 12:25:01 +0100260 // Save the paths to the monolithic files for retrieval via OutputFiles().
261 b.hiddenAPIFlagsCSV = hiddenAPISingletonPaths(ctx).flags
262 b.hiddenAPIIndexCSV = hiddenAPISingletonPaths(ctx).index
263 b.hiddenAPIMetadataCSV = hiddenAPISingletonPaths(ctx).metadata
Paul Duffin6a766452021-04-12 14:15:22 +0100264
Adrian Roose95a15e2021-06-21 16:03:11 +0200265 bootDexJarByModule := extractBootDexJarsFromModules(ctx, modules)
266
Paul Duffin0b659862021-04-13 13:02:29 +0100267 // Don't run any hiddenapi rules if UNSAFE_DISABLE_HIDDENAPI_FLAGS=true. This is a performance
268 // optimization that can be used to reduce the incremental build time but as its name suggests it
269 // can be unsafe to use, e.g. when the changes affect anything that goes on the bootclasspath.
Vishnu Nair0dbd02a2021-04-30 00:24:07 +0000270 if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
Paul Duffin0b659862021-04-13 13:02:29 +0100271 paths := android.OutputPaths{b.hiddenAPIFlagsCSV, b.hiddenAPIIndexCSV, b.hiddenAPIMetadataCSV}
272 for _, path := range paths {
273 ctx.Build(pctx, android.BuildParams{
274 Rule: android.Touch,
275 Output: path,
276 })
277 }
Adrian Roose95a15e2021-06-21 16:03:11 +0200278 return bootDexJarByModule
Paul Duffin0b659862021-04-13 13:02:29 +0100279 }
280
Paul Duffin89f570a2021-06-16 01:42:33 +0100281 // Construct a list of ClasspathElement objects from the modules and fragments.
282 classpathElements := CreateClasspathElements(ctx, modules, fragments)
283
284 monolithicInfo := b.createAndProvideMonolithicHiddenAPIInfo(ctx, classpathElements)
285
286 // Extract the classes jars only from those libraries that do not have corresponding fragments as
287 // the fragments will have already provided the flags that are needed.
288 classesJars := monolithicInfo.ClassesJars
289
Paul Duffin1352f7c2021-05-21 22:18:49 +0100290 // Create the input to pass to ruleToGenerateHiddenAPIStubFlagsFile
291 input := newHiddenAPIFlagInput()
292
293 // Gather stub library information from the dependencies on modules provided by
294 // hiddenAPIComputeMonolithicStubLibModules.
295 input.gatherStubLibInfo(ctx, nil)
296
297 // Use the flag files from this module and all the fragments.
298 input.FlagFilesByCategory = monolithicInfo.FlagsFilesByCategory
Paul Duffin74431d52021-04-21 14:10:42 +0100299
Paul Duffin537ea3d2021-05-14 10:38:00 +0100300 // Generate the monolithic stub-flags.csv file.
Paul Duffin537ea3d2021-05-14 10:38:00 +0100301 stubFlags := hiddenAPISingletonPaths(ctx).stubFlags
Paul Duffine5218812021-06-07 13:28:19 +0100302 rule := ruleToGenerateHiddenAPIStubFlagsFile(ctx, stubFlags, bootDexJarByModule.bootDexJars(), input)
Paul Duffin74431d52021-04-21 14:10:42 +0100303 rule.Build("platform-bootclasspath-monolithic-hiddenapi-stub-flags", "monolithic hidden API stub flags")
Paul Duffin537ea3d2021-05-14 10:38:00 +0100304
Paul Duffin537ea3d2021-05-14 10:38:00 +0100305 // Generate the annotation-flags.csv file from all the module annotations.
306 annotationFlags := android.PathForModuleOut(ctx, "hiddenapi-monolithic", "annotation-flags.csv")
307 buildRuleToGenerateAnnotationFlags(ctx, "monolithic hiddenapi flags", classesJars, stubFlags, annotationFlags)
308
309 // Generate the monotlithic hiddenapi-flags.csv file.
310 allFlags := hiddenAPISingletonPaths(ctx).flags
Paul Duffin32cf58a2021-05-18 16:32:50 +0100311 buildRuleToGenerateHiddenApiFlags(ctx, "hiddenAPIFlagsFile", "hiddenapi flags", allFlags, stubFlags, annotationFlags, monolithicInfo.FlagsFilesByCategory, monolithicInfo.AllFlagsPaths, android.OptionalPath{})
Paul Duffin537ea3d2021-05-14 10:38:00 +0100312
313 // Generate an intermediate monolithic hiddenapi-metadata.csv file directly from the annotations
314 // in the source code.
315 intermediateMetadataCSV := android.PathForModuleOut(ctx, "hiddenapi-monolithic", "intermediate-metadata.csv")
316 buildRuleToGenerateMetadata(ctx, "monolithic hidden API metadata", classesJars, stubFlags, intermediateMetadataCSV)
317
318 // Reformat the intermediate file to add | quotes just in case that is important for the tools
319 // that consume the metadata file.
320 // TODO(b/179354495): Investigate whether it is possible to remove this reformatting step.
321 metadataCSV := hiddenAPISingletonPaths(ctx).metadata
322 b.buildRuleMergeCSV(ctx, "reformat monolithic hidden API metadata", android.Paths{intermediateMetadataCSV}, metadataCSV)
323
324 // Generate the monolithic hiddenapi-index.csv file directly from the CSV files in the classes
325 // jars.
326 indexCSV := hiddenAPISingletonPaths(ctx).index
327 buildRuleToGenerateIndex(ctx, "monolithic hidden API index", classesJars, indexCSV)
Paul Duffinc8ead412021-06-07 19:28:15 +0100328
329 return bootDexJarByModule
Paul Duffin74431d52021-04-21 14:10:42 +0100330}
331
Paul Duffin438eb572021-05-21 16:58:23 +0100332// createAndProvideMonolithicHiddenAPIInfo creates a MonolithicHiddenAPIInfo and provides it for
333// testing.
Paul Duffin89f570a2021-06-16 01:42:33 +0100334func (b *platformBootclasspathModule) createAndProvideMonolithicHiddenAPIInfo(ctx android.ModuleContext, classpathElements ClasspathElements) MonolithicHiddenAPIInfo {
Paul Duffin1352f7c2021-05-21 22:18:49 +0100335 // Create a temporary input structure in which to collate information provided directly by this
336 // module, either through properties or direct dependencies.
337 temporaryInput := newHiddenAPIFlagInput()
338
339 // Create paths to the flag files specified in the properties.
340 temporaryInput.extractFlagFilesFromProperties(ctx, &b.properties.Hidden_api)
341
342 // Create the monolithic info, by starting with the flag files specified on this and then merging
343 // in information from all the fragment dependencies of this.
Paul Duffin89f570a2021-06-16 01:42:33 +0100344 monolithicInfo := newMonolithicHiddenAPIInfo(ctx, temporaryInput.FlagFilesByCategory, classpathElements)
Paul Duffin438eb572021-05-21 16:58:23 +0100345
346 // Store the information for testing.
Paul Duffin524c82c2021-06-09 14:39:28 +0100347 ctx.SetProvider(MonolithicHiddenAPIInfoProvider, monolithicInfo)
Paul Duffin438eb572021-05-21 16:58:23 +0100348 return monolithicInfo
349}
350
Paul Duffin537ea3d2021-05-14 10:38:00 +0100351func (b *platformBootclasspathModule) buildRuleMergeCSV(ctx android.ModuleContext, desc string, inputPaths android.Paths, outputPath android.WritablePath) {
Paul Duffin00b2bfd2021-04-12 17:24:36 +0100352 rule := android.NewRuleBuilder(pctx, ctx)
353 rule.Command().
354 BuiltTool("merge_csv").
355 Flag("--key_field signature").
Paul Duffin85dee5d2021-04-13 00:14:38 +0100356 FlagWithOutput("--output=", outputPath).
Paul Duffin537ea3d2021-05-14 10:38:00 +0100357 Inputs(inputPaths)
Paul Duffin85dee5d2021-04-13 00:14:38 +0100358
Paul Duffin537ea3d2021-05-14 10:38:00 +0100359 rule.Build(desc, desc)
Paul Duffin85dee5d2021-04-13 00:14:38 +0100360}
Paul Duffinad19d382021-04-26 16:44:00 +0100361
Paul Duffin12d29b72021-04-29 13:50:01 +0100362// generateHiddenApiMakeVars generates make variables needed by hidden API related make rules, e.g.
363// veridex and run-appcompat.
364func (b *platformBootclasspathModule) generateHiddenApiMakeVars(ctx android.MakeVarsContext) {
365 if ctx.Config().IsEnvTrue("UNSAFE_DISABLE_HIDDENAPI_FLAGS") {
366 return
367 }
368 // INTERNAL_PLATFORM_HIDDENAPI_FLAGS is used by Make rules in art/ and cts/.
369 ctx.Strict("INTERNAL_PLATFORM_HIDDENAPI_FLAGS", b.hiddenAPIFlagsCSV.String())
370}
371
Paul Duffinad19d382021-04-26 16:44:00 +0100372// generateBootImageBuildActions generates ninja rules related to the boot image creation.
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100373func (b *platformBootclasspathModule) generateBootImageBuildActions(ctx android.ModuleContext, nonUpdatableModules, updatableModules []android.Module) {
Paul Duffinad19d382021-04-26 16:44:00 +0100374 // Force the GlobalSoongConfig to be created and cached for use by the dex_bootjars
375 // GenerateSingletonBuildActions method as it cannot create it for itself.
376 dexpreopt.GetGlobalSoongConfig(ctx)
377
378 imageConfig := b.getImageConfig(ctx)
379 if imageConfig == nil {
380 return
381 }
382
383 global := dexpreopt.GetGlobalConfig(ctx)
384 if !shouldBuildBootImages(ctx.Config(), global) {
385 return
386 }
387
388 // Generate the framework profile rule
389 bootFrameworkProfileRule(ctx, imageConfig)
Paul Duffin4c094422021-04-26 20:10:48 +0100390
391 // Generate the updatable bootclasspath packages rule.
392 generateUpdatableBcpPackagesRule(ctx, imageConfig, updatableModules)
Paul Duffinf7a55922021-04-26 23:09:15 +0100393
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100394 // Copy non-updatable module dex jars to their predefined locations.
Paul Duffin5f148ca2021-06-02 17:24:22 +0100395 nonUpdatableBootDexJarsByModule := extractEncodedDexJarsFromModules(ctx, nonUpdatableModules)
396 copyBootJarsToPredefinedLocations(ctx, nonUpdatableBootDexJarsByModule, imageConfig.dexPathsByModule)
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100397
398 // Copy updatable module dex jars to their predefined locations.
399 config := GetUpdatableBootConfig(ctx)
Paul Duffin5f148ca2021-06-02 17:24:22 +0100400 updatableBootDexJarsByModule := extractEncodedDexJarsFromModules(ctx, updatableModules)
401 copyBootJarsToPredefinedLocations(ctx, updatableBootDexJarsByModule, config.dexPathsByModule)
Paul Duffin7ebebfd2021-04-27 19:36:57 +0100402
Paul Duffin2fc82ad2021-04-29 23:36:12 +0100403 // Build a profile for the image config and then use that to build the boot image.
404 profile := bootImageProfileRule(ctx, imageConfig)
405 buildBootImage(ctx, imageConfig, profile)
406
Paul Duffinf7a55922021-04-26 23:09:15 +0100407 dumpOatRules(ctx, imageConfig)
Paul Duffinad19d382021-04-26 16:44:00 +0100408}