Ray Milkey 816db1086a Add modules to Bazel build
cli
core
incubator/rpc
pipelines/basic
protocols/netconf
protocols/openflow
protocols/rest

Change-Id: I165b94a04ba893d97d944e5deb2746f54566503b
2018-05-31 15:44:36 +00:00

15 lines
224 B
Python

GRPC_VER = "1_3_1"
COMPILE_DEPS = CORE_DEPS + [
"@grpc_core_" + GRPC_VER + "//jar",
]
TEST_DEPS = TEST + [
"//core/api:onos-api-tests",
]
osgi_jar_with_tests(
test_deps = TEST_DEPS,
deps = COMPILE_DEPS,
)