mirror of
https://github.com/topjohnwu/cxx.git
synced 2024-11-23 03:49:44 +00:00
94 lines
2.1 KiB
Python
94 lines
2.1 KiB
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
load("@rules_rust//rust:defs.bzl", "rust_binary", "rust_library", "rust_proc_macro")
|
|
|
|
rust_library(
|
|
name = "cxx",
|
|
srcs = glob(["src/**/*.rs"]),
|
|
crate_features = [
|
|
"alloc",
|
|
"std",
|
|
],
|
|
edition = "2021",
|
|
proc_macro_deps = [
|
|
":cxxbridge-macro",
|
|
],
|
|
visibility = ["//visibility:public"],
|
|
deps = [":core-lib"],
|
|
)
|
|
|
|
alias(
|
|
name = "codegen",
|
|
actual = ":cxxbridge",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
rust_binary(
|
|
name = "cxxbridge",
|
|
srcs = glob(["gen/cmd/src/**/*.rs"]),
|
|
data = ["gen/cmd/src/gen/include/cxx.h"],
|
|
edition = "2021",
|
|
deps = [
|
|
"@crates.io//:clap",
|
|
"@crates.io//:codespan-reporting",
|
|
"@crates.io//:proc-macro2",
|
|
"@crates.io//:quote",
|
|
"@crates.io//:syn",
|
|
],
|
|
)
|
|
|
|
cc_library(
|
|
name = "core",
|
|
hdrs = ["include/cxx.h"],
|
|
include_prefix = "rust",
|
|
strip_include_prefix = "include",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
cc_library(
|
|
name = "core-lib",
|
|
srcs = ["src/cxx.cc"],
|
|
hdrs = ["include/cxx.h"],
|
|
)
|
|
|
|
rust_proc_macro(
|
|
name = "cxxbridge-macro",
|
|
srcs = glob(["macro/src/**/*.rs"]),
|
|
edition = "2021",
|
|
deps = [
|
|
"@crates.io//:proc-macro2",
|
|
"@crates.io//:quote",
|
|
"@crates.io//:syn",
|
|
],
|
|
)
|
|
|
|
rust_library(
|
|
name = "cxx-build",
|
|
srcs = glob(["gen/build/src/**/*.rs"]),
|
|
data = ["gen/build/src/gen/include/cxx.h"],
|
|
edition = "2021",
|
|
deps = [
|
|
"@crates.io//:cc",
|
|
"@crates.io//:codespan-reporting",
|
|
"@crates.io//:once_cell",
|
|
"@crates.io//:proc-macro2",
|
|
"@crates.io//:quote",
|
|
"@crates.io//:scratch",
|
|
"@crates.io//:syn",
|
|
],
|
|
)
|
|
|
|
rust_library(
|
|
name = "cxx-gen",
|
|
srcs = glob(["gen/lib/src/**/*.rs"]),
|
|
data = ["gen/lib/src/gen/include/cxx.h"],
|
|
edition = "2021",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@crates.io//:cc",
|
|
"@crates.io//:codespan-reporting",
|
|
"@crates.io//:proc-macro2",
|
|
"@crates.io//:quote",
|
|
"@crates.io//:syn",
|
|
],
|
|
)
|