load("@rules_cc//cc:defs.bzl", "cc_library") package(default_visibility = ["//visibility:public"]) cc_library( name = "boost.function", hdrs = glob( [ "include/**/*.hpp", ], exclude = glob([ "include/boost/function/detail/*.hpp", ]) + [ "include/boost/function/function_template.hpp", ], ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = glob([ "include/boost/function/detail/*.hpp", ]) + [ "include/boost/function/function_template.hpp", ], deps = [ "@boost.assert", "@boost.bind", "@boost.config", "@boost.core", "@boost.preprocessor", "@boost.throw_exception", "@boost.type_traits", "@boost.typeof", ], )