diff --git a/java/prebuilt_apis.go b/java/prebuilt_apis.go index 02b9b455d..c37081130 100644 --- a/java/prebuilt_apis.go +++ b/java/prebuilt_apis.go @@ -22,13 +22,6 @@ import ( "github.com/google/blueprint/proptools" ) -// prebuilt_apis is a meta-module that generates filegroup modules for all -// API txt files found under the directory where the Android.bp is located. -// Specificaly, an API file located at .///api/.txt -// generates a filegroup module named -api... -// -// It also creates -api..latest for the lastest . -// func init() { android.RegisterModuleType("prebuilt_apis", PrebuiltApisFactory) @@ -188,6 +181,12 @@ func PrebuiltApisMutator(mctx android.TopDownMutatorContext) { } } +// prebuilt_apis is a meta-module that generates filegroup modules for all +// API txt files found under the directory where the Android.bp is located. +// Specifically, an API file located at .///api/.txt +// generates a filegroup module named -api... +// +// It also creates -api..latest for the latest . func PrebuiltApisFactory() android.Module { module := &prebuiltApis{} module.AddProperties(&module.properties)