blob: 31afbfb0a7ac7e26b1cbb5d98ed64346a1030a43 [file] [log] [blame]
Brian Silverman0aa13732022-05-19 23:14:08 -07001# This file is included in the BUILD for the cxx crate, to export its header
2# file for C++ code to depend on.
3cc_library(
4 name = "cxx_cc",
5 visibility = ["//visibility:public"],
6 hdrs = ["include/cxx.h"],
7 srcs = ["src/cxx.cc"],
8 includes = ["include"],
Brian Silvermana8ad1af2022-07-23 16:05:12 -07009 target_compatible_with = ["@//tools/platforms/rust:has_support"],
Brian Silverman0aa13732022-05-19 23:14:08 -070010)