2020-02-10 02:59:12 +00:00
|
|
|
rust_library(
|
|
|
|
name = "cxx",
|
2020-04-30 14:28:21 +00:00
|
|
|
srcs = glob(["src/**"], exclude = ["src/symbols/**"]),
|
2020-02-10 02:59:12 +00:00
|
|
|
visibility = ["PUBLIC"],
|
2020-04-30 14:28:21 +00:00
|
|
|
rustc_flags = ["--cfg", "no_export_symbols"],
|
2020-02-10 02:59:12 +00:00
|
|
|
deps = [
|
|
|
|
":core",
|
|
|
|
":macro",
|
|
|
|
"//third-party:link-cplusplus",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
rust_binary(
|
|
|
|
name = "codegen",
|
2020-04-29 19:34:47 +00:00
|
|
|
srcs = glob(["gen/cmd/src/**"]),
|
2020-04-29 23:36:13 +00:00
|
|
|
crate = "cxxbridge",
|
2020-02-10 02:59:12 +00:00
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
"//third-party:anyhow",
|
2020-07-31 05:39:23 +00:00
|
|
|
"//third-party:clap",
|
2020-02-10 02:59:12 +00:00
|
|
|
"//third-party:codespan-reporting",
|
|
|
|
"//third-party:proc-macro2",
|
|
|
|
"//third-party:quote",
|
|
|
|
"//third-party:syn",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cxx_library(
|
|
|
|
name = "core",
|
2020-03-11 23:49:18 +00:00
|
|
|
srcs = ["src/cxx.cc"],
|
2020-02-10 02:59:12 +00:00
|
|
|
visibility = ["PUBLIC"],
|
2020-03-11 23:49:18 +00:00
|
|
|
header_namespace = "rust",
|
2020-02-10 02:59:12 +00:00
|
|
|
exported_headers = {
|
2020-03-11 23:49:18 +00:00
|
|
|
"cxx.h": "include/cxx.h",
|
2020-02-10 02:59:12 +00:00
|
|
|
},
|
|
|
|
exported_linker_flags = ["-lstdc++"],
|
2020-04-30 14:28:21 +00:00
|
|
|
deps = [":symbols"],
|
|
|
|
)
|
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "symbols",
|
|
|
|
srcs = glob(["src/macros/**", "src/symbols/**"]),
|
2020-04-30 14:55:05 +00:00
|
|
|
crate_root = "src/symbols/symbols.rs",
|
2020-02-10 02:59:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|
2020-04-29 19:34:47 +00:00
|
|
|
|
|
|
|
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",
|
|
|
|
],
|
|
|
|
)
|