Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internal changes #188

Merged
merged 1 commit into from
Aug 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tools/javadoc/javadoc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ load("@rules_java//java:defs.bzl", "JavaInfo", "java_common")
def _android_jar(android_api_level):
if android_api_level == -1:
return None

return Label("@androidsdk//:platforms/android-%s/android.jar" % android_api_level)

def _javadoc_library(ctx):
Expand Down Expand Up @@ -115,9 +116,9 @@ be the java_library/android_library target(s) for the same sources.
default = "",
doc = "Title for generated index.html. See javadoc -doctitle.",
),
"groups": attr.string_list_dict(
doc = "Groups specified packages together in overview page. See javadoc -groups.",
),
"groups": attr.string_list_dict(
doc = "Groups specified packages together in overview page. See javadoc -groups.",
),
"root_packages": attr.string_list(
doc = """
Java packages to include in generated Javadoc. Any subpackages not listed in
Expand Down
Loading