1{# Copyright © 2024 Google Inc.
2 SPDX-License-Identifier: MIT
3#}
4# header library
5cc_library(
6 name = "{{ name }}",
7 hdrs = []
8 {%- for hdr in hdrs %}
9 + glob(["{{ hdr }}"])
10 {%- endfor %}
11 ,
12 visibility = [ "//visibility:public" ],
13)
14