Lines Matching refs:attr
28 if ctx.attr.scope == "public":
29 from_deps = [d[JavaSdkLibraryInfo].public for d in ctx.attr.deps]
30 elif ctx.attr.scope == "system":
31 from_deps = [d[JavaSdkLibraryInfo].system for d in ctx.attr.deps]
32 elif ctx.attr.scope == "module-lib":
33 from_deps = [d[JavaSdkLibraryInfo].module_lib for d in ctx.attr.deps]
34 elif ctx.attr.scope == "system-server":
35 from_deps = [d[JavaSdkLibraryInfo].system_server for d in ctx.attr.deps]
41 if ctx.attr.scope != "public":
42 output_name = ctx.attr.scope + "-" + output_name
63 "scope": attr.string(
66 "base": attr.label(
71 "deps": attr.label_list(
76 "_metalava": attr.label(