Merge "Remove unnecessary options when generating stubs from signatures" into main
This commit is contained in:
14
java/java.go
14
java/java.go
@@ -1735,7 +1735,6 @@ func metalavaStubCmd(ctx android.ModuleContext, rule *android.RuleBuilder,
|
|||||||
|
|
||||||
cmd.Flag("--color").
|
cmd.Flag("--color").
|
||||||
Flag("--quiet").
|
Flag("--quiet").
|
||||||
Flag("--format=v2").
|
|
||||||
Flag("--include-annotations").
|
Flag("--include-annotations").
|
||||||
// The flag makes nullability issues as warnings rather than errors by replacing
|
// The flag makes nullability issues as warnings rather than errors by replacing
|
||||||
// @Nullable/@NonNull in the listed packages APIs with @RecentlyNullable/@RecentlyNonNull,
|
// @Nullable/@NonNull in the listed packages APIs with @RecentlyNullable/@RecentlyNonNull,
|
||||||
@@ -1747,14 +1746,13 @@ func metalavaStubCmd(ctx android.ModuleContext, rule *android.RuleBuilder,
|
|||||||
FlagWithArg("--hide ", "InvalidNullabilityOverride").
|
FlagWithArg("--hide ", "InvalidNullabilityOverride").
|
||||||
FlagWithArg("--hide ", "ChangedDefault")
|
FlagWithArg("--hide ", "ChangedDefault")
|
||||||
|
|
||||||
// Force metalava to ignore classes on the classpath when an API file contains missing classes.
|
// The main purpose of the `--api-class-resolution api` option is to force metalava to ignore
|
||||||
// See b/285140653 for more information.
|
// classes on the classpath when an API file contains missing classes. However, as this command
|
||||||
|
// does not specify `--classpath` this is not needed for that. However, this is also used as a
|
||||||
|
// signal to the special metalava code for generating stubs from text files that it needs to add
|
||||||
|
// some additional items into the API (e.g. default constructors).
|
||||||
cmd.FlagWithArg("--api-class-resolution ", "api")
|
cmd.FlagWithArg("--api-class-resolution ", "api")
|
||||||
|
|
||||||
// Force metalava to sort overloaded methods by their order in the source code.
|
|
||||||
// See b/285312164 for more information.
|
|
||||||
cmd.FlagWithArg("--api-overloaded-method-order ", "source")
|
|
||||||
|
|
||||||
return cmd
|
return cmd
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1916,7 +1914,7 @@ func (al *ApiLibrary) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
|||||||
FlagWithArg("-C ", stubsDir.String()).
|
FlagWithArg("-C ", stubsDir.String()).
|
||||||
FlagWithArg("-D ", stubsDir.String())
|
FlagWithArg("-D ", stubsDir.String())
|
||||||
|
|
||||||
rule.Build("metalava", "metalava merged")
|
rule.Build("metalava", "metalava merged text")
|
||||||
|
|
||||||
if depApiSrcsStubsJar == nil {
|
if depApiSrcsStubsJar == nil {
|
||||||
var flags javaBuilderFlags
|
var flags javaBuilderFlags
|
||||||
|
Reference in New Issue
Block a user