forked from istio/old_pilot_repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD
41 lines (39 loc) · 1.18 KB
/
BUILD
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
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
go_library(
name = "go_default_library",
srcs = [
"driver.go",
"reachability.go",
"routing.go",
],
deps = [
"//model:go_default_library",
"//platform/kube:go_default_library",
"//platform/kube/inject:go_default_library",
"@com_github_golang_glog//:go_default_library",
"@com_github_golang_sync//errgroup:go_default_library",
"@io_k8s_client_go//kubernetes:go_default_library",
"@io_k8s_client_go//pkg/api/v1:go_default_library",
"@io_k8s_client_go//pkg/apis/meta/v1:go_default_library",
],
)
go_binary(
name = "integration",
data = [
"app.yaml.tmpl",
"cert.crt",
"cert.key",
"egress-proxy.yaml.tmpl",
"ingress.yaml",
"ingress-proxy.yaml.tmpl",
"manager-discovery.yaml.tmpl",
"mixer.yaml.tmpl",
"rule-content-route.yaml.tmpl",
"rule-default-route.yaml.tmpl",
"rule-fault-injection.yaml.tmpl",
"rule-weighted-route.yaml.tmpl",
"//platform/kube:kubeconfig",
],
library = ":go_default_library",
tags = ["manual"],
)