| load("@rules_cc//cc:defs.bzl", "cc_library") |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| cc_library( |
| name = "boost.circular_buffer", |
| hdrs = glob( |
| [ |
| "include/**/*.hpp", |
| "include/**/*.h", |
| ], |
| 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", |
| ], |
| deps = [ |
| "@boost.assert", |
| "@boost.concept_check", |
| "@boost.config", |
| "@boost.core", |
| "@boost.move", |
| "@boost.static_assert", |
| "@boost.throw_exception", |
| "@boost.type_traits", |
| ], |
| ) |