From 1e954b6a57b633008d0c8eeb4d3b008279e0a987 Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Fri, 13 Sep 2024 13:50:00 -0700 Subject: Remove CreateVariations, CreateLocalVariations and AddInterVariantDependencies These have all been replaced by TransitionMutators. Bug: 319288033 Flag: EXEMPT refactor Test: all soong tests pass Change-Id: Ib8f2a7419b879d69d8a1e0d2d4fadd89b082c064 --- android/prebuilt.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'android/prebuilt.go') diff --git a/android/prebuilt.go b/android/prebuilt.go index fd5a6eaee..4f04d057b 100644 --- a/android/prebuilt.go +++ b/android/prebuilt.go @@ -359,8 +359,8 @@ func GetEmbeddedPrebuilt(module Module) *Prebuilt { // // This function is for use on dependencies after PrebuiltPostDepsMutator has // run - any dependency that is registered before that will already reference -// the right module. This function is only safe to call after all mutators that -// may call CreateVariations, e.g. in GenerateAndroidBuildActions. +// the right module. This function is only safe to call after all TransitionMutators +// have run, e.g. in GenerateAndroidBuildActions. func PrebuiltGetPreferred(ctx BaseModuleContext, module Module) Module { if !module.IsReplacedByPrebuilt() { return module -- cgit v1.2.3-59-g8ed1b