mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-22 04:40:59 +02:00
Includes also a refactoring of the path computation Change-Id: Iff63780a3bb3e895e55c52211290c19d993e1905
25 lines
664 B
Python
25 lines
664 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//lib:JACKSON',
|
|
'//lib:KRYO',
|
|
'//lib:org.apache.karaf.shell.console',
|
|
'//cli:onos-cli',
|
|
'//core/common:onos-core-common',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//apps/route-service/api:onos-apps-route-service-api',
|
|
'//apps/mcast/api:onos-apps-mcast-api',
|
|
'//apps/mcast/cli:onos-apps-mcast-cli',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_ADAPTERS',
|
|
'//incubator/api:onos-incubator-api-tests',
|
|
'//apps/route-service/api:onos-apps-route-service-api-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
)
|