2020-02-10 02:59:12 +00:00
|
|
|
rust_library(
|
|
|
|
name = "cxx",
|
2022-08-01 23:53:31 +00:00
|
|
|
srcs = glob(["src/**/*.rs"]),
|
2022-06-18 06:23:08 +00:00
|
|
|
edition = "2018",
|
2021-12-07 22:49:41 +00:00
|
|
|
features = [
|
|
|
|
"alloc",
|
|
|
|
"std",
|
|
|
|
],
|
2020-02-10 02:59:12 +00:00
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
":core",
|
|
|
|
":macro",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
rust_binary(
|
|
|
|
name = "codegen",
|
2022-08-01 23:53:31 +00:00
|
|
|
srcs = glob(["gen/cmd/src/**/*.rs"]) + ["gen/cmd/src/gen/include/cxx.h"],
|
2020-04-29 23:36:13 +00:00
|
|
|
crate = "cxxbridge",
|
2022-06-18 06:23:08 +00:00
|
|
|
edition = "2018",
|
2020-02-10 02:59:12 +00:00
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
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
|
|
|
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++"],
|
2021-08-14 19:12:11 +00:00
|
|
|
header_namespace = "rust",
|
|
|
|
visibility = ["PUBLIC"],
|
2020-02-10 02:59:12 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "macro",
|
2022-08-01 23:53:31 +00:00
|
|
|
srcs = glob(["macro/src/**/*.rs"]),
|
2020-02-10 02:59:12 +00:00
|
|
|
crate = "cxxbridge_macro",
|
2022-06-18 06:23:08 +00:00
|
|
|
edition = "2018",
|
2021-08-14 19:12:11 +00:00
|
|
|
proc_macro = True,
|
2020-02-10 02:59:12 +00:00
|
|
|
deps = [
|
|
|
|
"//third-party:proc-macro2",
|
|
|
|
"//third-party:quote",
|
|
|
|
"//third-party:syn",
|
|
|
|
],
|
|
|
|
)
|
2020-04-29 19:34:47 +00:00
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "build",
|
2022-08-01 23:53:31 +00:00
|
|
|
srcs = glob(["gen/build/src/**/*.rs"]),
|
2022-06-18 06:23:08 +00:00
|
|
|
edition = "2018",
|
2020-04-29 19:34:47 +00:00
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
"//third-party:cc",
|
|
|
|
"//third-party:codespan-reporting",
|
2022-01-03 09:15:51 +00:00
|
|
|
"//third-party:once_cell",
|
2020-04-29 19:34:47 +00:00
|
|
|
"//third-party:proc-macro2",
|
|
|
|
"//third-party:quote",
|
2020-10-08 00:29:37 +00:00
|
|
|
"//third-party:scratch",
|
2020-04-29 19:34:47 +00:00
|
|
|
"//third-party:syn",
|
|
|
|
],
|
|
|
|
)
|
2020-08-25 00:58:36 +00:00
|
|
|
|
|
|
|
rust_library(
|
|
|
|
name = "lib",
|
2022-08-01 23:53:31 +00:00
|
|
|
srcs = glob(["gen/lib/src/**/*.rs"]),
|
2022-06-18 06:23:08 +00:00
|
|
|
edition = "2018",
|
2020-08-25 00:58:36 +00:00
|
|
|
visibility = ["PUBLIC"],
|
|
|
|
deps = [
|
|
|
|
"//third-party:cc",
|
|
|
|
"//third-party:codespan-reporting",
|
|
|
|
"//third-party:proc-macro2",
|
|
|
|
"//third-party:quote",
|
|
|
|
"//third-party:syn",
|
|
|
|
],
|
|
|
|
)
|