blob: f6b9f5ab75fef2c5edb81c311da1e1722cc5ecae [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"],
9)