Merge "Add a stronger wording to don't use ModuleFromName" am: 44baecd513

Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/2522235

Change-Id: I1ae19873ad528b9a7779a264cc375c53624f8535
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot 2023-04-05 04:33:11 +00:00 committed by Automerger Merge Worker
commit bb0a61e40c

View file

@ -300,6 +300,9 @@ type BaseModuleContext interface {
// There are no guarantees about which variant of the module will be returned. // There are no guarantees about which variant of the module will be returned.
// Prefer retrieving the module using GetDirectDep or a visit function, when possible, as // Prefer retrieving the module using GetDirectDep or a visit function, when possible, as
// this will guarantee the appropriate module-variant dependency is returned. // this will guarantee the appropriate module-variant dependency is returned.
//
// WARNING: This should _only_ be used within the context of bp2build, where variants and
// dependencies are not created.
ModuleFromName(name string) (Module, bool) ModuleFromName(name string) (Module, bool)
// OtherModuleDependencyVariantExists returns true if a module with the // OtherModuleDependencyVariantExists returns true if a module with the