mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-17 02:11:38 +02:00
- core/net is now optical clean - reverting part of Change-Id: Ib8ddac6e93327ade9d42984d8eba66be7047d051 which lead to loss of package import information, causing OSGi issue Change-Id: Ie6b16abd3ecc872f0920d29c7577a10c44091af6
23 lines
528 B
Python
23 lines
528 B
Python
COMPILE_DEPS = [
|
|
'//lib:CORE_DEPS',
|
|
'//incubator/api:onos-incubator-api',
|
|
'//utils/rest:onlab-rest',
|
|
'//incubator/net:onos-incubator-net',
|
|
'//incubator/store:onos-incubator-store',
|
|
]
|
|
|
|
TEST_DEPS = [
|
|
'//lib:TEST_REST',
|
|
'//lib:TEST_ADAPTERS',
|
|
'//core/common:onos-core-common',
|
|
'//core/store/dist:onos-core-dist',
|
|
'//core/store/dist:onos-core-dist-tests',
|
|
]
|
|
|
|
osgi_jar_with_tests (
|
|
name = 'onos-core-net',
|
|
deps = COMPILE_DEPS,
|
|
test_deps = TEST_DEPS,
|
|
visibility = ['PUBLIC'],
|
|
)
|