mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-16 18:02:05 +02:00
26 lines
674 B
Python
26 lines
674 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//core/common:onos-core-common',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//incubator/net:onos-incubator-net',
|
|
'//incubator/store:onos-incubator-store',
|
|
'//core/store/serializers:onos-core-serializers',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/store/dist:onos-core-dist',
|
|
'//core/store/dist:onos-core-dist-tests',
|
|
'//utils/osgi:onlab-osgi-tests',
|
|
'//incubator/bmv2/model:onos-incubator-bmv2-model'
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-core-net',
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|