blob: 241d7b3bc813825eb9a5665260e471e159aeea04 [file] [log] [blame]
rust_library(
name = "cxx",
srcs = glob(["src/**"], exclude = ["src/symbols/**"]),
visibility = ["PUBLIC"],
rustc_flags = ["--cfg", "no_export_symbols"],
deps = [
":core",
":macro",
"//third-party:link-cplusplus",
],
)
rust_binary(
name = "codegen",
srcs = glob(["gen/cmd/src/**"]),
crate = "cxxbridge",
visibility = ["PUBLIC"],
deps = [
"//third-party:anyhow",
"//third-party:codespan-reporting",
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:structopt",
"//third-party:syn",
],
)
cxx_library(
name = "core",
srcs = ["src/cxx.cc"],
visibility = ["PUBLIC"],
header_namespace = "rust",
exported_headers = {
"cxx.h": "include/cxx.h",
},
exported_linker_flags = ["-lstdc++"],
deps = [":symbols"],
)
rust_library(
name = "symbols",
srcs = glob(["src/macros/**", "src/symbols/**"]),
crate_root = "src/symbols/symbols.rs",
)
rust_library(
name = "macro",
srcs = glob(["macro/src/**"]),
proc_macro = True,
crate = "cxxbridge_macro",
deps = [
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:syn",
],
)
rust_library(
name = "build",
srcs = glob(["gen/build/src/**"]),
visibility = ["PUBLIC"],
deps = [
"//third-party:anyhow",
"//third-party:cc",
"//third-party:codespan-reporting",
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:syn",
],
)