From e9c788a9711e8f780de7eb5bd3e1bed7994eb88c Mon Sep 17 00:00:00 2001 From: thomasvl Date: Fri, 8 Sep 2017 21:44:06 +0200 Subject: Remove swift_library and tests, lives in the apple rules repo now. RELNOTES: The swift_library rule that is distributed with Bazel has been deleted. Users who wish to compile Swift should use the rules in https://github.com/bazelbuild/rules_apple instead. PiperOrigin-RevId: 168032330 --- examples/swift/BUILD | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 examples/swift/BUILD (limited to 'examples/swift/BUILD') diff --git a/examples/swift/BUILD b/examples/swift/BUILD deleted file mode 100644 index e2cbb195e2..0000000000 --- a/examples/swift/BUILD +++ /dev/null @@ -1,19 +0,0 @@ -package(default_visibility = ["//visibility:public"]) - -licenses(["notice"]) # Apache 2.0 - -load("//tools/build_defs/apple:swift.bzl", "swift_library") - -swift_library( - name = "swift_lib", - srcs = glob(["*.swift"]), - deps = ["//examples/swift/BarLib"], -) - -filegroup( - name = "srcs", - srcs = glob(["**"]) + [ - "//examples/swift/BarLib:srcs", - ], - visibility = ["//examples:__pkg__"], -) -- cgit v1.2.3