blob: 64dcb071f0888eefb023fec2cb9de650926622b3 [file] [log] [blame]
def exercise_the_api():
var1 = cc_common.CcToolchainInfo
var2 = native.cc_library(name = "foo")
exercise_the_api()
def my_rule_impl(ctx):
return struct()
cpp_related_rule = rule(
implementation = my_rule_impl,
doc = "This rule does cpp-related things.",
attrs = {
"first": attr.label(mandatory = True, allow_single_file = True),
"second": attr.string_dict(mandatory = True),
"third": attr.output(mandatory = True),
"fourth": attr.bool(default = False, mandatory = False),
},
)