Brian Silverman | 0aa1373 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 1 | # This file is included in the BUILD for the cxx crate, to export its header |
| 2 | # file for C++ code to depend on. |
| 3 | cc_library( |
| 4 | name = "cxx_cc", |
| 5 | visibility = ["//visibility:public"], |
| 6 | hdrs = ["include/cxx.h"], |
| 7 | srcs = ["src/cxx.cc"], |
| 8 | includes = ["include"], |
Brian Silverman | a8ad1af | 2022-07-23 16:05:12 -0700 | [diff] [blame] | 9 | target_compatible_with = ["@//tools/platforms/rust:has_support"], |
Brian Silverman | 0aa1373 | 2022-05-19 23:14:08 -0700 | [diff] [blame] | 10 | ) |