1"""A dependency file for multiple_files_test.""" 2 3load(":testdata/multiple_files_test/inner_dep.bzl", "inner_rule_impl", "prep_work") 4 5def some_cool_function(name, srcs = [], beef = ""): 6 """A pretty cool function. You should call it. 7 8 Args: 9 name: Some sort of name. 10 srcs: What sources you want cool stuff to happen to. 11 beef: Your opinion on beef. 12 """ 13 x = (name, srcs, beef) # @unused 14 15prep_work() 16 17my_rule_impl = inner_rule_impl 18