aboutsummaryrefslogtreecommitdiff
path: root/rutabaga_gfx/BUILD
blob: f05467bdcb4ac49cf97415a1c5f7185410a0d7cb (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
load("@rules_license//rules:license.bzl", "license")
load("@rules_license//rules:license_kind.bzl", "license_kind")
load("@rules_rust//rust:defs.bzl", "rust_library")

package(
    default_applicable_licenses = [":license"],
    default_visibility = ["//visibility:public"],
)

license(
    name = "license",
    license_kinds = [
        ":SPDX-license-identifier-Apache-2.0",
        ":SPDX-license-identifier-MIT",
    ],
    license_text = "LICENSE-APACHE",
    visibility = [":__subpackages__"],
)

license_kind(
    name = "SPDX-license-identifier-Apache-2.0",
    conditions = ["notice"],
    url = "https://spdx.org/licenses/Apache-2.0.html",
)

license_kind(
    name = "SPDX-license-identifier-MIT",
    conditions = ["notice"],
    url = "",
)

rust_library(
    name = "rutabaga_gfx",
    srcs = glob(["**/*.rs"]),
    edition = "2021",
    proc_macro_deps = [
        "@remain",
        "@thiserror-impl",
    ],
    deps = [
        "@cfg-if",
        "@libc",
        "@log",
        "@thiserror",
        "@zerocopy",
    ] + select({
        "@platforms//os:windows": [
            "@winapi",
            "@winapi-x86_64-pc-windows-gnu",
        ],
        "@platforms//os:linux": ["@nix"],
        "//conditions:default": [],
    }),
)