Skip to content

Commit

Permalink
chore(pipelined): bazel is adapted to use the new services
Browse files Browse the repository at this point in the history
Signed-off-by: Nils Semmelrock <nils.semmelrock@tngtech.com>
  • Loading branch information
nstng committed Apr 21, 2022
1 parent cccf250 commit 5952159
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
13 changes: 8 additions & 5 deletions lte/gateway/python/magma/pipelined/app/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ py_library(
srcs = ["classifier.py"],
deps = [
":base",
":inout",
":mandatory_apps",
"//orc8r/gateway/python/magma/common:rpc_utils",
"//orc8r/gateway/python/magma/common:sentry",
requirement("grpcio"),
Expand Down Expand Up @@ -88,7 +88,7 @@ py_library(
deps = [
":base",
":enforcement_stats",
":inout",
":mandatory_apps",
"//lte/gateway/python/magma/pipelined:redirect",
"//lte/gateway/python/magma/pipelined/qos:qos_meter_impl",
],
Expand Down Expand Up @@ -158,8 +158,8 @@ py_library(
name = "ue_mac",
srcs = ["ue_mac.py"],
deps = [
":inout",
":ipfix",
":mandatory_apps",
"//lte/gateway/python/magma/pipelined:directoryd_client",
],
)
Expand All @@ -180,10 +180,13 @@ py_library(
)

py_library(
name = "inout",
name = "mandatory_apps",
srcs = [
"inout.py",
"egress.py",
"ingress.py",
"li_mirror.py",
"middle.py",
"vlan_egress_flow_msgs.py",
],
deps = [
":base",
Expand Down
6 changes: 3 additions & 3 deletions lte/gateway/python/magma/pipelined/tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ pytest_test(
tags = TAG_SUDO_TEST,
deps = [
":pipelined_test_util",
"//lte/gateway/python/magma/pipelined/app:inout",
"//lte/gateway/python/magma/pipelined/app:mandatory_apps",
"//lte/gateway/python/magma/pipelined/app:testing",
"//lte/gateway/python/magma/pipelined/tests/app:start_pipelined",
],
Expand All @@ -431,7 +431,7 @@ pytest_test(
tags = TAG_SUDO_TEST,
deps = [
":pipelined_test_util",
"//lte/gateway/python/magma/pipelined/app:inout",
"//lte/gateway/python/magma/pipelined/app:mandatory_apps",
"//lte/gateway/python/magma/pipelined/app:testing",
"//lte/gateway/python/magma/pipelined/tests/app:start_pipelined",
"//lte/protos:mobilityd_python_proto",
Expand Down Expand Up @@ -785,7 +785,7 @@ pytest_test(
tags = TAG_SUDO_TEST,
deps = [
":pipelined_test_util",
"//lte/gateway/python/magma/pipelined/app:inout",
"//lte/gateway/python/magma/pipelined/app:mandatory_apps",
"//lte/gateway/python/magma/pipelined/app:testing",
"//lte/gateway/python/magma/pipelined/app:ue_mac",
"//lte/gateway/python/magma/pipelined/tests/app:flow_query",
Expand Down

0 comments on commit 5952159

Please sign in to comment.