mirror of
https://gitee.com/openharmony/third_party_rust_cxx
synced 2024-11-23 15:19:44 +00:00
61 lines
1.4 KiB
Python
61 lines
1.4 KiB
Python
|
rust_library(
|
||
|
name = "cxx",
|
||
|
srcs = glob(["src/**"]),
|
||
|
visibility = ["PUBLIC"],
|
||
|
deps = [
|
||
|
":core",
|
||
|
":macro",
|
||
|
"//third-party:anyhow",
|
||
|
"//third-party:cc",
|
||
|
"//third-party:codespan",
|
||
|
"//third-party:codespan-reporting",
|
||
|
"//third-party:link-cplusplus",
|
||
|
"//third-party:proc-macro2",
|
||
|
"//third-party:quote",
|
||
|
"//third-party:syn",
|
||
|
"//third-party:thiserror",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
rust_binary(
|
||
|
name = "codegen",
|
||
|
srcs = glob(["cmd/src/**"]),
|
||
|
visibility = ["PUBLIC"],
|
||
|
env = {
|
||
|
"CARGO_PKG_AUTHORS": "David Tolnay <dtolnay@gmail.com>",
|
||
|
},
|
||
|
deps = [
|
||
|
"//third-party:anyhow",
|
||
|
"//third-party:codespan",
|
||
|
"//third-party:codespan-reporting",
|
||
|
"//third-party:proc-macro2",
|
||
|
"//third-party:quote",
|
||
|
"//third-party:structopt",
|
||
|
"//third-party:syn",
|
||
|
"//third-party:thiserror",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
cxx_library(
|
||
|
name = "core",
|
||
|
srcs = ["src/cxxbridge.cc"],
|
||
|
visibility = ["PUBLIC"],
|
||
|
header_namespace = "cxxbridge",
|
||
|
exported_headers = {
|
||
|
"cxxbridge.h": "include/cxxbridge.h",
|
||
|
},
|
||
|
exported_linker_flags = ["-lstdc++"],
|
||
|
)
|
||
|
|
||
|
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",
|
||
|
],
|
||
|
)
|