aboutsummaryrefslogtreecommitdiff
path: root/BUILD
blob: db22203761f82d47de8341e62afdc576d5afaca3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
load("//tools/bazel:rust.bzl", "rust_binary", "rust_library")

rust_library(
    name = "cxx",
    srcs = glob(["src/**/*.rs"]),
    data = ["src/gen/include/cxx.h"],
    visibility = ["//visibility:public"],
    deps = [
        ":core-lib",
        ":cxxbridge-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/**/*.rs"]),
    data = ["cmd/src/gen/include/cxx.h"],
    visibility = ["//visibility:public"],
    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",
    ],
)

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_library(
    name = "cxxbridge-macro",
    srcs = glob(["macro/src/**"]),
    crate_type = "proc-macro",
    deps = [
        "//third-party:proc-macro2",
        "//third-party:quote",
        "//third-party:syn",
    ],
)