Skip to content

Commit

Permalink
support .inc file for func _private_headers (#724)
Browse files Browse the repository at this point in the history
  • Loading branch information
Su-Xiaofeng authored May 18, 2023
1 parent eb811e6 commit a9ac5b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/library.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def _private_headers_impl(ctx):
_private_headers = rule(
implementation = _private_headers_impl,
attrs = {
"headers": attr.label_list(mandatory = True, allow_files = [".h", ".hh", ".hpp"]),
"headers": attr.label_list(mandatory = True, allow_files = [".inc", ".h", ".hh", ".hpp"]),
},
)

Expand Down

0 comments on commit a9ac5b2

Please sign in to comment.