load("@rules_cc//cc:cc_library.bzl", "cc_library") cc_library( name = "boost.circular_buffer", hdrs = glob( [ "include/**/*.hpp", ], exclude = [ "include/boost/circular_buffer/base.hpp", "include/boost/circular_buffer/space_optimized.hpp", ], ), features = [ "parse_headers", ], includes = ["include"], textual_hdrs = [ "include/boost/circular_buffer/base.hpp", "include/boost/circular_buffer/space_optimized.hpp", ], visibility = ["//visibility:public"], deps = [ "@boost.assert", "@boost.concept_check", "@boost.config", "@boost.core", "@boost.move", "@boost.static_assert", "@boost.throw_exception", "@boost.type_traits", ], )