Skip to content

Commit efca80a

Browse files
committedDec 14, 2017
Fixup import paths & bazel
1 parent 29cd6c6 commit efca80a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+353
-86
lines changed
 
File renamed without changes.
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2+
3+
go_library(
4+
name = "go_default_library",
5+
srcs = [
6+
"dns.go",
7+
"doc.go",
8+
"plugins.go",
9+
],
10+
importpath = "k8s.io/kops/dnsprovider/pkg/dnsprovider",
11+
visibility = ["//visibility:public"],
12+
deps = [
13+
"//dnsprovider/pkg/dnsprovider/rrstype:go_default_library",
14+
"//vendor/github.com/golang/glog:go_default_library",
15+
],
16+
)
17+
18+
go_test(
19+
name = "go_default_test",
20+
srcs = ["dns_test.go"],
21+
importpath = "k8s.io/kops/dnsprovider/pkg/dnsprovider",
22+
library = ":go_default_library",
23+
deps = ["//dnsprovider/pkg/dnsprovider/rrstype:go_default_library"],
24+
)

0 commit comments

Comments
 (0)
Please sign in to comment.