aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/d/hello_world/BUILD
diff options
context:
space:
mode:
authorGravatar Kristina Chodorow <kchodorow@google.com>2016-03-23 21:20:22 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2016-03-24 10:31:46 +0000
commit96df361ac0fe25d908515234bff944bad3269216 (patch)
treec477e47b57f6d998a1cddc9bc981e2ee1e29e450 /examples/d/hello_world/BUILD
parent1325cc1ba2f5e9318df8d673bab4f440c595cac0 (diff)
Remove deprecated Skylark rules
-- MOS_MIGRATED_REVID=117968196
Diffstat (limited to 'examples/d/hello_world/BUILD')
-rw-r--r--examples/d/hello_world/BUILD17
1 files changed, 0 insertions, 17 deletions
diff --git a/examples/d/hello_world/BUILD b/examples/d/hello_world/BUILD
deleted file mode 100644
index 901f42f735..0000000000
--- a/examples/d/hello_world/BUILD
+++ /dev/null
@@ -1,17 +0,0 @@
-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",
-)