third_party_rust_cxx/BUILD

68 lines
1.5 KiB
Python
Raw Normal View History

load("//tools/bazel:rust.bzl", "rust_binary", "rust_library")
2020-02-22 19:48:47 +00:00
rust_library(
name = "cxx",
srcs = glob(["src/**/*.rs"]),
visibility = ["//visibility:public"],
deps = [
":core-lib",
":cxxbridge-macro",
"//third-party:link-cplusplus",
2020-02-22 19:48:47 +00:00
],
)
rust_binary(
name = "codegen",
2020-04-29 19:34:47 +00:00
srcs = glob(["gen/cmd/src/**/*.rs"]),
data = ["gen/cmd/src/gen/include/cxx.h"],
2020-02-22 19:48:47 +00:00
visibility = ["//visibility:public"],
deps = [
"//third-party:anyhow",
"//third-party:codespan-reporting",
"//third-party:proc-macro2",
2020-02-22 19:48:47 +00:00
"//third-party:quote",
"//third-party:structopt",
"//third-party:syn",
],
)
cc_library(
name = "core",
2020-03-11 23:49:18 +00:00
hdrs = ["include/cxx.h"],
include_prefix = "rust",
2020-02-22 19:48:47 +00:00
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)
cc_library(
name = "core-lib",
2020-03-11 23:49:18 +00:00
srcs = ["src/cxx.cc"],
hdrs = ["include/cxx.h"],
2020-02-22 19:48:47 +00:00
)
rust_library(
name = "cxxbridge-macro",
2020-02-22 19:48:47 +00:00
srcs = glob(["macro/src/**"]),
crate_type = "proc-macro",
deps = [
"//third-party:proc-macro2",
2020-02-22 19:48:47 +00:00
"//third-party:quote",
"//third-party:syn",
],
)
2020-04-29 19:34:47 +00:00
rust_library(
name = "build",
srcs = glob(["gen/build/src/**/*.rs"]),
data = ["gen/build/src/gen/include/cxx.h"],
visibility = ["//visibility:public"],
deps = [
"//third-party:anyhow",
"//third-party:cc",
"//third-party:codespan-reporting",
"//third-party:proc-macro2",
"//third-party:quote",
"//third-party:syn",
],
)