You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
531 B
21 lines
531 B
load("//build/bazel/rules:cc_library_static.bzl", "cc_library_static")
|
|
|
|
def cc_library_headers(
|
|
name,
|
|
deps = [],
|
|
hdrs = [],
|
|
includes = [],
|
|
native_bridge_supported = False, # TODO: not supported yet.
|
|
**kwargs):
|
|
"Bazel macro to correspond with the cc_library_headers Soong module."
|
|
|
|
cc_library_static(
|
|
name = name,
|
|
deps = deps,
|
|
hdrs = hdrs,
|
|
includes = includes,
|
|
native_bridge_supported = native_bridge_supported,
|
|
**kwargs
|
|
)
|
|
|