tensorflow/third_party/robin_map/robin_map.BUILD
Peter Hawkins 8b38fcb728 [XLA] Add nanobind and robin_map to XLA Bazel configuration.
I am planning to use nanobind inside xla/python (replacing uses of pybind11), and this change adds Bazel mappings for
* nanobind, and
* robin_map, which is a hash map implementation used internally by nanobind.

PiperOrigin-RevId: 610427944
2024-02-26 09:20:49 -08:00

18 lines
451 B
Plaintext

licenses(["notice"])
package(default_visibility = ["//visibility:public"])
cc_library(
name = "robin_map",
hdrs = [
"include/tsl/robin_growth_policy.h",
"include/tsl/robin_hash.h",
"include/tsl/robin_map.h",
"include/tsl/robin_set.h",
],
copts = ["-fexceptions"],
features = ["-use_header_modules"], # Incompatible with -fexceptions.
includes = ["."],
strip_include_prefix = "include",
)