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