aboutsummaryrefslogtreecommitdiff
path: root/BUCK
blob: 0703b6c149e4a3816e0c0fe61c64efe6a1a599aa (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
rust_library(
    name = "cxx",
    srcs = glob(["src/**/*.rs"]),
    edition = "2018",
    features = [
        "alloc",
        "std",
    ],
    visibility = ["PUBLIC"],
    deps = [
        ":core",
        ":macro",
    ],
)

rust_binary(
    name = "codegen",
    srcs = glob(["gen/cmd/src/**/*.rs"]) + ["gen/cmd/src/gen/include/cxx.h"],
    crate = "cxxbridge",
    edition = "2018",
    visibility = ["PUBLIC"],
    deps = [
        "//third-party:clap",
        "//third-party:codespan-reporting",
        "//third-party:proc-macro2",
        "//third-party:quote",
        "//third-party:syn",
    ],
)

cxx_library(
    name = "core",
    srcs = ["src/cxx.cc"],
    exported_headers = {
        "cxx.h": "include/cxx.h",
    },
    exported_linker_flags = ["-lstdc++"],
    header_namespace = "rust",
    visibility = ["PUBLIC"],
)

rust_library(
    name = "macro",
    srcs = glob(["macro/src/**/*.rs"]),
    crate = "cxxbridge_macro",
    edition = "2018",
    proc_macro = True,
    deps = [
        "//third-party:proc-macro2",
        "//third-party:quote",
        "//third-party:syn",
    ],
)

rust_library(
    name = "build",
    srcs = glob(["gen/build/src/**/*.rs"]),
    edition = "2018",
    visibility = ["PUBLIC"],
    deps = [
        "//third-party:cc",
        "//third-party:codespan-reporting",
        "//third-party:once_cell",
        "//third-party:proc-macro2",
        "//third-party:quote",
        "//third-party:scratch",
        "//third-party:syn",
    ],
)

rust_library(
    name = "lib",
    srcs = glob(["gen/lib/src/**/*.rs"]),
    edition = "2018",
    visibility = ["PUBLIC"],
    deps = [
        "//third-party:cc",
        "//third-party:codespan-reporting",
        "//third-party:proc-macro2",
        "//third-party:quote",
        "//third-party:syn",
    ],
)