forked from magma/magma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
141 lines (113 loc) · 3.03 KB
/
BUILD.bazel
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Copyright 2021 The Magma Authors.
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@bazel_gazelle//:def.bzl", "gazelle")
load("@rules_java//java:defs.bzl", "java_binary")
exports_files(["LICENSE"])
# gazelle:prefix github.com/magma/magma
# gazelle:exclude .cache/
# gazelle:exclude orc8r/
# gazelle:exclude lte/
# gazelle:exclude feg/
# gazelle:exclude cwf/
# TODO: Remove when we move proto generation to bazel - this prevents gazelle from causing import issues in the meantime.
# gazelle:exclude **/*.proto/
gazelle(name = "gazelle")
java_binary(
name = "bazel-diff",
main_class = "com.bazel_diff.Main",
runtime_deps = ["@bazel_diff//jar"],
)
alias(
name = "envoy_controller",
actual = "//feg/gateway/services/envoy_controller:envoy_controller",
)
alias(
name = "connectiond",
actual = "//lte/gateway/c/connection_tracker/src:connectiond",
)
alias(
name = "agw_of",
actual = "//lte/gateway/c/core:agw_of",
)
alias(
name = "mme_oai",
actual = "//lte/gateway/c/core:mme_oai",
)
alias(
name = "liagentd",
actual = "//lte/gateway/c/li_agent/src:liagentd",
)
alias(
name = "sctpd",
actual = "//lte/gateway/c/sctpd/src:sctpd",
)
alias(
name = "sessiond",
actual = "//lte/gateway/c/session_manager:sessiond",
)
alias(
name = "enodebd",
actual = "//lte/gateway/python/magma/enodebd:enodebd",
)
alias(
name = "health",
actual = "//lte/gateway/python/magma/health:health",
)
alias(
name = "kernsnoopd",
actual = "//lte/gateway/python/magma/kernsnoopd:kernsnoopd",
)
alias(
name = "mobilityd",
actual = "//lte/gateway/python/magma/mobilityd:mobilityd",
)
alias(
name = "monitord",
actual = "//lte/gateway/python/magma/monitord:monitord",
)
alias(
name = "pipelined",
actual = "//lte/gateway/python/magma/pipelined:pipelined",
)
alias(
name = "policydb",
actual = "//lte/gateway/python/magma/policydb:policydb",
)
alias(
name = "redirectd",
actual = "//lte/gateway/python/magma/redirectd:redirectd",
)
alias(
name = "smsd",
actual = "//lte/gateway/python/magma/smsd:smsd",
)
alias(
name = "subscriberdb",
actual = "//lte/gateway/python/magma/subscriberdb:subscriberdb",
)
alias(
name = "ctraced",
actual = "//orc8r/gateway/python/magma/ctraced:ctraced",
)
alias(
name = "directoryd",
actual = "//orc8r/gateway/python/magma/directoryd:directoryd",
)
alias(
name = "eventd",
actual = "//orc8r/gateway/python/magma/eventd:eventd",
)
alias(
name = "magmad",
actual = "//orc8r/gateway/python/magma/magmad:magmad",
)
alias(
name = "state",
actual = "//orc8r/gateway/python/magma/state:state",
)