load("@rules_cc//cc:defs.bzl", "cc_library") package(default_visibility = ["//visibility:public"]) cc_library( name = "boost.unordered", hdrs = glob( [ "include/**/*.hpp", ], exclude = glob([ "include/boost/unordered/detail/**/*.hpp", ]), ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = glob([ "include/boost/unordered/detail/**/*.hpp", ]), deps = [ "@boost.assert", "@boost.config", "@boost.container_hash", "@boost.core", "@boost.move", "@boost.mp11", "@boost.predef", "@boost.preprocessor", "@boost.static_assert", "@boost.throw_exception", "@boost.tuple", "@boost.type_traits", ], )