aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/d/hello_world/BUILD
blob: 901f42f73557e663bd553fd3ce2de6adb877e4d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package(default_visibility = ["//visibility:public"])

load("//tools/build_defs/d:d.bzl", "d_binary", "d_docs")

d_binary(
    name = "hello_world",
    srcs = ["hello_world.d"],
    deps = [
        "//examples/d/hello_lib:greeter",
        "//examples/d/hello_lib:native_greeter",
    ],
)

d_docs(
    name = "hello_world_docs",
    dep = ":hello_world",
)